.animated-image-block {
  position: relative;
  aspect-ratio: var(--aspect-ratio, 1/1);
  background-color: #f9f9f9;
}
@media screen and (max-width: 992px) {
  .animated-image-block {
    aspect-ratio: 1/1;
  }
}
.animated-image-block > .image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.animated-image-block > .image-container > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.animated-image-block > .image-container > .post-info {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 30px;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease-in-out;
  color: #fff;
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.animated-image-block > .image-container > .post-info.fading-out {
  opacity: 0;
  pointer-events: none;
}
.animated-image-block > .arrows {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: var(--arrow-x, 0);
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.animated-image-block > .arrows.stacked {
  flex-direction: column;
  margin: 0 auto;
  gap: 10px;
}
.animated-image-block > .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: transform 0.3s ease-in-out;
}
.animated-image-block > .arrows > button:hover {
  transform: scale(0.9);
}
@media screen and (max-width: 992px) {
  .animated-image-block > .arrows {
    bottom: 60px;
    right: 20px;
    top: unset;
    left: unset;
    display: flex;
    gap: 10px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 8px;
  }
  .animated-image-block > .arrows > * {
    filter: invert(1);
  }
}

.aspect-ratio-image {
  aspect-ratio: var(--aspect-ratio, 16/9);
  width: 100%;
  height: auto;
  display: block;
  background-image: var(--img-src, url(""));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-color, transparent);
  position: relative;
}
@media (max-width: 767.98px) {
  .aspect-ratio-image {
    aspect-ratio: var(--aspect-ratio-mobile, var(--aspect-ratio, 16/9));
  }
}
@media (max-width: 767.98px) and (orientation: landscape) {
  .aspect-ratio-image {
    aspect-ratio: var(--aspect-ratio-mobile-landscape, var(--aspect-ratio, 16/9));
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .aspect-ratio-image {
    aspect-ratio: var(--aspect-ratio-tablet, var(--aspect-ratio, 16/9));
  }
}

.is-mobile-preview .aspect-ratio-image {
  aspect-ratio: var(--aspect-ratio-mobile, var(--aspect-ratio, 16/9));
}

.is-tablet-preview .aspect-ratio-image {
  aspect-ratio: var(--aspect-ratio-tablet, var(--aspect-ratio, 16/9));
}

.is-desktop-preview .aspect-ratio-image {
  aspect-ratio: var(--aspect-ratio, 16/9);
}

.bark-button {
  display: block;
  width: 100%;
  max-width: 120px;
  min-width: 120px;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  background-color: transparent;
  -webkit-mask: url(#bark-mask) no-repeat center;
          mask: url(#bark-mask) no-repeat center;
  background-color: transparent;
  transition: background-color 0.6s ease-in-out, -webkit-backdrop-filter 0.6s ease-in-out;
  transition: background-color 0.6s ease-in-out, backdrop-filter 0.6s ease-in-out;
  transition: background-color 0.6s ease-in-out, backdrop-filter 0.6s ease-in-out, -webkit-backdrop-filter 0.6s ease-in-out;
}
.bark-button > .text {
  color: #FAF1E0;
  text-align: center;
  font-feature-settings: "liga" off;
  font-family: "Wulkan Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  letter-spacing: -0.32px;
}
.bark-button.dark > .text {
  color: #3C3C3C;
}
.bark-button > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  aspect-ratio: 1/1;
}
.bark-button.default-hover {
  mix-blend-mode: difference;
}
.bark-button.default-hover > span {
  mix-blend-mode: normal;
}
.bark-button:hover, .bark-button.default-hover {
  background-color: rgba(194, 174, 151, 0.14);
  -webkit-backdrop-filter: blur(3.0999999046px);
          backdrop-filter: blur(3.0999999046px);
}
.bark-button.dark:hover, .bark-button.dark.default-hover {
  background-color: rgba(255, 255, 255, 0.14);
}

.blog-detail-header {
  background: var(--Secondary-Craft-White, #F8F0E7);
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px var(--padding-x, 40px);
}
.blog-detail-header > .inner-content {
  width: 100%;
  max-width: 1440px;
}
.blog-detail-header > .inner-content > .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.blog-detail-header > .inner-content > .top > .title {
  width: 65%;
}
.blog-detail-header > .inner-content > .top > .title > h1 {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-size: clamp(32px, 6vw, 70px) !important;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.blog-detail-header > .inner-content > .top > .share-area {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.blog-detail-header > .inner-content > .top > .share-area > .share-icons {
  display: flex;
  height: 55px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  border: 1px solid var(--Secondary-Driftwood, #C2AE97);
  padding: 0 20px;
}
.blog-detail-header > .inner-content > .top > .share-area > .share-icons > .share-text {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-detail-header > .inner-content > .top > .share-area > .share-icons > a {
  width: 40px;
  height: 40px;
  color: #c2ae97;
  background-color: #f3e9df;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.blog-detail-header > .inner-content > .top > .share-area > .share-icons > a > svg {
  fill: #c2ae97;
  max-width: 24px;
}
.blog-detail-header > .inner-content > .top > .share-area > .share-icons > a:hover {
  color: #F8F0E7;
  background-color: #3C3C3C;
}
.blog-detail-header > .inner-content > .top > .share-area > .share-icons > a:hover > svg {
  fill: #F8F0E7;
}
@media screen and (max-width: 968px) {
  .blog-detail-header > .inner-content > .top {
    flex-direction: column;
  }
  .blog-detail-header > .inner-content > .top > .title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .blog-detail-header > .inner-content > .top > .title > h1 {
    font-size: clamp(24px, 6vw, 40px);
  }
  .blog-detail-header > .inner-content > .top > .share-area {
    width: 100%;
    justify-content: center;
  }
}
.blog-detail-header > .inner-content > .bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 100px;
  transform: translateY(100px);
  margin-top: -100px;
}
.blog-detail-header > .inner-content > .bottom > .excerpt {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.blog-detail-header > .inner-content > .bottom > .excerpt > .date {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 137%;
  text-transform: uppercase;
}
.blog-detail-header > .inner-content > .bottom > .excerpt > .excerpt {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "Wulkan Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  max-height: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-height: 150%; /* 36px */
}
.blog-detail-header > .inner-content > .bottom > .excerpt > .tags {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.blog-detail-header > .inner-content > .bottom > .excerpt > .tags > .tag {
  border: 1px solid var(--Secondary-Driftwood, #C2AE97);
  color: rgba(60, 60, 60, 0.6);
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 30px;
}
.blog-detail-header > .inner-content > .bottom > .featured-image {
  width: 75%;
}
.blog-detail-header > .inner-content > .bottom > .featured-image > .image {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: 146/83;
}
@media screen and (max-width: 1120px) {
  .blog-detail-header > .inner-content > .bottom {
    flex-direction: column;
    transform: translateY(0);
    margin-top: 20px;
    gap: 30px;
  }
  .blog-detail-header > .inner-content > .bottom > .excerpt {
    width: 100%;
    order: 2;
  }
  .blog-detail-header > .inner-content > .bottom > .excerpt > .excerpt {
    font-size: 20px;
  }
  .blog-detail-header > .inner-content > .bottom > .featured-image {
    width: 100%;
    order: 1;
  }
  .blog-detail-header > .inner-content > .bottom > .featured-image > .image {
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    width: 100%;
    aspect-ratio: 146/83;
  }
}

body:not(.wp-admin) .blog-detail-content,
.block-editor-writing-flow .blog-detail-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px var(--padding-x, 40px);
}
@media screen and (max-width: 1120px) {
  body:not(.wp-admin) .blog-detail-content,
  .block-editor-writing-flow .blog-detail-content {
    padding: 0px var(--padding-x, 40px);
  }
}
body:not(.wp-admin) .blog-detail-content > .inner-content,
.block-editor-writing-flow .blog-detail-content > .inner-content {
  max-width: 1000px;
  width: 100%;
}
body:not(.wp-admin) .blog-detail-content > .inner-content > h1,
.block-editor-writing-flow .blog-detail-content > .inner-content > h1 {
  font-size: clamp(32px, 6vw, 70px) !important;
  line-height: 120% !important;
  margin-top: 60px !important;
  margin-bottom: 40px !important;
}
body:not(.wp-admin) .blog-detail-content > .inner-content > h2,
.block-editor-writing-flow .blog-detail-content > .inner-content > h2 {
  font-size: clamp(28px, 5vw, 60px) !important;
  line-height: 120% !important;
  margin-top: 50px !important;
  margin-bottom: 30px !important;
}
body:not(.wp-admin) .blog-detail-content > .inner-content > h3,
.block-editor-writing-flow .blog-detail-content > .inner-content > h3 {
  font-size: clamp(24px, 4vw, 48px) !important;
  line-height: 120% !important;
  margin-top: 40px !important;
  margin-bottom: 20px !important;
}
body:not(.wp-admin) .blog-detail-content > .inner-content > h4,
.block-editor-writing-flow .blog-detail-content > .inner-content > h4 {
  font-size: clamp(20px, 3vw, 34px) !important;
  line-height: 120% !important;
  margin-top: 30px !important;
  margin-bottom: 15px !important;
}
body:not(.wp-admin) .blog-detail-content > .inner-content a,
body:not(.wp-admin) .blog-detail-content > .inner-content a span a font a p a div,
.block-editor-writing-flow .blog-detail-content > .inner-content a,
.block-editor-writing-flow .blog-detail-content > .inner-content a span a font a p a div {
  color: var(--Secondary-Driftwood, #C2AE97) !important;
}
body:not(.wp-admin) .blog-detail-content > .inner-content figure,
body:not(.wp-admin) .blog-detail-content > .inner-content img,
.block-editor-writing-flow .blog-detail-content > .inner-content figure,
.block-editor-writing-flow .blog-detail-content > .inner-content img {
  max-width: 100% !important;
  height: auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.wedux-blog {
  max-width: 1440px;
  padding: 89px var(--padding-x, 40px);
  margin: 0 auto;
}
.wedux-blog .wedux-blog-post {
  display: block;
  padding: 19px 23px 35px 19px;
  text-decoration: none;
  border: 1px solid transparent;
  background-color: transparent;
  transition: border-color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}
.wedux-blog .wedux-blog-post > .image {
  width: 100%;
  aspect-ratio: 409/233;
  background-color: #F0F0F0;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
}
.wedux-blog .wedux-blog-post > .image.press {
  aspect-ratio: 316/410;
}
.wedux-blog .wedux-blog-post > .title-holder {
  padding-top: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.wedux-blog .wedux-blog-post > .title-holder > span {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 137%; /* 27.4px */
  max-width: 329px;
}
.wedux-blog .wedux-blog-post > .title-holder > svg {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.wedux-blog .wedux-blog-post.large > .image {
  aspect-ratio: 555/410;
}
.wedux-blog .wedux-blog-post.large.press {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.wedux-blog .wedux-blog-post.large.press > .image {
  aspect-ratio: 410/555;
  max-width: 300px;
}
.wedux-blog .wedux-blog-post.large > .title-holder > span {
  max-width: 389px;
}
.wedux-blog .wedux-blog-post:hover {
  border-color: var(--Secondary-Driftwood, #C2AE97);
  background-color: var(--Secondary-Craft-White, #F8F0E7);
}
.wedux-blog .wedux-blog-post:hover > .title-holder > svg {
  opacity: 1;
  transform: translateY(0);
}
.wedux-blog > .latest-post {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  border-bottom: 0.5px solid #2C3E50;
  padding-bottom: 45px;
}
.wedux-blog > .latest-post > .left,
.wedux-blog > .latest-post > .right {
  flex: 1;
}
.wedux-blog > .latest-post > .left > .eyebrow {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 30px */
  letter-spacing: 4px;
  text-transform: uppercase;
}
.wedux-blog > .latest-post > .left > div.blog-header {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "Wulkan Display";
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 118%; /* 59px */
  max-width: 508px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.wedux-blog > .latest-post > .left > p {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  max-width: 456px;
}
@media screen and (max-width: 1124px) {
  .wedux-blog > .latest-post {
    flex-direction: column;
    gap: 32px;
  }
  .wedux-blog > .latest-post > .left,
  .wedux-blog > .latest-post > .right {
    width: 100%;
  }
  .wedux-blog > .latest-post > .left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wedux-blog > .latest-post > .left > div.blog-header {
    font-size: 40px;
    line-height: 120%; /* 48px */
    text-align: center;
  }
  .wedux-blog > .latest-post > .left > p {
    font-size: 18px;
    line-height: 140%; /* 25.2px */
    text-align: center;
  }
}
.wedux-blog > .filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 23px;
  padding: 41px 0 0 0;
}
.wedux-blog > .filters > .filter {
  flex: 1;
  border: 1px solid var(--Secondary-Driftwood, #C2AE97);
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  word-break: keep-all;
  text-wrap: nowrap;
  transition: background-color 0.6s ease-in-out, border-color 0.6s ease-in-out, color 0.6s ease-in-out;
}
.wedux-blog > .filters > .filter.active {
  background-color: #F8F0E7;
  border-color: #F8F0E7;
}
.wedux-blog > .filters > input {
  flex: 1;
  border: 1px solid var(--Secondary-Driftwood, #C2AE97);
  background: none;
}
@media screen and (max-width: 900px) {
  .wedux-blog > .filters {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }
  .wedux-blog > .filters > .filter {
    flex: auto;
    padding: 8px 10px;
    font-size: 14px;
  }
  .wedux-blog > .filters > input {
    flex: 100%;
  }
}
.wedux-blog > .posts {
  padding: 75px 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 33px;
}
@media screen and (max-width: 1110px) {
  .wedux-blog > .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .wedux-blog > .posts {
    grid-template-columns: 1fr;
  }
}
.wedux-blog > .posts.loading > * {
  opacity: 0.5;
  pointer-events: none;
}
.wedux-blog > .posts.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
.wedux-blog > .posts.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
}
.wedux-blog > .blog-footer {
  border-top: 0.5px solid #2C3E50;
  padding: 31px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.wedux-blog > .blog-footer > .story-count {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "Wulkan Display";
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
}
.wedux-blog > .blog-footer > .arrows {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.wedux-blog > .blog-footer > .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  opacity: 1;
}
.wedux-blog > .blog-footer > .arrows > button:hover {
  transform: scale(0.9);
}
.wedux-blog > .blog-footer > .arrows > button.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.career-container .career-header {
  background: var(--Secondary-Craft-White, #F8F0E7);
  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px var(--padding-x, 40px);
}
.career-container .career-header > p {
  max-width: 750px;
  text-align: center;
}
.career-container .career-closed-notice {
  background: var(--Neutral-Gray-100, #F5F5F5);
  padding: 10px;
  text-align: center;
  font-size: 16px;
  color: var(--Neutral-Gray-800, #333333);
}
.career-container .career-description {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px var(--padding-x, 40px);
}
.career-container .career-fields {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px var(--padding-x, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  .career-container .career-fields {
    grid-template-columns: 1fr;
  }
}
.career-container > .career-footer {
  background: var(--Secondary-Craft-White, #F8F0E7);
  padding: 90px var(--padding-x, 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.career-container > .career-footer > .career-footer-header {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.career-container > .career-footer > .career-footer-header h3 {
  margin: 0 0 10px 0;
}
.career-container > .career-footer > .career-footer-header p {
  margin: 0;
}
.career-container > .career-footer > .career-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.careers-container {
  max-width: 1440px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 100px var(--padding-x, 40px) 40px var(--padding-x, 40px);
}
@media screen and (max-width: 1200px) {
  .careers-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .careers-container {
    grid-template-columns: 1fr;
  }
}
.careers-container > .career-item {
  border-top: 1px solid var(--Secondary-Chestnut, #8D5C49);
  border-bottom: 1px solid var(--Secondary-Chestnut, #8D5C49);
  padding: 18px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background-color 0.6s ease;
}
.careers-container > .career-item:hover {
  background-color: var(--Secondary-Craft-White, #F8F0E7);
}
.careers-container > .career-item > .career-location {
  color: var(--Secondary-Chestnut, #8D5C49);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 20.93px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.careers-container > .career-item > .career-title {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-style: normal;
  font-weight: 500;
  line-height: 161%; /* 32.2px */
}
.careers-container > .career-item > .career-brief-description {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 25.76px */
}

.wedux-floor-cart {
  background: var(--Secondary-Craft-White, #F8F0E7);
  max-width: 100%;
  width: 100%;
  padding: 120px var(--padding-x, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wedux-floor-cart > .inner-content {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.wedux-floor-cart > .inner-content > .cart-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.wedux-floor-cart > .inner-content > .cart-messages > .cart-message {
  background: #FFF4E5;
  border: 1px solid #FFDD99;
  border-radius: 4px;
  padding: 12px 16px;
  color: #663C00;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  margin: 0 auto;
  width: 100%;
}
.wedux-floor-cart > .inner-content > p {
  max-width: 849px;
}
.wedux-floor-cart > .inner-content .cart-items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.wedux-floor-cart > .inner-content .cart-items > .cart-item {
  width: calc(25% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 80.91px 10px 30px 10px;
  border: 1px solid #C2AE97;
  position: relative;
}
.wedux-floor-cart > .inner-content .cart-items > .cart-item > .remove-link {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 14px;
  color: var(--Secondary-Chestnut, #8D5C49);
  text-decoration: none;
  text-transform: uppercase;
}
.wedux-floor-cart > .inner-content .cart-items > .cart-item > .remove-link > a {
  position: relative;
  text-decoration: inherit;
  color: inherit;
  transition: color 0.3s ease;
}
.wedux-floor-cart > .inner-content .cart-items > .cart-item > .remove-link > a:before {
  content: "";
  width: 0;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -3px;
  transition: width 0.3s ease;
}
.wedux-floor-cart > .inner-content .cart-items > .cart-item > .remove-link > a:hover {
  color: #000;
}
.wedux-floor-cart > .inner-content .cart-items > .cart-item > .remove-link > a:hover:before {
  width: 100%;
}
.wedux-floor-cart > .inner-content .cart-items > .cart-item > .cart-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wedux-floor-cart > .inner-content .cart-items > .cart-item .name {
  color: var(--Secondary-Chestnut, #8D5C49);
}
.wedux-floor-cart > .inner-content .cart-items > .cart-item > .swatch {
  aspect-ratio: 162/141;
  background-color: black;
  width: 100%;
  background-image: var(--image, none);
  background-size: cover;
  background-position: center;
  max-width: 80%;
}
.wedux-floor-cart > .inner-content .cart-items > .cart-item .sku-label {
  font-size: 1rem;
  color: #666666;
}
@media screen and (max-width: 1330px) {
  .wedux-floor-cart > .inner-content .cart-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .wedux-floor-cart > .inner-content .cart-items > .cart-item {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 978px) {
  .wedux-floor-cart > .inner-content .cart-items {
    grid-template-columns: 1fr;
  }
  .wedux-floor-cart > .inner-content .cart-items > .cart-item {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 24px;
    padding: 20px;
  }
  .wedux-floor-cart > .inner-content .cart-items > .cart-item > .swatch {
    max-width: 30%;
  }
}
.wedux-floor-cart > .inner-content .cart-items.small {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 849px;
}
.wedux-floor-cart > .inner-content .cart-items.small > .cart-item {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 24px;
  padding: 0;
}
.wedux-floor-cart > .inner-content .cart-items.small > .cart-item > .remove-link {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wedux-floor-cart > .inner-content .cart-items.small > .cart-item:hover > .remove-link {
  opacity: 1;
}
.wedux-floor-cart > .inner-content .cart-items.small > .cart-item > .swatch {
  max-width: 75px;
  aspect-ratio: 1/1;
}
.wedux-floor-cart > .inner-content .cart-items.small > .cart-item .name {
  font-size: 1rem;
  margin-bottom: 0;
}
.wedux-floor-cart > .inner-content .cart-items.small > .cart-item .sku-label {
  font-size: 0.875rem;
  color: #666666;
}
.wedux-floor-cart > .inner-content > .cart-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 16px;
  margin-top: 24px;
}
.wedux-floor-cart > .inner-content > .cart-actions > .carlisle-button {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 968px) {
  .wedux-floor-cart > .inner-content > .cart-actions {
    flex-direction: column;
  }
  .wedux-floor-cart > .inner-content > .cart-actions > .carlisle-button {
    max-width: 100%;
  }
}
.wedux-floor-cart > .inner-content > .checkout-split {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  text-align: left;
  max-width: 849px;
  width: 100%;
}
.wedux-floor-cart > .inner-content > .checkout-split > .form-holder {
  width: 100%;
}

.collaborations-listing {
  display: flex;
  flex-direction: column;
  gap: 136px;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  .collaborations-listing {
    gap: 64px;
  }
}
@media (max-width: 768px) {
  .collaborations-listing {
    gap: 32px;
  }
}
.collaborations-listing > .collaboration-feature {
  display: flex;
  flex-direction: row;
  gap: 64px;
}
@media (max-width: 1024px) {
  .collaborations-listing > .collaboration-feature {
    flex-direction: column !important;
    gap: 32px;
  }
  .collaborations-listing > .collaboration-feature > .left {
    align-items: stretch !important;
    text-align: left !important;
  }
}
.collaborations-listing > .collaboration-feature > .left,
.collaborations-listing > .collaboration-feature > .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.collaborations-listing > .collaboration-feature > .left {
  align-items: flex-start;
}
.collaborations-listing > .collaboration-feature > .left h3 {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-weight: 500;
  line-height: 160%; /* 57.6px */
  margin: 0;
}
.collaborations-listing > .collaboration-feature > .left p {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 32px */
  max-width: 582px;
  margin: 0;
}
.collaborations-listing > .collaboration-feature > .left .collaboration-card-image {
  width: 100%;
  max-width: 80%;
  aspect-ratio: 1/0.9;
  position: relative;
  background: var(--img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .collaborations-listing > .collaboration-feature > .left .collaboration-card-image {
    max-width: 100%;
    aspect-ratio: 1.5/1;
  }
}
.collaborations-listing > .collaboration-feature > .left .collaboration-card-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.collaborations-listing > .collaboration-feature > .left .collaboration-card-image > .photo-credit {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  text-transform: uppercase;
}
.collaborations-listing > .collaboration-feature > .right > .gallery-container {
  position: relative;
  aspect-ratio: 610/755;
}
.collaborations-listing > .collaboration-feature > .right > .gallery-container > .metadata {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(60, 60, 60, 0.6);
  padding: 12px 24px;
}
.collaborations-listing > .collaboration-feature > .right > .gallery-container > .metadata > a {
  text-decoration: underline;
  max-width: 40%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collaborations-listing > .collaboration-feature > .right > .gallery-container > .metadata > a,
.collaborations-listing > .collaboration-feature > .right > .gallery-container > .metadata > span {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .collaborations-listing > .collaboration-feature > .right > .gallery-container {
    display: none;
  }
}
.collaborations-listing > .collaboration-feature > .right > .gallery-container > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.collaborations-listing > .collaboration-feature > .right > .gallery-container > img.active {
  opacity: 1;
  pointer-events: all;
}
.collaborations-listing > .collaboration-feature > .right > .gallery-container > .arrows {
  position: absolute;
  bottom: -60px;
  right: 0;
  display: flex;
  justify-content: space-between;
}
.collaborations-listing > .collaboration-feature > .right > .gallery-container > .arrows.odd {
  left: 0;
  right: auto;
}
.collaborations-listing > .collaboration-feature > .right > .gallery-container > .arrows > .arrow--left,
.collaborations-listing > .collaboration-feature > .right > .gallery-container > .arrows > .arrow--right {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.collaborations-listing > .collaboration-feature > .right > .gallery-container > .arrows > .arrow--left:hover,
.collaborations-listing > .collaboration-feature > .right > .gallery-container > .arrows > .arrow--right:hover {
  transform: scale(0.9);
}
.collaborations-listing > .collaboration-feature.odd {
  flex-direction: row-reverse;
}
.collaborations-listing > .collaboration-feature.odd > .left {
  align-items: flex-end;
  text-align: right;
}
.collaborations-listing > .collaboration-feature.odd > .left > * {
  text-align: inherit;
}

.collaboration-content {
  margin: 0 !important;
}

.collaboration-heading {
  background-color: #fcf8f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 30px 40px;
  margin-bottom: 100px;
}
.collaboration-heading > .inner-content {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.collaboration-heading > .inner-content > .left {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
.collaboration-heading > .inner-content > .left > .eyebrow-text {
  color: #8d5c49;
  margin-bottom: 0;
}
.collaboration-heading > .inner-content > .left > h2 {
  margin: 0;
}
.collaboration-heading > .inner-content > .left > p {
  max-width: 750px;
  margin: 0;
}
.collaboration-heading > .inner-content > .right {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collaboration-heading > .inner-content > .right > .collaborator-image {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 900px) {
  .collaboration-heading {
    padding: 40px 20px 20px 20px;
    margin-bottom: 60px;
  }
  .collaboration-heading > .inner-content {
    flex-direction: column;
    gap: 20px;
  }
  .collaboration-heading > .inner-content > .left, .collaboration-heading > .inner-content > .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .collaboration-heading > .inner-content > .left > h2,
  .collaboration-heading > .inner-content > .left > p, .collaboration-heading > .inner-content > .right > h2,
  .collaboration-heading > .inner-content > .right > p {
    text-align: center;
    margin: 0;
  }
  .collaboration-heading > .inner-content > .right {
    order: -1;
  }
  .collaboration-heading > .inner-content > .right > .collaborator-image {
    max-width: 150px;
  }
}

.wedux-commercial-gallery-selector {
  display: flex;
  flex-direction: row;
  padding-top: 100px;
  gap: 62px;
}
.wedux-commercial-gallery-selector > .selector {
  width: 40%;
  padding-top: 56px;
}
.wedux-commercial-gallery-selector > .selector > .selector-item {
  display: block;
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  padding: 30px 0;
  cursor: pointer;
  transition: font-weight 0.3s ease-in-out;
}
.wedux-commercial-gallery-selector > .selector > .selector-item:hover {
  font-weight: 500;
}
.wedux-commercial-gallery-selector > .selector > .selector-item.active {
  font-weight: 600;
}
.wedux-commercial-gallery-selector > .selector > .button-holder {
  max-width: 318px;
}
.wedux-commercial-gallery-selector > .gallery {
  width: 60%;
}
.wedux-commercial-gallery-selector > .gallery > .gallery-image {
  width: 100%;
  aspect-ratio: 879/550;
  background-image: none;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}
.wedux-commercial-gallery-selector > .gallery > .gallery-bar {
  background: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}
.wedux-commercial-gallery-selector > .gallery > .gallery-bar > a,
.wedux-commercial-gallery-selector > .gallery > .gallery-bar > span {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 21px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.wedux-commercial-gallery-selector > .gallery.fade-out > .gallery-image,
.wedux-commercial-gallery-selector > .gallery.fade-out > .gallery-bar {
  opacity: 0;
}
.wedux-commercial-gallery-selector > .gallery > .arrows {
  padding: 20px 0 0 0;
  z-index: 4;
  bottom: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}
.wedux-commercial-gallery-selector > .gallery > .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: transform 0.3s ease-in-out;
}
.wedux-commercial-gallery-selector > .gallery > .arrows > button:hover {
  transform: scale(0.9);
}
@media (max-width: 1024px) {
  .wedux-commercial-gallery-selector {
    flex-direction: column;
    padding: 40px 20px 100px 20px;
    gap: 40px;
  }
  .wedux-commercial-gallery-selector > .selector,
  .wedux-commercial-gallery-selector > .gallery {
    width: 100%;
  }
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.showroom-page-explore {
  margin: 0;
  max-width: 100% !important;
  width: 100% !important;
}
.showroom-page-explore > .showroom-page-explore-header {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.showroom-page-explore > .showroom-page-explore-header > h2 {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "Wulkan Display";
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 96px */
}
.showroom-page-explore > .showroom-page-explore-header > h2 > em {
  color: var(--Secondary-Chestnut, #8D5C49);
  font-style: italic;
}
.showroom-page-explore > .showroom-page-explore-header > p {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 32px */
  max-width: 768px;
  width: 100%;
}
.showroom-page-explore .glide__slides {
  padding-left: 250px;
  position: relative;
}
.showroom-page-explore .showroom-card {
  text-decoration: none;
}
.showroom-page-explore .showroom-card > .showroom-card-image {
  aspect-ratio: 1/1;
  width: 100%;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: blue;
  margin-bottom: 18px;
}
.showroom-page-explore .showroom-card > span {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "Wulkan Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
}
.showroom-page-explore .arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 0;
}
.showroom-page-explore .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 1024px) {
  .showroom-page-explore .showroom-page-explore-header {
    padding: 60px 20px;
  }
  .showroom-page-explore .showroom-page-explore-header > h2 {
    font-size: 72px;
    line-height: 120%; /* 86px */
  }
  .showroom-page-explore .showroom-page-explore-header > p {
    font-size: 18px;
    line-height: 160%; /* 29px */
  }
  .showroom-page-explore .glide__slides {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .showroom-page-explore .showroom-page-explore-header {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .showroom-page-explore .showroom-page-explore-header > h2 {
    font-size: 48px;
    line-height: 120%; /* 58px */
  }
  .showroom-page-explore .glide__slides {
    padding: 0;
  }
  .showroom-page-explore .showroom-page-explore-container {
    padding: 0 20px;
  }
}

.contact-us-specialists {
  min-height: 100vh;
  background-color: #3C3C3C;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-us-specialists > .cus-navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 40px;
}
.contact-us-specialists > .cus-navigation > a {
  color: #fff;
  font-family: "SourceSans3";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 21px */
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
}
.contact-us-specialists > .cus-navigation > a.active, .contact-us-specialists > .cus-navigation > a:hover {
  opacity: 1;
  text-decoration: underline;
}
@media screen and (max-width: 1136px) {
  .contact-us-specialists > .cus-navigation {
    display: none;
  }
}
.contact-us-specialists > .arrows {
  position: absolute;
  bottom: 100px;
  right: 40px;
  z-index: 4;
}
.contact-us-specialists > .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: transform 0.3s ease-in-out;
}
.contact-us-specialists > .arrows > button:hover {
  transform: scale(0.9);
}
.contact-us-specialists > .cus-content {
  flex: 1;
  width: 100%;
  position: relative;
}
.contact-us-specialists > .cus-content > .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.5s ease-in-out;
  overflow: visible clip;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.contact-us-specialists > .cus-content > .slide > .slide-image {
  position: absolute;
  max-width: 568px;
  pointer-events: none;
  z-index: 1;
  filter: saturate(0);
  opacity: 0.2;
}
@media screen and (max-height: 1090px) {
  .contact-us-specialists > .cus-content > .slide > .slide-image {
    max-width: 400px;
  }
}
@media screen and (max-height: 900px) {
  .contact-us-specialists > .cus-content > .slide > .slide-image {
    max-width: 400px;
  }
}
@media screen and (max-height: 800px) {
  .contact-us-specialists > .cus-content > .slide > .slide-image {
    max-width: 300px;
  }
}
.contact-us-specialists > .cus-content > .slide > .slide-introduction {
  width: 100%;
  max-width: 827px;
  text-align: center;
  border-top: 1px solid var(--Secondary-Driftwood, #C2AE97);
  border-bottom: 1px solid var(--Secondary-Driftwood, #C2AE97);
  padding: 20px;
}
.contact-us-specialists > .cus-content > .slide > .slide-introduction > h2 {
  color: var(--Secondary-Driftwood, #C2AE97);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 20px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 30px */
  letter-spacing: 4px;
  text-transform: uppercase;
}
.contact-us-specialists > .cus-content > .slide > .slide-introduction > p {
  color: var(--Secondary-Driftwood, #C2AE97);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 36.4px */
}
.contact-us-specialists > .cus-content > .slide > .showroom-details {
  max-width: 60vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1430px) {
  .contact-us-specialists > .cus-content > .slide > .showroom-details {
    max-width: 80vw;
  }
}
.contact-us-specialists > .cus-content > .slide > .showroom-details > .photo-output {
  aspect-ratio: 3/2;
  width: 50%;
  flex: 1;
  border: 1px solid #C2AE97;
  padding: 8px;
  z-index: 5;
}
.contact-us-specialists > .cus-content > .slide > .showroom-details > .photo-output > div {
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #F8F0E7;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
}
@media screen and (max-height: 900px) {
  .contact-us-specialists > .cus-content > .slide > .showroom-details > .photo-output {
    max-width: 400px;
    left: 12%;
    top: 15%;
  }
}
@media screen and (max-height: 800px) {
  .contact-us-specialists > .cus-content > .slide > .showroom-details > .photo-output {
    position: static;
  }
}
.contact-us-specialists > .cus-content > .slide > .showroom-details > .content {
  width: 50%;
  flex: 1;
}
.contact-us-specialists > .cus-content > .slide > .showroom-details > .content > strong {
  color: var(--Secondary-Driftwood, #C2AE97);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.contact-us-specialists > .cus-content > .slide > .showroom-details > .content > p {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
}
@media screen and (max-width: 1650px) {
  .contact-us-specialists > .cus-content > .slide > .showroom-details > .content > p {
    font-size: 18px;
  }
}
@media screen and (max-height: 800px) {
  .contact-us-specialists > .cus-content > .slide > .showroom-details {
    margin-top: 20px;
  }
  .contact-us-specialists > .cus-content > .slide > .showroom-details > strong,
  .contact-us-specialists > .cus-content > .slide > .showroom-details > p {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 976px), (max-height: 600px) {
  .contact-us-specialists {
    display: none;
  }
}

.curated-carousel {
  max-width: 1472px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.curated-carousel > .floor-preview {
  width: 100%;
  aspect-ratio: 1472/631;
  background-image: var(--img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .curated-carousel > .floor-preview {
    aspect-ratio: 1/1;
  }
}
.curated-carousel > .floor-preview > .details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(60, 60, 60, 0.6);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.curated-carousel > .floor-preview > .details > div {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 21px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.curated-carousel > .floor-preview > .details > div > .color-title {
  text-decoration: underline;
}
.curated-carousel .swatch-slides {
  padding: 36px 0 0 0;
}
.curated-carousel .swatch-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 10px;
}
.curated-carousel .swatch-container .floor-swatch {
  width: 100%;
  aspect-ratio: 216/150;
  background-image: var(--img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.6s ease-in-out;
}
.curated-carousel .swatch-container .floor-swatch:hover {
  transform: scale(0.95);
}
.curated-carousel .swatch-container > .title {
  display: block;
  color: var(--Secondary-Chestnut, #8D5C49);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.curated-carousel .bottom-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  padding: 90px 20px 70px 20px;
}
.curated-carousel .bottom-container > .arrows {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.curated-carousel .bottom-container > .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: transform 0.6s ease-in-out;
}
.curated-carousel .bottom-container > .arrows > button:hover {
  transform: scale(0.9);
}
@media screen and (max-width: 1024px) {
  .curated-carousel .bottom-container {
    flex-direction: column;
  }
  .curated-carousel .bottom-container > .arrows {
    position: static;
  }
}

.wedux-faq {
  width: 100%;
}
.wedux-faq > .wedux-faq-questions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item {
  display: flex;
  flex-direction: row;
  gap: 100px;
  position: relative;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item::after {
  position: absolute;
  content: "";
  left: 35%;
  right: 0;
  height: 1px;
  bottom: 0;
  background-color: #8D5C49;
  transition: left 0.3s ease-in-out;
}
@media screen and (max-width: 1100px) {
  .wedux-faq > .wedux-faq-questions > .wedux-faq-item::after {
    left: 0;
  }
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item > .wedux-faq-image {
  max-width: 399px;
  width: 100%;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item > .wedux-faq-image > .image {
  aspect-ratio: 399/280;
  background-image: var(--image);
  background-size: cover;
  background-position: center;
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 1100px) {
  .wedux-faq > .wedux-faq-questions > .wedux-faq-item > .wedux-faq-image {
    display: none;
  }
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item > .wedux-faq-content {
  width: 100%;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: padding-bottom 0.3s ease-in-out;
  padding-bottom: 20px;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item > .wedux-faq-content > .wedux-faq-question {
  color: var(--Secondary-Chestnut, #8D5C49);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item > .wedux-faq-content > .wedux-faq-question-background-text {
  display: block;
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "Wulkan Display";
  font-style: italic;
  font-weight: 500;
  line-height: 110%; /* 312.4px */
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-transform: lowercase;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item > .wedux-faq-content > .wedux-faq-question,
.wedux-faq > .wedux-faq-questions > .wedux-faq-item > .wedux-faq-content > .wedux-faq-answer {
  position: relative;
  z-index: 2;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item > .wedux-faq-content > .wedux-faq-answer {
  max-width: 481px;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item.open > .wedux-faq-content {
  padding-bottom: 84px;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item.open > .wedux-faq-content > .wedux-faq-answer {
  max-height: 400px;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item.open > .wedux-faq-content > .wedux-faq-question-background-text {
  opacity: 1;
}
.wedux-faq > .wedux-faq-questions > .wedux-faq-item.open > .wedux-faq-image > .image {
  display: block;
  opacity: 1;
  height: auto !important;
}

.faq-controller-container {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 115px 40px;
}
.faq-controller-container > .inner-content {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 80px;
}
.faq-controller-container > .inner-content > .left {
  max-width: 222px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.faq-controller-container > .inner-content > .left > a {
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 25.76px */
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.6s;
}
.faq-controller-container > .inner-content > .left > a > span {
  position: relative;
}
.faq-controller-container > .inner-content > .left > a > span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  transition: width 0.6s ease-in-out;
}
.faq-controller-container > .inner-content > .left > a.active, .faq-controller-container > .inner-content > .left > a:hover {
  color: var(--Secondary-Chestnut, #8D5C49);
}
.faq-controller-container > .inner-content > .left > a.active > span::after, .faq-controller-container > .inner-content > .left > a:hover > span::after {
  width: 100%;
  background-color: var(--Secondary-Chestnut, #8D5C49);
}
.faq-controller-container > .inner-content > .right {
  flex: 1;
}
.faq-controller-container > .inner-content > .right > h4 {
  margin: 0 0 53px 0;
}
.faq-controller-container > .inner-content > .right > .accordion-item {
  border-bottom: 1px solid var(--Secondary-Chestnut, #8D5C49);
}
.faq-controller-container > .inner-content > .right > .accordion-item > .accordion-header {
  color: var(--Secondary-Chestnut, #8D5C49);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  cursor: pointer;
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.faq-controller-container > .inner-content > .right > .accordion-item > .accordion-header > svg {
  transition: transform 0.6s ease-in-out;
}
.faq-controller-container > .inner-content > .right > .accordion-item > .accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
}
.faq-controller-container > .inner-content > .right > .accordion-item.init > .accordion-body {
  transition: max-height 0.6s ease-in-out, padding 0.6s ease-in-out;
}
.faq-controller-container > .inner-content > .right > .accordion-item.open > .accordion-header > svg {
  transform: rotate(180deg);
}
.faq-controller-container > .inner-content > .right > .accordion-item.open > .accordion-body {
  max-height: calc(var(--maxHeight) + 24px);
  padding: 0px 28px 24px 28px;
}
@media screen and (max-width: 976px) {
  .faq-controller-container > .inner-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .faq-controller-container > .inner-content > .left {
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  }
  .faq-controller-container > .inner-content > .right > h4 {
    margin: 0 0 0 0;
    text-align: center;
  }
  .faq-controller-container > .inner-content > .right > .accordion-item > .accordion-header {
    padding: 24px 12px 12px 14px;
  }
  .faq-controller-container > .inner-content > .right > .accordion-item > .accordion-body {
    padding-left: 12px;
  }
  .faq-controller-container > .inner-content > .right > .accordion-item.open > .accordion-body {
    padding: 0px 12px 12px 14px;
  }
}

.floor-detail-topper {
  width: 100%;
  max-width: 100% !important;
  aspect-ratio: 1440/540;
  background-image: var(--img);
  background-size: cover;
  background-position: bottom center;
  background-color: #333;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12px;
}
.floor-detail-topper > .heading {
  padding: 0 55px;
}
.floor-detail-topper > .heading > span.header {
  color: #FAF1E0;
  font-feature-settings: "liga" off;
  font-family: "Wulkan Display";
  font-size: clamp(2.5rem, 8vw, 128px) !important;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 128px */
  margin: 0;
  display: block;
}
.floor-detail-topper > .details {
  background: rgba(60, 60, 60, 0.6);
  padding: 12px 55px;
  width: 100%;
}
.floor-detail-topper > .details > .photo-credit {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 19.5px */
  letter-spacing: 2px;
  text-transform: uppercase;
}

.link-bar {
  background: rgba(248, 240, 231, 0.8);
  display: flex;
  max-width: 100%;
  width: 100%;
  flex-direction: row;
  gap: 6px;
  padding: 6px;
}
@media screen and (max-width: 976px) {
  .link-bar {
    flex-direction: column;
  }
}
.link-bar > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  text-align: center;
  text-decoration: none;
  background-color: rgba(194, 174, 151, 0.57);
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 24px;
  transition: background-color 0.6s ease-in-out, color 0.6s ease-in-out, transform 0.6s ease-in-out;
}
.link-bar > a > svg {
  max-width: 24px;
  max-height: 24px;
}
.link-bar > a:hover {
  background-color: rgba(194, 174, 151, 0.87);
  color: var(--Primary-Heritage-Black, #3C3C3C);
  transform: scale(0.98);
}

.floor-detail-overview {
  background: rgba(248, 240, 231, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.floor-detail-overview > .floor-detail-overview-topper {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}
.floor-detail-overview > .floor-detail-overview-topper > span.header {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  text-align: center;
  font-family: "Wulkan Display";
  font-size: clamp(32px, 6vw, 64px) !important;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 89.6px */
  margin: 0;
  display: block;
}
.floor-detail-overview > .floor-detail-overview-topper > p {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 33.6px */
  max-width: 600px;
  margin: 0;
}
.floor-detail-overview > .floor-detail-left-right {
  padding: 108px 0;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 976px) {
  .floor-detail-overview > .floor-detail-left-right {
    flex-direction: column;
    gap: 30px;
  }
}
.floor-detail-overview > .floor-detail-left-right > .floor-detail-left,
.floor-detail-overview > .floor-detail-left-right > .floor-detail-right {
  flex: 1;
}
.floor-detail-overview > .floor-detail-left-right > .floor-detail-left > .floor-detail-swatch {
  aspect-ratio: 6/4;
}
.floor-detail-overview > .floor-detail-left-right > .floor-detail-left > .floor-detail-swatch > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.floor-detail-overview > .floor-detail-left-right > .floor-detail-right {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.floor-detail-overview > .floor-detail-left-right > .floor-detail-right > .eyebrow {
  color: var(--Secondary-Chestnut, #8D5C49);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 30px */
  letter-spacing: 4px;
  text-transform: uppercase;
}
.floor-detail-overview > .floor-detail-left-right > .floor-detail-right > p {
  margin: 0;
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
}
.floor-detail-overview > .floor-detail-left-right > .floor-detail-right > .floor-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .floor-detail-overview > .floor-detail-left-right > .floor-detail-right > .floor-buttons {
    flex-direction: column;
    width: 100%;
  }
  .floor-detail-overview > .floor-detail-left-right > .floor-detail-right > .floor-buttons > a {
    width: 100%;
    justify-content: center;
  }
}

.floor-detail-curated-colors {
  background: rgba(248, 240, 231, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}
.floor-detail-curated-colors > .top {
  max-width: 1440px;
  width: 100%;
  position: relative;
  padding: 100px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.floor-detail-curated-colors > .top > .background-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.16;
}
.floor-detail-curated-colors > .top > .background-text > div {
  color: var(--Secondary-Chestnut, #8D5C49);
  font-family: "Wulkan Display";
  font-size: 300px;
  font-style: italic;
  font-weight: 500;
  line-height: 72%;
}
.floor-detail-curated-colors > .top > h2 {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "Wulkan Display";
  font-size: clamp(32px, 5vw, 50px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 80px */
  position: relative;
  z-index: 2;
}
.floor-detail-curated-colors > .bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.floor-detail-curated-colors > .bottom > .color-swatch {
  text-decoration: none;
  aspect-ratio: 269/150;
  width: 100%;
}
.floor-detail-curated-colors > .bottom > .color-swatch > .image-container {
  aspect-ratio: 269/150;
  width: 100%;
}
.floor-detail-curated-colors > .bottom > .color-swatch > .image-container > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.floor-detail-curated-colors > .bottom > .color-swatch > span {
  display: block;
  color: var(--Secondary-Chestnut, #8D5C49);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (max-width: 1064px) {
  .floor-detail-curated-colors > .bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .floor-detail-curated-colors > .bottom > .color-swatch {
    width: 100%;
    max-width: 300px;
    flex: 1 0 33%;
  }
  .floor-detail-curated-colors > .bottom > .color-swatch > .image-container {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 768px) {
  .floor-detail-curated-colors > .bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .floor-detail-curated-colors > .bottom > .color-swatch:last-of-type {
    display: none;
  }
}

.floor-detail-case-studies {
  background: var(--Primary-Heritage-Black, #3C3C3C);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.floor-detail-case-studies > .featured-case-studies-header {
  max-width: 1440px;
  width: 100%;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39px;
}
.floor-detail-case-studies > .featured-case-studies-header > .eyebrow {
  color: var(--Secondary-Driftwood, #C2AE97);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 30px */
  letter-spacing: 4px;
  text-transform: uppercase;
}
.floor-detail-case-studies > .featured-case-studies-header > h3 {
  color: var(--Secondary-Craft-White, #F8F0E7);
  text-align: center;
  font-family: "Wulkan Display";
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 98px */
  margin: 0;
}
.floor-detail-case-studies > .featured-case-studies-header > p {
  color: var(--Secondary-Craft-White, #F8F0E7);
  text-align: center;
  margin: 0;
  max-width: 1042px;
}
.floor-detail-case-studies > .fcs-content {
  width: 100%;
}

.floor-scroller {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.floor-scroller > .floor-item {
  background-image: var(--img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 22%;
  min-height: 70vh;
  filter: saturate(0.2);
  transition: width 0.6s ease-in-out, filter 0.6s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.floor-scroller > .floor-item::before {
  content: "";
  display: block;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.36) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}
.floor-scroller > .floor-item > .floor-info {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
}
.floor-scroller > .floor-item > .floor-info > .floor-title {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "Wulkan Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 39px */
  padding-bottom: 8px;
}
.floor-scroller > .floor-item > .floor-info > p {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.6s ease-in-out, max-height 0.6s ease-in-out;
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-weight: 400;
  line-height: 140%; /* 28px */
  overflow-y: hidden;
}
.floor-scroller > .floor-item.sleeping > .floor-info > .floor-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.floor-scroller > .floor-item.hovered > .floor-info > p {
  transition-delay: 0.3s;
  opacity: 1;
  max-height: 500px;
  transition-delay: 0;
}
.floor-scroller > .floor-item:hover {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), var(--img);
  width: 41%;
  filter: saturate(1);
}
@media screen and (max-width: 1140px) {
  .floor-scroller {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .floor-scroller > .floor-item {
    width: 100% !important;
    min-height: 50vh;
  }
  .floor-scroller > .floor-item:hover {
    width: 100% !important;
  }
  .floor-scroller > .floor-item > .floor-info > p {
    opacity: 1;
    max-height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .floor-scroller {
    grid-template-columns: 1fr;
  }
}

.fly-in-text {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  max-width: 100%;
  width: 100%;
  z-index: 4;
  margin-bottom: -10px;
}
.fly-in-text > div {
  position: relative;
  font-size: clamp(3rem, 12vw, 18rem);
  white-space: nowrap;
  will-change: transform;
  transform: translateX(0%);
  font-family: "Wulkan Display";
  font-weight: 500;
  color: #C2AE97;
  transition: opacity 1s ease-in-out;
  opacity: 1;
  padding: 1rem;
  line-height: 45%;
  font-style: italic;
}
.fly-in-text > div.settled {
  opacity: 0.4;
}

.carlisle-footer {
  background: var(--Primary-Heritage-Black, #3C3C3C);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.carlisle-footer > .dark-side {
  max-width: 1440px;
  width: 100%;
  padding: 40px;
}
.carlisle-footer > .dark-side > .top-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 50px;
}
.carlisle-footer > .dark-side > .top-content > .logo {
  flex: 1;
}
.carlisle-footer > .dark-side > .top-content > .logo img {
  max-width: 273px;
  width: 100%;
}
.carlisle-footer > .dark-side > .top-content > .get-started {
  max-width: 402px;
  width: 100%;
}
@media screen and (max-width: 875px) {
  .carlisle-footer > .dark-side > .top-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .carlisle-footer > .dark-side > .top-content > .logo {
    max-width: 273px;
    width: 100%;
  }
}
.carlisle-footer > .dark-side > .link-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 60px;
  gap: 60px;
  padding: 110px 0;
}
.carlisle-footer > .dark-side > .link-flow > .link-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > div > .section-title {
  color: var(--Secondary-Craft-White, #F8F0E7);
  text-overflow: ellipsis;
  font-family: "Wulkan Display";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
  text-decoration: none;
  position: relative;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > div > .section-title:before {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--Secondary-Craft-White, #F8F0E7);
  transition: width 0.6s ease-in-out;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > div > .section-title:hover:before {
  width: 100%;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > .link-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > .link-list > div > a {
  text-decoration: none;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > .link-list:not(.alt) > div > a {
  color: var(--Secondary-Driftwood, #C2AE97);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%; /* 21px */
  letter-spacing: 0.84px;
  text-transform: uppercase;
  position: relative;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > .link-list:not(.alt) > div > a:before {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--Secondary-Driftwood, #C2AE97);
  transition: width 0.6s ease-in-out;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > .link-list:not(.alt) > div > a:hover:before {
  width: 100%;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > .link-list.alt > div > a {
  overflow: hidden;
  color: var(--Secondary-Craft-White, #F8F0E7);
  text-overflow: ellipsis;
  font-family: "Wulkan Display";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
  position: relative;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > .link-list.alt > div > a:before {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--Secondary-Craft-White, #F8F0E7);
  transition: width 0.6s ease-in-out;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.carlisle-footer > .dark-side > .link-flow > .link-section > .link-list.alt > div > a:hover:before {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .carlisle-footer > .dark-side > .link-flow {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
  }
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .socials {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .socials > .left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .socials > .left > a {
  color: var(--Secondary-Driftwood, #C2AE97) !important;
  width: 24px;
  aspect-ratio: 1/1;
  transition: color 0.3s ease-in-out;
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .socials > .left > a > svg {
  fill: var(--Secondary-Driftwood, #C2AE97);
  transition: fill 0.3s ease-in-out;
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .socials > .left > a:hover {
  color: var(--Secondary-Craft-White, #F8F0E7) !important;
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .socials > .left > a:hover > svg {
  fill: var(--Secondary-Craft-White, #F8F0E7);
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .socials > .right {
  max-width: 402px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .carlisle-footer > .dark-side > .social-and-bottom-nav > .socials {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 84px;
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav > .left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 0.5px solid var(--Secondary-Craft-White, #F8F0E7);
  flex: 1;
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav > .left > a {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-size: 14px;
  font-style: normal;
  line-height: 150%; /* 21px */
  letter-spacing: 0.84px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
}
@media screen and (max-width: 925px) {
  .carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav > .left {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav > .left {
    grid-template-columns: 1fr 1fr;
  }
  .carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav > .left > a:nth-child(even) {
    text-align: right;
  }
  .carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav > .left > a:nth-child(odd) {
    text-align: left;
  }
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav > .right {
  max-width: 327px;
  width: 100%;
}
.carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav > .right > a {
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 42px;
  }
  .carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav > .left {
    width: 100%;
  }
  .carlisle-footer > .dark-side > .social-and-bottom-nav > .bottom-nav > .right {
    max-width: 100%;
  }
}
.carlisle-footer > .of-the-moon {
  width: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #F8F0E7;
  position: relative;
}
.carlisle-footer > .of-the-moon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/wp-content/plugins/wedux/acf-blocks/footer/image/pattern.svg);
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}
.carlisle-footer > .of-the-moon > span {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 20px */
  position: relative;
  z-index: 2;
}
.carlisle-footer.commercial {
  background-color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
}
.carlisle-footer:not(.commercial) > .dark-side > .top-content > .logo > img {
  filter: brightness(0) invert(1);
}

.wedux-gallery {
  overflow-x: hidden;
  padding: 40px 0;
}
.wedux-gallery > .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 0 75px 0;
}
.wedux-gallery > .wrapper {
  aspect-ratio: 1747/523;
  max-height: 520px;
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
}
.wedux-gallery > .wrapper > .gallery-item {
  position: absolute;
  background: var(--image) #fff;
  background-size: cover;
  background-position: center;
}
.wedux-gallery > .wrapper > .gallery-item.item-0 {
  top: 0;
  width: min(22.917vw, 330px);
  aspect-ratio: 330/335;
}
.wedux-gallery > .wrapper > .gallery-item.item-1 {
  top: 0;
  width: min(15.278vw, 220px);
  aspect-ratio: 220/250;
}
.wedux-gallery > .wrapper > .gallery-item.item-2 {
  bottom: 0;
  width: min(23.958vw, 345px);
  aspect-ratio: 1/1;
}
.wedux-gallery > .wrapper > .gallery-item.item-3 {
  top: 50%;
  transform: translateY(-50%);
  width: min(15.278vw, 220px);
  aspect-ratio: 220/250;
}

.wedux-featured-post {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 70px;
}
.wedux-featured-post > .left {
  width: 40%;
}
.wedux-featured-post > .left > .image {
  aspect-ratio: 104/113;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
}
.wedux-featured-post > .right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.wedux-featured-post > .right > .eyebrow {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 30px */
  letter-spacing: 4px;
  text-transform: uppercase;
}
.wedux-featured-post > .right > .featured-title {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "Wulkan Display";
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 80px */
  margin: 0 !important;
}
.wedux-featured-post > .right > p {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  max-width: 662px;
}
@media screen and (max-width: 1024px) {
  .wedux-featured-post {
    flex-direction: column;
  }
  .wedux-featured-post > .left {
    width: 100%;
  }
  .wedux-featured-post > .left > .image {
    aspect-ratio: 16/9;
  }
  .wedux-featured-post > .right {
    width: 100%;
  }
  .wedux-featured-post > .right > .featured-title {
    font-size: 40px;
    line-height: 150%; /* 60px */
  }
}
@media screen and (max-width: 768px) {
  .wedux-featured-post > .left > .image {
    aspect-ratio: 16/9;
  }
  .wedux-featured-post > .right > .featured-title {
    font-size: 24px;
  }
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.generic-scroller {
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
}
@media screen and (max-width: 768px) {
  .generic-scroller {
    display: none;
  }
}
.generic-scroller .card {
  width: 100% !important;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 986px) {
  .generic-scroller .card {
    gap: 0px;
  }
}
.generic-scroller .card > .card-image {
  max-width: 450px;
  width: 100%;
  aspect-ratio: 450/319;
  background-image: var(--img);
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: var(--focal-point, center);
}
@media (max-width: 1000px) {
  .generic-scroller .card > .card-image {
    max-width: 200px;
    width: 100%;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 768px) {
  .generic-scroller .card > .card-image {
    display: none;
  }
}
.generic-scroller .card > .card-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  white-space: wrap !important;
  white-space-collapse: wrap !important;
  padding: 0 20px;
}
.generic-scroller .card > .card-details > .eyebrow-text {
  color: var(--Secondary-Chestnut, #8D5C49);
  text-decoration: none;
  position: relative;
}
.generic-scroller .card > .card-details > .eyebrow-text > span {
  position: relative;
}
.generic-scroller .card > .card-details > .eyebrow-text > span:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--Secondary-Chestnut, #8D5C49);
  bottom: -10px;
  left: 0;
  transition: all 0.6s ease;
}
.generic-scroller .card > .card-details > .eyebrow-text:hover > span:before {
  width: 100%;
}
.generic-scroller .card > .card-details > p {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "SourceSans3";
  font-style: normal;
  font-weight: 400;
  max-width: 500px !important;
}
.generic-scroller .arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 0;
  position: absolute;
  max-width: 100px;
  max-height: 40px;
}
.generic-scroller .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.generic2-explore {
  margin: 0;
  max-width: 100% !important;
  width: 100% !important;
}
.generic2-explore .glide__slides {
  padding-left: 250px;
  position: relative;
}
.generic2-explore .gen2-card {
  text-decoration: none;
}
.generic2-explore .gen2-card > .gen2-card-image {
  aspect-ratio: 320/380;
  width: 100%;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #C4C4C4;
  margin-bottom: 18px;
}
.generic2-explore .gen2-card > span {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "Wulkan Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
  display: block;
  width: 100%;
}
.generic2-explore .arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 50px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.generic2-explore .arrows > .more-info-link {
  max-width: 259px;
  width: 100%;
}
.generic2-explore .arrows > .inner-arrows {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.generic2-explore .arrows > .inner-arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 1024px) {
  .generic2-explore .glide__slides {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .generic2-explore .glide__slides {
    padding: 0;
  }
  .generic2-explore .generic2-explore-container {
    padding: 0 20px;
  }
}

.google-map {
  aspect-ratio: 46/15;
}

.home-article-display {
  max-width: 1440px;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  overflow: hidden;
  padding: 80px 0;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .home-article-display {
    grid-template-columns: 1fr 1fr;
    padding: 40px 0;
  }
}
.home-article-display > .article-item {
  aspect-ratio: 498/647;
  width: 100%;
}
.home-article-display > .article-item > .article-item-link {
  display: block;
  aspect-ratio: 498/647;
  background-image: var(--img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: var(--top-offset, 0);
  left: var(--left-offset, 0);
  width: var(--width, 100%);
  z-index: var(--z-index, 1);
  filter: blur(0px);
  opacity: 1;
}
.home-article-display > .article-item > .article-item-link.enable-transitions {
  transition: opacity 1s ease-in-out, filter 1s ease-in-out, aspect-ratio 1s ease-in-out, transform 1s ease-in-out;
}
.home-article-display > .article-item > .article-item-link:hover {
  transition: transform 0.6s ease-in-out, filter 0.3s ease-in-out, aspect-ratio 0.3s ease-in-out, width 0.3s ease-in-out, top 0.3s ease-in-out, left 0.3s ease-in-out;
  transform: scale(1.05);
  filter: brightness(0.9);
}
.home-article-display > .article-item > .article-item-link.not-initialized {
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  opacity: 0;
  filter: blur(10px);
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.unique-carousel {
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  .unique-carousel {
    padding-left: 0;
  }
}
.unique-carousel .preview-image {
  width: 100% !important;
  max-width: 86%;
  aspect-ratio: 2/1.2;
  background-image: var(--img);
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .unique-carousel .preview-image {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.unique-carousel .preview-image > .swatch {
  aspect-ratio: 288/339;
  width: 30%;
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  background-image: var(--img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .unique-carousel .preview-image > .swatch {
    position: absolute;
    top: unset;
    transform: none;
    bottom: 20px;
    right: 20px;
    width: 25%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
  }
}
.unique-carousel .bottom-container {
  padding: 50px 0;
  position: relative;
}
.unique-carousel .bottom-container > .details {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.unique-carousel .bottom-container > .details > div {
  padding: 0 30px;
}
.unique-carousel .bottom-container > .details > div:first-of-type {
  padding-left: 0;
}
.unique-carousel .bottom-container > .details > div > * {
  display: block;
  max-width: 199px;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.unique-carousel .bottom-container > .details > div > .detail-key {
  color: var(--Secondary-Driftwood, #C2AE97);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.unique-carousel .bottom-container > .details > div > .detail-value {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  text-transform: uppercase;
}
.unique-carousel .bottom-container > .details > div:not(:last-of-type) {
  border-right: 1px solid #C2AE97;
}
@media screen and (max-width: 768px) {
  .unique-carousel .bottom-container > .details {
    padding-left: 20px;
    max-width: 70%;
    flex-direction: column;
    align-items: flex-start;
  }
  .unique-carousel .bottom-container > .details > div {
    padding: 10px 0;
    border-right: none !important;
    border-bottom: 1px solid #C2AE97;
    width: 100%;
  }
  .unique-carousel .bottom-container > .details > div:last-of-type {
    border-bottom: none;
  }
}
.unique-carousel .bottom-container > .arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 0;
  position: absolute;
  max-width: 100px;
  max-height: 40px;
  position: absolute;
  top: 53%;
  right: 50px;
  transform: translateY(-50%);
}
.unique-carousel .bottom-container > .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 768px) {
  .unique-carousel .bottom-container > .arrows {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: none;
  }
}

.login-error {
  display: block;
  background: rgba(194, 174, 151, 0.2);
  padding: 10px;
  border-left: 3px solid rgba(241, 127, 127, 0.5);
  border-radius: 5px;
  font-family: "SourceSans3", Arial, Helvetica, sans-serif;
}

.logged-in-text {
  color: var(--Secondary-Craft-White, #F8F0E7);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 30px */
  letter-spacing: 4px;
  text-transform: uppercase;
}
.logged-in-text a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: none;
  transition: -webkit-text-decoration 0.5s;
  transition: text-decoration 0.5s;
  transition: text-decoration 0.5s, -webkit-text-decoration 0.5s;
}
.logged-in-text a:hover {
  text-decoration: underline;
}
.logged-in-text > .not-you {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.mill-special-container {
  max-width: 1440px !important;
  width: 100% !important;
  padding: 0 40px;
}
.mill-special-container .mill-special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media (max-width: 1024px) {
  .mill-special-container .mill-special-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .mill-special-container .mill-special-grid {
    grid-template-columns: 1fr;
  }
}
.mill-special-container .mill-special-grid > .mill-special {
  background: rgba(248, 240, 231, 0.58);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
}
.mill-special-container .mill-special-grid > .mill-special > .mill-special-image {
  width: 100%;
  aspect-ratio: 318/191;
  background-image: var(--image);
  background-size: cover;
}
.mill-special-container .mill-special-grid > .mill-special > .mill-special-title {
  color: var(--Secondary-Chestnut, #8D5C49);
  text-align: center;
}
.mill-special-container .mill-special-grid > .mill-special > .mill-special-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mill-special-container .mill-special-grid > .mill-special > .mill-special-content > .mill-special-detail {
  border-bottom: 0.802px solid #8D5C49;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 4px 0;
}
.mill-special-container .mill-special-grid > .mill-special > .mill-special-content > .mill-special-detail:last-child {
  border-bottom: none;
}
.mill-special-container .mill-special-grid > .mill-special > .mill-special-content > .mill-special-detail > span {
  font-family: "SourceSans3";
  flex: 1;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 22.54px */
}
.mill-special-container .mill-special-grid > .mill-special > .mill-special-content > .mill-special-detail > .mill-special-detail-label {
  color: var(--Secondary-Chestnut, #8D5C49);
  letter-spacing: 1.603px;
  text-transform: uppercase;
}
.mill-special-container .mill-special-grid > .mill-special > .mill-special-content > .mill-special-detail > .mill-special-detail-value {
  color: var(--Primary-Heritage-Black, #3C3C3C);
}
.mill-special-container .mill-special-grid > .mill-special > .mill-special-content > .mill-special-detail:nth-child(1) > .mill-special-detail-label, .mill-special-container .mill-special-grid > .mill-special > .mill-special-content > .mill-special-detail:nth-child(2) > .mill-special-detail-label, .mill-special-container .mill-special-grid > .mill-special > .mill-special-content > .mill-special-detail:nth-child(3) > .mill-special-detail-label {
  font-weight: 700;
}

.wedux-mini-gallery {
  width: 100%;
  max-width: 659px;
  display: flex;
  flex-direction: row;
}
.wedux-mini-gallery > .images-container {
  width: 100%;
  max-width: 254px;
  position: relative;
}
.wedux-mini-gallery > .images-container > .images {
  width: 100%;
  max-width: 254px;
  aspect-ratio: 254/312;
}
.wedux-mini-gallery > .images-container > .images > .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.wedux-mini-gallery > .images-container > .images > .image.hidden {
  opacity: 0;
  pointer-events: none;
}
.wedux-mini-gallery > .images-container > .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.wedux-mini-gallery > .images-container > .image.hidden {
  opacity: 0;
}
.wedux-mini-gallery > .images-container > .arrows {
  position: absolute;
  bottom: 0;
  right: -50px;
  display: flex;
  flex-direction: row;
  gap: 43px;
  z-index: 4;
}
.wedux-mini-gallery > .images-container > .arrows > .arrow {
  cursor: pointer;
}
.wedux-mini-gallery > .caption {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-left: 70px;
}
.wedux-mini-gallery > .caption > p {
  color: var(--Secondary-Driftwood, #C2AE97);
  font-family: "SourceSans3";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  max-width: 307px;
  margin-bottom: 0;
}

nav.main-nav-items {
  --nav-bg-color: var(--Secondary-Craft-White, #F8F0E7);
  --nav-text-color: var(--Primary-Heritage-Black, #3C3C3C);
  --nav-hover-underline: var(--Primary-Heritage-Black, #3C3C3C);
  --nav-logo-height: 25px;
  --nav-tb-padding: 20px;
  --cart-fill: var(--Primary-Heritage-Black, #3C3C3C);
  will-change: contents, opacity, transform;
  min-height: 73px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  z-index: 88;
  width: 100%;
  max-width: 100%;
  padding: var(--nav-tb-padding) 20px;
  background: var(--nav-bg-color);
}
nav.main-nav-items.commercial {
  --nav-bg-color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  --nav-text-color: var(--Secondary-Craft-White, #F8F0E7);
  --nav-hover-underline: #C2AE97;
  --nav-logo-height: 45px;
  --nav-tb-padding: 14px;
  --cart-fill: #F8F0E7;
}
nav.main-nav-items .hamburger-toggle-header {
  display: none;
  position: absolute;
  right: 20px;
  top: 18px;
}
nav.main-nav-items .hamburger-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
nav.main-nav-items .hamburger-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nav-text-color);
}
nav.main-nav-items .nav-menu-items {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  height: 100%;
}
nav.main-nav-items .nav-menu-items > .nav-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
}
nav.main-nav-items .nav-menu-items > .nav-menu.left, nav.main-nav-items .nav-menu-items > .nav-menu.right {
  opacity: 0;
}
nav.main-nav-items .nav-menu-items > .nav-menu.left {
  justify-content: flex-start;
}
nav.main-nav-items .nav-menu-items > .nav-menu.center {
  justify-content: center;
}
nav.main-nav-items .nav-menu-items > .nav-menu.center > .logo-link {
  display: inline-block;
  height: var(--nav-logo-height);
  margin: 0;
}
nav.main-nav-items .nav-menu-items > .nav-menu.center > .logo-link::before {
  content: unset;
}
nav.main-nav-items .nav-menu-items > .nav-menu.center > .logo-link > img {
  margin: 0;
  width: 100%;
  max-height: var(--nav-logo-height);
}
nav.main-nav-items .nav-menu-items > .nav-menu.right {
  justify-content: flex-end;
}
nav.main-nav-items .nav-menu-items > .nav-menu > a.cart-link {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  text-decoration: none;
  color: var(--nav-text-color);
  font-family: "SourceSans3";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.56px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
nav.main-nav-items .nav-menu-items > .nav-menu > a.cart-link .cart-icon {
  display: block;
  width: 100%;
  height: 100%;
}
nav.main-nav-items .nav-menu-items > .nav-menu > a.cart-link .cart-icon > svg {
  max-width: 100%;
  max-height: 100%;
}
nav.main-nav-items .nav-menu-items > .nav-menu > a.cart-link .cart-quantity {
  position: absolute;
  top: -5px;
  left: -5px;
  color: var(--cart-fill);
  font-size: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
nav.main-nav-items .nav-menu-items > .nav-menu > .nav-item > a {
  text-decoration: none;
  color: var(--nav-text-color);
  font-family: "SourceSans3";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.56px;
  text-transform: uppercase;
  position: relative;
  z-index: 89;
  letter-spacing: 1px;
}
nav.main-nav-items .nav-menu-items > .nav-menu > .nav-item > a:before {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--nav-hover-underline);
  transition: width 0.6s ease-in-out;
  position: absolute;
  bottom: -10px;
  left: 0;
}
nav.main-nav-items .nav-menu-items > .nav-menu > .nav-item > a:hover:before {
  width: 100%;
}
nav.main-nav-items.mobile .hamburger-toggle-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  height: 32px;
}
nav.main-nav-items.mobile .hamburger-toggle-header > a.cart-link {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  text-decoration: none;
  color: var(--nav-text-color);
  font-family: "SourceSans3";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.56px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
nav.main-nav-items.mobile .hamburger-toggle-header > a.cart-link .cart-icon {
  display: block;
  width: 100%;
  height: 100%;
}
nav.main-nav-items.mobile .hamburger-toggle-header > a.cart-link .cart-icon > svg {
  max-width: 100%;
  max-height: 100%;
}
nav.main-nav-items.mobile .hamburger-toggle-header > a.cart-link .cart-quantity {
  position: absolute;
  top: -5px;
  left: -5px;
  color: var(--cart-fill);
  font-size: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
nav.main-nav-items.mobile .hamburger-toggle {
  display: flex;
}
nav.main-nav-items.mobile .nav-menu-items > .left,
nav.main-nav-items.mobile .nav-menu-items > .right {
  display: none;
}
nav.main-nav-items.mobile .nav-menu-items > .center {
  justify-content: flex-start;
}
@media (max-width: 768px) {
  nav.main-nav-items {
    --nav-tb-padding: 23px;
    will-change: contents, opacity;
  }
}
nav.main-nav-items.loaded .nav-menu-items > .left,
nav.main-nav-items.loaded .nav-menu-items > .right {
  opacity: 1;
  transform: scale(1);
}

div.nav-sub-menu {
  position: fixed;
  left: 0;
  right: 0;
  opacity: 1;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  background-color: var(--nav-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 113px 0;
  z-index: 87;
}
div.nav-sub-menu.hidden {
  transform: translateY(-200%);
  opacity: 0;
  pointer-events: none;
}
div.nav-sub-menu > .nav-header {
  display: block;
  color: var(--nav-text-color);
  text-align: center;
  font-family: "Wulkan Display";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 75px */
  margin-bottom: 20px;
}
div.nav-sub-menu > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
div.nav-sub-menu > div > .divider {
  width: 24px;
  height: 1px;
  background-color: var(--nav-text-color);
}
div.nav-sub-menu > div > a {
  color: var(--nav-text-color);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.72px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
}
div.nav-sub-menu > div > a:before {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--nav-text-color);
  transition: width 0.6s ease-in-out;
  position: absolute;
  bottom: -10px;
  left: 0;
}
div.nav-sub-menu > div > a:hover:before {
  width: 100%;
}

.mobile-menu-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--nav-bg-color);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 90;
  transition: opacity 0.4s ease-in-out;
  opacity: 0 !important;
  pointer-events: none;
  padding: 20px;
}
.mobile-menu-overlay.open {
  opacity: 1 !important;
  pointer-events: all;
}
.mobile-menu-overlay .mobile-nav-item a {
  color: var(--nav-text-color);
  font-family: "SourceSans3";
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 10px 0;
  display: block;
}

.mobile div.nav-sub-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--nav-bg-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 200;
  padding: 20px;
  transition: opacity 0.4s ease-in-out;
}
.mobile div.nav-sub-menu > .nav-header {
  color: var(--nav-text-color);
  font-family: "Wulkan Display";
  font-size: 36px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 75px */
  margin-bottom: 20px;
}
.mobile div.nav-sub-menu > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.mobile div.nav-sub-menu > div > .divider {
  display: none;
}
.mobile div.nav-sub-menu > div > a {
  color: var(--nav-text-color);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.72px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
}
.mobile div.nav-sub-menu > div > a:before {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--nav-text-color);
  transition: width 0.6s ease-in-out;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.mobile div.nav-sub-menu > div > a:hover:before {
  width: 100%;
}

.overflow-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.overflow-toggle > .dot {
  width: 4px;
  height: 4px;
  background-color: var(--nav-text-color);
  border-radius: 50%;
}

.overflow-menu {
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--nav-bg-color);
  border-top: 1px solid rgba(60, 60, 60, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transform: translateY(-20px);
}
.overflow-menu.open {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
.overflow-menu .nav-item a {
  text-decoration: none;
  color: var(--nav-text-color);
  font-family: "SourceSans3";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  position: relative;
  z-index: 89;
  letter-spacing: 1px;
  display: block;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
  padding: 16px 18px;
}
.overflow-menu .nav-item a:hover {
  background-color: rgba(60, 60, 60, 0.1);
}

.our-floors-colours {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 23px;
  position: relative;
  z-index: 2;
  padding: 1px 1px 40px 1px;
  overflow-y: hidden;
}
@media screen and (max-width: 1200px) {
  .our-floors-colours {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .our-floors-colours {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .our-floors-colours {
    grid-template-columns: repeat(2, 1fr);
  }
}
.our-floors-colours.init {
  transition: max-height 0.6s ease-in-out;
}
.our-floors-colours > .floor-colour-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 27px;
  background: var(--Secondary-Craft-White, #F8F0E7);
  outline: 0px solid transparent;
  transition: outline 0.6s ease-in-out;
  text-decoration: none;
  padding: 30px 20px;
}
.our-floors-colours > .floor-colour-item > .floor-swatch {
  max-width: 162px;
  width: 100%;
  aspect-ratio: 162/141;
}
.our-floors-colours > .floor-colour-item > .floor-swatch > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-floors-colours > .floor-colour-item > span {
  display: block;
  color: var(--Secondary-Chestnut, #8D5C49);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 25.76px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.our-floors-colours > .floor-colour-item:hover {
  outline: 1px solid #C2AE97;
}
.our-floors-colours > .expand-button {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 120px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity 0.3s ease-in-out;
  background: linear-gradient(to top, #fcf9f5, transparent);
}
.our-floors-colours.expanded {
  max-height: var(--actualHeight);
}
.our-floors-colours.expanded > .expand-button {
  opacity: 0;
  pointer-events: none;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.project-gallery-collaboration {
  width: 100% !important;
  max-width: 100% !important;
}
.project-gallery-collaboration .collab-card {
  width: 100%;
  text-decoration: none;
  position: relative;
  display: block;
}
.project-gallery-collaboration .collab-card > .collab-card-image {
  height: 100%;
  width: 100%;
  background-image: var(--img);
  background-size: cover;
  position: relative;
  background-color: blue;
  background-repeat: no-repeat;
  background-position: var(--focal-point, center);
}
.project-gallery-collaboration .collab-card > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.project-gallery-collaboration .collab-card > .overlay > h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--Secondary-Craft-White, #F8F0E7);
  text-align: center;
  font-family: "Wulkan Display";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 56px */
}
.project-gallery-collaboration .collab-card > .overlay > span {
  color: var(--Secondary-Driftwood, #C2AE97);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 4px;
  text-transform: uppercase;
  border-top: 1px solid var(--Secondary-Driftwood, #C2AE97);
  border-bottom: 1px solid var(--Secondary-Driftwood, #C2AE97);
  padding-top: 12px;
  padding-bottom: 12px;
  max-width: 268px;
  width: 100%;
}
.project-gallery-collaboration .collab-card.active > .collab-card-image, .project-gallery-collaboration .collab-card.glide__slide--active > .collab-card-image {
  max-width: 100%;
  aspect-ratio: 600/300;
  background-position: center;
  background-size: cover;
}
.project-gallery-collaboration .collab-card.active:hover > .overlay, .project-gallery-collaboration .collab-card.glide__slide--active:hover > .overlay {
  opacity: 1;
}
.project-gallery-collaboration .metadata {
  position: relative;
  padding: 57px 120px;
}
@media (max-width: 1024px) {
  .project-gallery-collaboration .metadata {
    padding: 30px 20px;
  }
}
.project-gallery-collaboration .metadata .metadata-content {
  display: flex;
  flex-direction: column;
}
.project-gallery-collaboration .metadata .metadata-content > .metadata-title {
  color: var(--Secondary-Driftwood, #C2AE97);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.project-gallery-collaboration .metadata .metadata-content > .metadata-link {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.project-gallery-collaboration .metadata .arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 0;
  position: absolute;
  top: 0px;
  right: 85px;
}
@media (max-width: 1024px) {
  .project-gallery-collaboration .metadata .arrows {
    right: 20px;
  }
}
.project-gallery-collaboration .metadata .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.project-gallery-collaboration.dark .metadata .metadata-content > .metadata-title {
  color: #C2AE97;
}
.project-gallery-collaboration.dark .metadata .metadata-content > .metadata-link {
  color: #3c3c3c;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wedux-projects-gallery-grid {
  --border-color: var(--Secondary-Craft-White, #F8F0E7);
  --text-color: var(--Primary-Heritage-Black, #3C3C3C);
  --pagination-hover-bg: var(--Secondary-Craft-White, #E9E9E9);
  --filter-border-color: rgba(60, 60, 60, 1);
  --filter-border: 1px solid rgba(60, 60, 60, 0.50);
  --filter-dropdown-bg: var(--Primary-Craft-White, #F8F0E7);
  --filter-dropdown-item-hover: var(--Secondary-Craft-White, #E9E9E9);
  --filter-label-color: var(--Primary-Heritage-Black, #3C3C3C);
  --filter-label-border: var(--Secondary-Driftwood, #C2AE97);
  --filter-bg-hover: var(--Secondary-Craft-White, #e9e9e9);
  max-width: 1440px !important;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 300px;
  position: relative;
}
.wedux-projects-gallery-grid.commercial {
  --border-color: var(--Primary-Craft-White, #F8F0E7);
  --text-color: var(--Primary-Heritage-Black, #F8F0E7);
  --pagination-hover-bg: var(--Primary-Craft-White, #E9E9E9);
  --filter-border-color: rgba(248, 240, 231, 1);
  --filter-border: 1px solid rgba(248, 240, 231, 0.50);
  --filter-dropdown-bg: #263544;
  --filter-dropdown-item-hover: #3C4A5A;
  --filter-label-color: var(--Primary-Craft-White, #F8F0E7);
  --filter-label-border: var(--Primary-Craft-White, #F8F0E7);
  --filter-bg-hover: #3C4A5A;
}
.wedux-projects-gallery-grid > div {
  width: 100%;
}
.wedux-projects-gallery-grid.loading > * {
  opacity: 0.4;
}
.wedux-projects-gallery-grid.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid transparent;
  border-top: 4px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__row:nth-child(odd) > .wedux-projects-gallery-grid__card-link:nth-child(odd) {
  aspect-ratio: 800/600;
  width: 65%;
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__row:nth-child(odd) > .wedux-projects-gallery-grid__card-link:nth-child(even) {
  aspect-ratio: 450/600;
  width: 35%;
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__row:nth-child(even) > .wedux-projects-gallery-grid__card-link:nth-child(odd) {
  aspect-ratio: 450/600;
  width: 35%;
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__row:nth-child(even) > .wedux-projects-gallery-grid__card-link:nth-child(even) {
  aspect-ratio: 800/600;
  width: 65%;
}
@media screen and (max-width: 768px) {
  .wedux-projects-gallery-grid .wedux-projects-gallery-grid__row {
    flex-direction: column;
  }
  .wedux-projects-gallery-grid .wedux-projects-gallery-grid__row > .wedux-projects-gallery-grid__card-link {
    width: 100% !important;
    aspect-ratio: 800/600 !important;
  }
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__row > .wedux-projects-gallery-grid__card-link {
  display: block;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #333;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__row > .wedux-projects-gallery-grid__card-link > .wedux-projects-gallery-grid__card-overlay {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__row > .wedux-projects-gallery-grid__card-link > .wedux-projects-gallery-grid__card-overlay > .title {
  color: var(--Secondary-Craft-White, #F8F0E7);
  text-align: center;
  font-family: "Wulkan Display";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 56px */
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__row > .wedux-projects-gallery-grid__card-link > .wedux-projects-gallery-grid__card-overlay > .view-project {
  color: var(--Secondary-Driftwood, #C2AE97);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 4px;
  text-transform: uppercase;
  border-top: 1px solid var(--Secondary-Driftwood, #C2AE97);
  border-bottom: 1px solid var(--Secondary-Driftwood, #C2AE97);
  padding-top: 12px;
  padding-bottom: 12px;
  max-width: 268px;
  width: 100%;
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__row > .wedux-projects-gallery-grid__card-link:hover > .wedux-projects-gallery-grid__card-overlay {
  opacity: 1;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-pagination > a {
  color: var(--filter-label-color);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-pagination > a:not(.wedux-projects-gallery-pagination__ellipsis) {
  cursor: pointer;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-pagination > a:not(.wedux-projects-gallery-pagination__ellipsis):hover {
  background-color: var(--filter-bg-hover);
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-pagination > a.active {
  border: 1px solid var(--filter-label-border);
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: var(--filter-border);
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-header > .left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-header > .left > div {
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  color: var(--filter-border-color);
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-header > .left > div > .wedux-projects-gallery-grid__filter-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--filter-dropdown-bg);
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  min-width: 200px;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-header > .left > div > .wedux-projects-gallery-grid__filter-dropdown > .wedux-projects-gallery-grid__filter-option {
  padding: 10px;
  cursor: pointer;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-header > .left > div > .wedux-projects-gallery-grid__filter-dropdown > .wedux-projects-gallery-grid__filter-option:hover {
  background-color: var(--filter-dropdown-item-hover);
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-header > .right > input {
  color: var(--filter-border-color);
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
  text-transform: uppercase;
  background: transparent !important;
  outline: none !important;
  border: none;
  border-left: 1px solid var(--filter-border-color);
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-header > .right > input::-moz-placeholder {
  color: var(--filter-border-color);
  opacity: 1; /* Firefox */
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-header > .right > input::placeholder {
  color: var(--filter-border-color);
  opacity: 1; /* Firefox */
}
@media screen and (max-width: 768px) {
  .wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-header > .right > input {
    display: none;
  }
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-body {
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-body > .wedux-projects-gallery-grid__filter-label {
  color: var(--filter-label-color);
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
  border: 1px solid var(--filter-label-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  cursor: pointer;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-body > .wedux-projects-gallery-grid__filter-label:hover {
  background-color: var(--filter-bg-hover);
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-body > .wedux-projects-gallery-grid__filter-label > svg {
  width: 24px;
  height: 24px;
}
.wedux-projects-gallery-grid > .wedux-projects-gallery-filters > .filters-body > .wedux-projects-gallery-grid__filter-label > svg > path {
  stroke: var(--filter-label-color);
}
.wedux-projects-gallery-grid .wedux-projects-gallery-grid__error {
  color: var(--text-color);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  text-align: center;
  padding: 40px 20px;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.wedux-projects-gallery-topper {
  display: flex;
  width: 100%;
  max-width: 100% !important;
  aspect-ratio: 1440/540;
  background-color: #333;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .wedux-projects-gallery-topper {
    aspect-ratio: 1.5/1;
  }
}
.wedux-projects-gallery-topper > .wedux-arrows {
  position: absolute;
  top: 88%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 43px;
}
.wedux-projects-gallery-topper > .wedux-arrows > .left,
.wedux-projects-gallery-topper > .wedux-arrows > .right {
  cursor: pointer;
}
.wedux-projects-gallery-topper > .wedux-arrows > .left > svg,
.wedux-projects-gallery-topper > .wedux-arrows > .right > svg {
  width: 33px;
}
@media screen and (max-width: 992px) {
  .wedux-projects-gallery-topper > .wedux-arrows {
    bottom: 0;
    right: 0;
    top: unset;
    left: unset;
    display: flex;
    gap: 10px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 8px;
  }
  .wedux-projects-gallery-topper > .wedux-arrows > * {
    filter: invert(1);
  }
}
.wedux-projects-gallery-topper > .wedux-arrows.no-arrows {
  display: none;
}
.wedux-projects-gallery-topper a {
  display: block;
  background-image: var(--img);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.wedux-projects-gallery-topper a.active {
  opacity: 1;
  pointer-events: all;
}
.wedux-projects-gallery-topper a.no-arrows {
  pointer-events: none;
}
.wedux-projects-gallery-topper a > .wedux-projects-bar {
  background: rgba(60, 60, 60, 0.6);
  padding: 12px 51px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
}
.wedux-projects-gallery-topper a > .wedux-projects-bar .text {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 21px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.wedux-projects-gallery-topper a > .wedux-projects-bar .text > .underline {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .wedux-projects-gallery-topper a > .wedux-projects-bar {
    padding: 12px 20px;
  }
}
@media screen and (max-width: 768px) {
  .wedux-projects-gallery-topper a > .wedux-projects-bar {
    align-items: flex-end;
    justify-content: flex-end;
  }
  .wedux-projects-gallery-topper a > .wedux-projects-bar > .text:first-of-type {
    display: none;
  }
}

.yellow-section {
  background: rgba(248, 240, 231, 0.8);
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

.project-section {
  max-width: 1440px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.project-page-wrap,
.project-page-wrap * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  --wp--style--block-gap: 0;
}

.projects-topper-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 50px 20px 100px 20px;
}
.projects-topper-details > div.projects-page-header {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  text-align: center;
  font-family: "Wulkan Display";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 89.6px */
  margin: 0;
  max-width: 1250px;
}
.projects-topper-details > div.projects-page-header > span:last-of-type {
  font-style: italic;
  font-weight: 500;
}
.projects-topper-details > p {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 33.6px */
  max-width: 600px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .projects-topper-details {
    padding: 50px 20px 60px 20px;
  }
  .projects-topper-details > div.projects-page-header {
    font-size: 48px;
    line-height: 140%; /* 67.2px */
  }
  .projects-topper-details > p {
    font-size: 20px;
    line-height: 140%; /* 28px */
  }
}
@media screen and (max-width: 768px) {
  .projects-topper-details {
    padding: 50px 10px 60px 10px;
  }
  .projects-topper-details > div.projects-page-header {
    font-size: 40px;
    line-height: 140%; /* 56px */
  }
}

.projects-metadata {
  max-width: 1190px !important;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 153px;
  padding: 0 20px 80px 20px;
}
.projects-metadata > .project-description {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.projects-metadata > .project-metadata {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.projects-metadata > .project-metadata > .metadata-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 0 0 12px 0;
  align-self: stretch;
}
.projects-metadata > .project-metadata > .metadata-item:not(:last-of-type) {
  border-bottom: 1px solid #8D5C49;
}
.projects-metadata > .project-metadata > .metadata-item:last-of-type {
  padding-bottom: 40px;
}
.projects-metadata > .project-metadata > .metadata-item > .label {
  color: var(--Secondary-Chestnut, #8D5C49);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}
.projects-metadata > .project-metadata > .metadata-item > .value {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "SourceSans3";
}
@media screen and (max-width: 1024px) {
  .projects-metadata {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
  .projects-metadata > .project-description {
    max-width: 100%;
  }
  .projects-metadata > .project-metadata {
    max-width: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .projects-metadata {
    padding: 0 10px 50px 10px;
  }
  .projects-metadata > .project-description {
    max-width: 100%;
  }
  .projects-metadata > .project-metadata {
    max-width: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}

.metadata-modal-backdrop {
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.metadata-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.metadata-modal-backdrop > .metadata-modal-content {
  max-width: 600px;
  width: 100%;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
  max-height: 90vh;
  padding: 50px;
  max-width: 800px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .metadata-modal-backdrop > .metadata-modal-content {
    padding: 20px;
  }
}
.metadata-modal-backdrop > .metadata-modal-content > .close-btn {
  position: absolute;
  top: 14px;
  right: 20px;
  cursor: pointer;
  font-size: 32px;
  color: #8D5C49;
  text-decoration: none;
}
.metadata-modal-backdrop > .metadata-modal-content > .close-btn:hover {
  color: #3C3C3C;
}
@media screen and (max-width: 768px) {
  .metadata-modal-backdrop > .metadata-modal-content {
    max-height: 100vh;
  }
}
.metadata-modal-backdrop > .metadata-modal-content > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 0 0 12px 0;
  align-self: stretch;
  border-bottom: 1px solid #8D5C49;
}
.metadata-modal-backdrop > .metadata-modal-content > div:nth-last-child(2), .metadata-modal-backdrop > .metadata-modal-content > div:nth-last-child(1) {
  border-bottom: none;
}
.metadata-modal-backdrop > .metadata-modal-content > div > .label {
  color: var(--Secondary-Chestnut, #8D5C49);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}
.metadata-modal-backdrop > .metadata-modal-content > div > .value {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}

.projects-quote {
  background: var(--Primary-Heritage-Black, #3C3C3C);
  color: var(--Secondary-Driftwood, #C2AE97);
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  max-width: 100%;
  width: 100%;
  padding: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 112px 20px 92px 20px;
  position: relative;
}
.projects-quote > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  aspect-ratio: 1/1;
  opacity: 0.4;
}
@media screen and (max-width: 1024px) {
  .projects-quote > svg {
    display: none;
  }
}
.projects-quote > .inner-content {
  max-width: 888px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 53px;
  position: relative;
  z-index: 2;
}
.projects-quote > .inner-content > p {
  color: inherit;
  text-align: center;
  font-family: "Wulkan Display";
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 58.8px */
}
.projects-quote > .inner-content > footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
.projects-quote > .inner-content > footer > .author {
  color: inherit;
  text-align: center;
  font-family: "SourceSans3";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 38.64px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.projects-quote > .inner-content > footer > .position {
  color: inherit;
  text-align: center;
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .projects-quote {
    padding: 80px 20px 60px 20px;
  }
  .projects-quote > .inner-content {
    gap: 30px;
  }
  .projects-quote > .inner-content > p {
    font-size: 32px;
    line-height: 140%; /* 44.8px */
  }
  .projects-quote > .inner-content > footer {
    gap: 8px;
  }
  .projects-quote > .inner-content > footer > .author {
    font-size: 20px;
    line-height: 161%; /* 32.2px */
  }
  .projects-quote > .inner-content > footer > .position {
    font-size: 16px;
    line-height: 161%; /* 25.76px */
  }
}
@media screen and (max-width: 768px) {
  .projects-quote {
    padding: 60px 20px 40px 20px;
  }
  .projects-quote > .inner-content {
    gap: 20px;
  }
  .projects-quote > .inner-content > p {
    font-size: 24px;
    line-height: 140%; /* 33.6px */
  }
  .projects-quote > .inner-content > footer {
    gap: 6px;
  }
  .projects-quote > .inner-content > footer > .author {
    line-height: 161%; /* 29.04px */
  }
  .projects-quote > .inner-content > footer > .position {
    font-size: 18px;
    line-height: 161%; /* 22.24px */
  }
}
.projects-quote.commercial {
  background: #2C3E50;
  color: var(--Secondary-Craft-White, #F8F0E7);
}
.projects-quote.commercial svg {
  opacity: 0.1;
}
.projects-quote.commercial svg path {
  stroke: #F8F0E7;
}

.projects-gallery {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 39px;
  padding: 135px 20px 135px 20px;
}
.projects-gallery > .projects-gallery-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 43px;
}
.projects-gallery > .projects-gallery-arrows > .arrow-left,
.projects-gallery > .projects-gallery-arrows > .arrow-right {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.projects-gallery > .projects-gallery-arrows > .arrow-left:hover,
.projects-gallery > .projects-gallery-arrows > .arrow-right:hover {
  transform: scale(0.9);
}
.projects-gallery > .projects-gallery-images {
  width: 90%;
  position: relative;
}
.projects-gallery > .projects-gallery-images .vertical-text {
  pointer-events: none;
}
.projects-gallery > .projects-gallery-images > .projects-gallery-image {
  width: 100%;
  aspect-ratio: 1114/604;
  position: relative;
}
.projects-gallery > .projects-gallery-images > .projects-gallery-image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.projects-gallery > .projects-gallery-images > .projects-gallery-image > img.active {
  opacity: 1;
  pointer-events: auto;
}
.projects-gallery > .projects-gallery-images > .projects-gallery-count {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  color: var(--Primary-Heritage-Black, #3C3C3C);
  text-align: center;
  font-family: "Wulkan Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  pointer-events: none;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .projects-gallery {
    padding: 60px 20px;
    flex-direction: column;
  }
  .projects-gallery > .projects-gallery-arrows {
    order: 2;
    width: 100%;
    justify-content: space-between;
  }
  .projects-gallery > .projects-gallery-images {
    order: 1;
    width: 100%;
  }
  .projects-gallery > .projects-gallery-images > .projects-gallery-count {
    bottom: -70px;
  }
}

.project-video-container {
  padding: 0 20px;
  aspect-ratio: 1345.49/754.71;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  position: relative;
}
.project-video-container > .carlisle-button {
  position: absolute;
  bottom: 33px;
  right: 33px;
  min-width: 200px;
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.project-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.project-video-container.video-playing iframe {
  opacity: 1;
  pointer-events: auto;
}
.project-video-container.video-playing > .carlisle-button {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

.project-video {
  padding: 0px 20px 135px 20px;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.projects-page-explore {
  background: rgba(194, 174, 151, 0.21);
}
.projects-page-explore > .projects-page-explore-header {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.projects-page-explore > .projects-page-explore-header > h2 {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "Wulkan Display";
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 96px */
}
.projects-page-explore > .projects-page-explore-header > h2 > em {
  color: var(--Secondary-Chestnut, #8D5C49);
  font-style: italic;
}
.projects-page-explore > .projects-page-explore-header > p {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 32px */
  max-width: 768px;
  width: 100%;
}
.projects-page-explore .glide__slides {
  padding-left: 250px;
  position: relative;
}
.projects-page-explore .project-card {
  text-decoration: none;
}
.projects-page-explore .project-card > .project-card-image {
  aspect-ratio: 1/1;
  width: 100%;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: blue;
  margin-bottom: 18px;
}
.projects-page-explore .project-card > span {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "Wulkan Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
}
.projects-page-explore .arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 0;
}
.projects-page-explore .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 1024px) {
  .projects-page-explore .projects-page-explore-header {
    padding: 60px 20px;
  }
  .projects-page-explore .projects-page-explore-header > h2 {
    font-size: 72px;
    line-height: 120%; /* 86px */
  }
  .projects-page-explore .projects-page-explore-header > p {
    font-size: 18px;
    line-height: 160%; /* 29px */
  }
  .projects-page-explore .glide__slides {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .projects-page-explore .projects-page-explore-header {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .projects-page-explore .projects-page-explore-header > h2 {
    font-size: 48px;
    line-height: 120%; /* 58px */
  }
  .projects-page-explore .glide__slides {
    padding: 0;
  }
  .projects-page-explore .projects-page-explore-container {
    padding: 0 20px;
  }
}
.projects-page-explore.commercial {
  background: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
}
.projects-page-explore.commercial > .projects-page-explore-header > h2 {
  color: var(--Secondary-Craft-White, #F8F0E7);
}
.projects-page-explore.commercial > .projects-page-explore-header > h2 > em {
  color: #C2AE97;
}
.projects-page-explore.commercial > .projects-page-explore-header > p {
  color: var(--Secondary-Craft-White, #F8F0E7);
}
.projects-page-explore.commercial .project-card > .project-card-image {
  background-color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
}
.projects-page-explore.commercial .project-card > span {
  color: var(--Secondary-Craft-White, #F8F0E7);
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.project-slider {
  width: 100% !important;
  max-width: 100% !important;
}
.project-slider .project-card {
  width: 100%;
  text-decoration: none;
  position: relative;
  display: block;
}
.project-slider .project-card > .project-card-image {
  max-width: 30%;
  height: 100%;
  width: 100%;
  background-image: var(--img);
  background-size: cover;
  position: relative;
  background-color: blue;
  background-repeat: no-repeat;
  background-position: var(--focal-point, center);
}
.project-slider .project-card > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.project-slider .project-card > .overlay > h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--Secondary-Craft-White, #F8F0E7);
  text-align: center;
  font-family: "Wulkan Display";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 56px */
}
.project-slider .project-card > .overlay > span {
  color: var(--Secondary-Driftwood, #C2AE97);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 4px;
  text-transform: uppercase;
  border-top: 1px solid var(--Secondary-Driftwood, #C2AE97);
  border-bottom: 1px solid var(--Secondary-Driftwood, #C2AE97);
  padding-top: 12px;
  padding-bottom: 12px;
  max-width: 268px;
  width: 100%;
}
.project-slider .project-card.active > .project-card-image, .project-slider .project-card.glide__slide--active > .project-card-image {
  max-width: 100%;
  aspect-ratio: 600/300;
  background-position: center;
  background-size: cover;
}
.project-slider .project-card.active:hover > .overlay, .project-slider .project-card.glide__slide--active:hover > .overlay {
  opacity: 1;
}
.project-slider .metadata {
  position: relative;
  padding: 57px 120px;
}
@media (max-width: 1024px) {
  .project-slider .metadata {
    padding: 30px 20px;
  }
}
.project-slider .metadata .metadata-content {
  display: flex;
  flex-direction: column;
}
.project-slider .metadata .metadata-content > .metadata-title {
  color: var(--Secondary-Driftwood, #C2AE97);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.project-slider .metadata .metadata-content > .metadata-link {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.project-slider .metadata .arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 0;
  position: absolute;
  top: 0px;
  right: 85px;
}
@media (max-width: 1024px) {
  .project-slider .metadata .arrows {
    right: 20px;
  }
}
.project-slider .metadata .arrows > button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.project-slider.dark .metadata .metadata-content > .metadata-title {
  color: #C2AE97;
}
.project-slider.dark .metadata .metadata-content > .metadata-link {
  color: #3c3c3c;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.wedux-resource-listing {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  gap: 100px;
}
@media screen and (max-width: 1032px) {
  .wedux-resource-listing {
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .wedux-resource-listing {
    flex-direction: column;
  }
}
.wedux-resource-listing .wedux-resource {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  padding: 28px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid var(--Secondary-Chestnut, #8D5C49);
  background-color: transparent;
  transition: background-color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}
.wedux-resource-listing .wedux-resource > .section-title {
  color: var(--Secondary-Chestnut, #8D5C49);
  font-family: "SourceSans3";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 20.93px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.wedux-resource-listing .wedux-resource > .title-holder {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.wedux-resource-listing .wedux-resource > .title-holder > span {
  width: 90%;
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 161%; /* 32.2px */
}
.wedux-resource-listing .wedux-resource > .title-holder > svg {
  width: 19px;
  height: 19px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wedux-resource-listing .wedux-resource > p.description {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 25.76px */
}
.wedux-resource-listing .wedux-resource:hover {
  background-color: rgba(194, 174, 151, 0.15);
  border-color: var(--Secondary-Chestnut, #8D5C49);
}
.wedux-resource-listing .wedux-resource:hover > .title-holder > svg {
  opacity: 1;
  transform: translateX(0);
}
.wedux-resource-listing > .resources-sidebar {
  width: 100%;
  max-width: 302px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .wedux-resource-listing > .resources-sidebar {
    flex-direction: row;
    max-width: 100%;
    flex-wrap: wrap;
  }
}
.wedux-resource-listing > .resources-sidebar > .section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 5px 0px;
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
}
.wedux-resource-listing > .resources-sidebar > .section.locked {
  pointer-events: none;
  opacity: 0.5;
}
.wedux-resource-listing > .resources-sidebar > .section > div {
  flex: 1;
}
.wedux-resource-listing > .resources-sidebar > .section > div > span {
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 25.76px */
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}
.wedux-resource-listing > .resources-sidebar > .section > div > span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  transition: width 0.6s ease-in-out;
}
.wedux-resource-listing > .resources-sidebar > .section > svg {
  width: 19px;
  height: 19px;
}
.wedux-resource-listing > .resources-sidebar > .section.selected {
  color: var(--Secondary-Chestnut, #8D5C49);
}
.wedux-resource-listing > .resources-sidebar > .section.selected > div > span::after {
  background-color: var(--Secondary-Chestnut, #8D5C49);
}
.wedux-resource-listing > .resources-sidebar > .section:hover > div > span::after, .wedux-resource-listing > .resources-sidebar > .section.selected > div > span::after {
  width: 100%;
}
.wedux-resource-listing > .resources-content {
  width: 100%;
  position: relative;
}
.wedux-resource-listing > .resources-content > .resources-resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1032px) {
  .wedux-resource-listing > .resources-content > .resources-resources {
    grid-template-columns: 1fr;
  }
}
.wedux-resource-listing > .resources-content > .resources-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
}
.wedux-resource-listing > .resources-content > .resources-pagination > a {
  display: block;
  text-decoration: none;
  padding: 5px 15px;
  border: 1px solid var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  line-height: 1.5;
}
.wedux-resource-listing > .resources-content.loading > * {
  opacity: 0.5;
  pointer-events: none;
}
.wedux-resource-listing > .resources-content.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 240, 231, 0.8);
  z-index: 1;
}
.wedux-resource-listing > .resources-content.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
}

.showroom-page-design {
  margin: 0 !important;
}

.showroom-header {
  background: var(--Primary-Heritage-Black, #3C3C3C);
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showroom-header > .inner-content {
  max-width: 1440px;
  width: 100%;
}
.showroom-header > .inner-content > h1 {
  color: #F8F0E7;
  line-height: 100%;
  margin: 0;
}
.showroom-header > .inner-content > h1 em {
  color: #C2AE97;
  display: block !important;
}
.showroom-header > .inner-content-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
}
.showroom-header > .inner-content-flex > .left {
  flex: 1;
}
.showroom-header > .inner-content-flex > .left > h1 {
  color: #F8F0E7;
  line-height: 100%;
  margin: 0;
}
.showroom-header > .inner-content-flex > .left > h1.representatives {
  font-size: min(6vw, 72px) !important;
}
.showroom-header > .inner-content-flex > .left > h1 em {
  color: #C2AE97;
  display: block !important;
}
.showroom-header > .inner-content-flex > .left > .spacer {
  padding-bottom: 67px;
}
.showroom-header > .inner-content-flex > .left > .inner-content-flex-content {
  max-width: 357px;
}
.showroom-header > .inner-content-flex > .left > .inner-content-flex-content > .address > p {
  margin: 0;
  color: #F8F0E7;
}
.showroom-header > .inner-content-flex > .left > .inner-content-flex-content > .bar {
  border-bottom: 1px solid var(--Secondary-Driftwood, #C2AE97);
  margin-top: 35px;
  margin-bottom: 40px;
}
.showroom-header > .inner-content-flex > .left > .inner-content-flex-content > .contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.showroom-header > .inner-content-flex > .left > .inner-content-flex-content > .contact-methods > .method {
  display: flex;
  flex-direction: column;
}
.showroom-header > .inner-content-flex > .left > .inner-content-flex-content > .contact-methods > .method > .label {
  color: var(--Secondary-Driftwood, #C2AE97);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.showroom-header > .inner-content-flex > .left > .inner-content-flex-content > .contact-methods > .method > .value {
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 1px;
}
.showroom-header > .inner-content-flex > .left > .inner-content-flex-content > .hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.showroom-header > .inner-content-flex > .left > .inner-content-flex-content > .hours > .label {
  color: var(--Secondary-Driftwood, #C2AE97);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.showroom-header > .inner-content-flex > .left > .inner-content-flex-content > .hours > .values {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.showroom-header > .inner-content-flex > .right {
  flex: 1;
}
.showroom-header > .inner-content-flex > .right > .aspect-ratio-image {
  width: 100%;
  aspect-ratio: 1/1;
  background-image: var(--img);
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 978px) {
  .showroom-header > .inner-content-flex {
    flex-direction: column;
    gap: 18px;
  }
  .showroom-header > .inner-content-flex > .left > .inner-content-flex-content {
    max-width: 100%;
  }
  .showroom-header > .inner-content-flex > .right > .aspect-ratio-image {
    aspect-ratio: 16/9;
  }
}

.showroom-experience {
  background: #F9F3EC;
  padding: 154px 0 304px 0;
  margin: 0;
}
@media screen and (min-width: 1921px) {
  .showroom-experience {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 1050px) {
  .showroom-experience {
    padding: 0 0 72px 0;
  }
}
.showroom-experience > .inner-content {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.showroom-experience > .inner-content > .left {
  flex: 0 0 50%;
  padding-right: 20px;
}
.showroom-experience > .inner-content > .left > .image {
  aspect-ratio: 188/145;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  max-width: 621px;
}
@media screen and (max-width: 1290px) {
  .showroom-experience > .inner-content > .left > .image {
    aspect-ratio: 1/2;
  }
}
.showroom-experience > .inner-content > .right {
  padding-right: 24px;
}
.showroom-experience > .inner-content > .right > .content {
  max-width: 636px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.showroom-experience > .inner-content > .right > .content h3 {
  margin-top: 0;
}
.showroom-experience > .inner-content > .right > .content a {
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 1050px) {
  .showroom-experience > .inner-content {
    flex-direction: column;
    gap: 18px;
  }
  .showroom-experience > .inner-content > .left {
    flex: none;
    width: 100%;
    padding-right: 0;
  }
  .showroom-experience > .inner-content > .left > .image {
    width: 100%;
    aspect-ratio: 16/9;
    max-width: none;
  }
  .showroom-experience > .inner-content > .right {
    padding: 40px;
  }
  .showroom-experience > .inner-content > .right > .content {
    max-width: 100%;
  }
}

.mkw-tour {
  background: #F9F3EC;
  margin: 0;
  max-width: 100%;
  width: 100%;
  position: relative;
}
.mkw-tour > .mkw-tour-header {
  position: absolute;
  top: -10%;
  left: 0;
  width: 60%;
  background: var(--Primary-Heritage-Black, #3C3C3C);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  z-index: 2;
}
.mkw-tour > .mkw-tour-header > h3 {
  color: var(--Secondary-Craft-White, #F8F0E7);
  max-width: 668px;
}
.mkw-tour > .mkw-tour-header > h3 > em {
  color: var(--Secondary-Driftwood, #C2AE97);
}
@media screen and (max-width: 1200px) {
  .mkw-tour > .mkw-tour-header {
    width: 70%;
  }
}
@media screen and ((min-width: 2000px) or (max-width: 900px)) {
  .mkw-tour > .mkw-tour-header {
    position: static;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .mkw-tour > .mkw-tour-header > h3 {
    max-width: 100%;
    text-align: center;
  }
}
.mkw-tour > .mkw-tour-video {
  width: 100%;
  aspect-ratio: 16/9;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  position: relative;
}
.mkw-tour > .mkw-tour-video > .overlay {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mkw-tour > .mkw-tour-video > .bark-button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.showroom-team {
  background: var(--Primary-Heritage-Black, #3C3C3C);
  color: var(--Secondary-Craft-White, #F8F0E7);
  padding: 154px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.showroom-team > .overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 46/61;
  max-width: 619px;
  width: 100%;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.2;
  filter: grayscale(1);
}
.showroom-team > .inner-content {
  max-width: 1440px;
  width: 100%;
  position: relative;
  z-index: 3;
}
.showroom-team > .inner-content > .team-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 80px 0;
}
.showroom-team > .inner-content > .team-heading > h2 {
  max-width: 760px;
  line-height: 100%; /* 100px */
  color: var(--Secondary-Craft-White, #F8F0E7);
}
.showroom-team > .inner-content > .team-heading > h2 > em {
  color: var(--Secondary-Driftwood, #C2AE97);
}
.showroom-team > .inner-content > .team-heading > p {
  max-width: 760px;
  color: var(--Secondary-Craft-White, #F8F0E7);
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
}
@media (max-width: 1108px) {
  .showroom-team > .inner-content > .team-heading {
    align-items: center;
    text-align: center;
    padding: 0 0 60px 0;
  }
  .showroom-team > .inner-content > .team-heading > h2, .showroom-team > .inner-content > .team-heading p {
    max-width: 100%;
    text-align: center;
  }
}
.showroom-team > .inner-content > .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.showroom-team > .inner-content > .team-grid.grid-size-three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1108px) {
  .showroom-team > .inner-content > .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .showroom-team > .inner-content > .team-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.showroom-team > .inner-content > .team-grid > .team-member {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.showroom-team > .inner-content > .team-grid > .team-member > .team-member-image {
  width: 100%;
  aspect-ratio: 1/1;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
}
.showroom-team > .inner-content > .team-grid > .team-member > .team-member-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.showroom-team > .inner-content > .team-grid > .team-member > .team-member-info > .name {
  color: var(--Secondary-Craft-White, #F8F0E7);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.showroom-team > .inner-content > .team-grid > .team-member > .team-member-info > .title {
  color: var(--Secondary-Driftwood, #C2AE97);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 32.2px */
}
.showroom-team > .inner-content > .team-grid.grid-size-two, .showroom-team > .inner-content > .team-grid.grid-size-one {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.showroom-team > .inner-content > .team-grid.grid-size-two > .team-member, .showroom-team > .inner-content > .team-grid.grid-size-one > .team-member {
  max-width: 300px;
  width: 100%;
}
.showroom-team > .inner-content > .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0 0 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.studio-steps {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.studio-steps > .studio-progress-bar {
  position: relative;
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .studio-steps > .studio-progress-bar {
    display: none;
  }
}
.studio-steps > .studio-progress-bar > .status-progress-bar-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  transform: translateY(-50%);
  z-index: 1;
}
.studio-steps > .studio-progress-bar > .inner-content {
  position: relative;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 50px;
  z-index: 2;
}
.studio-steps > .studio-progress-bar > .inner-content > .status-progress-bar-item {
  position: absolute;
  top: -40px;
  left: -40px;
  max-width: 160px;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 20px;
  transition: top 0.3s ease-in-out, left 0.3s ease-in-out;
  transform: translateY(-25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .studio-steps > .studio-progress-bar > .inner-content > .status-progress-bar-item {
    max-width: 100px;
  }
}
.studio-steps > .studio-progress-bar > .inner-content > .status-progress-bar-item > .selection {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-image: url("/wp-content/uploads/2025/07/Layer-1.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.studio-steps > .studio-progress-bar > .inner-content > .status-progress-bar-item > span {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "Wulkan Display";
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 161%; /* 20.93px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media screen and (max-width: 1100px) {
  .studio-steps > .studio-progress-bar > .inner-content > .status-progress-bar-item > span {
    font-size: 24px;
  }
}
.studio-steps .studio-header {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.studio-steps .studio-header > p {
  max-width: 503px;
  width: 100%;
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-style: normal;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 968px) {
  .studio-steps .studio-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .studio-steps .studio-header > p {
    text-align: center;
    max-width: 100%;
  }
}
.studio-steps > .studio-inner-content {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  gap: 100px;
  padding: 50px 20px;
}
@media screen and (max-width: 1032px) {
  .studio-steps > .studio-inner-content {
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .studio-steps > .studio-inner-content {
    flex-direction: column;
  }
}
.studio-steps > .studio-inner-content > .studio-sidebar {
  width: 100%;
  max-width: 200px;
  position: relative;
}
@media (max-width: 768px) {
  .studio-steps > .studio-inner-content > .studio-sidebar {
    max-width: 100%;
    order: 2;
  }
}
.studio-steps > .studio-inner-content > .studio-sidebar > .inner-content {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .studio-steps > .studio-inner-content > .studio-sidebar > .inner-content {
    flex-direction: row;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: auto;
    gap: 10px;
  }
}
.studio-steps > .studio-inner-content > .studio-sidebar > .inner-content > .section {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  cursor: pointer;
}
.studio-steps > .studio-inner-content > .studio-sidebar > .inner-content > .section > span {
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 25.76px */
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}
.studio-steps > .studio-inner-content > .studio-sidebar > .inner-content > .section > span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  transition: width 0.6s ease-in-out;
}
.studio-steps > .studio-inner-content > .studio-sidebar > .inner-content > .section.selected {
  color: var(--Secondary-Chestnut, #8D5C49);
}
.studio-steps > .studio-inner-content > .studio-sidebar > .inner-content > .section.selected > span::after {
  background-color: var(--Secondary-Chestnut, #8D5C49);
}
.studio-steps > .studio-inner-content > .studio-sidebar > .inner-content > .section:hover > span::after, .studio-steps > .studio-inner-content > .studio-sidebar > .inner-content > .section.selected > span::after {
  width: 100%;
}
.studio-steps > .studio-inner-content > .studio-content {
  width: 100%;
  position: relative;
}
.studio-steps > .studio-inner-content > .studio-content > .step-header {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "Wulkan Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%; /* 21.6px */
}
.studio-steps > .studio-inner-content > .studio-content > .step-content {
  display: none;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content.active {
  display: block;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 39px 0;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.small {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1100px) {
  .studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.small {
    grid-template-columns: 1fr;
  }
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.medium {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 1300px) {
  .studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.medium {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1100px) {
  .studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.medium {
    grid-template-columns: 1fr;
  }
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.large {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 1300px) {
  .studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.large {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1100px) {
  .studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.large {
    grid-template-columns: 1fr 1fr;
  }
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.xlarge {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 1500px) {
  .studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.xlarge {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1300px) {
  .studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.xlarge {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 1100px) {
  .studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list.xlarge {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1100px) {
  .studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-gallery {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  padding: 10px;
  transition: background-color 0.6s ease-in-out;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-gallery:hover {
  background-color: rgba(194, 174, 151, 0.15);
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-gallery > .option-image {
  aspect-ratio: 353/250;
  width: 100%;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-gallery > .option-image > img {
  aspect-ratio: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-gallery > .option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 3px;
  padding-right: 3px;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-gallery > .option-header > span {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-gallery > .option-header > div {
  max-width: 16px;
  width: 100%;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-gallery > .option-header > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-default {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-decoration: none;
  padding: 18px 28px;
  border-top: 1px solid var(--Secondary-Chestnut, #8D5C49);
  border-bottom: 1px solid var(--Secondary-Chestnut, #8D5C49);
  transition: background-color 0.6s ease-in-out;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-default > .option-header {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 161%; /* 38.64px */
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-default > .option-image {
  aspect-ratio: 353/105;
  width: 100%;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-default > .option-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-default > .option-description {
  color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
  font-family: "SourceSans3";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 25.76px */
  margin: 0;
}
.studio-steps > .studio-inner-content > .studio-content > .step-content > .options-list > .option-item-default:hover {
  background-color: rgba(194, 174, 151, 0.15);
}

.your-selections {
  background: rgba(218, 206, 193, 0.3);
  border: 1px solid var(--Secondary-Chestnut, #8D5C49);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 38px 48px;
}
.your-selections:empty {
  display: none;
}
@media screen and (max-width: 900px) {
  .your-selections {
    grid-template-columns: 1fr;
  }
}
.your-selections > div {
  color: var(--Primary-Heritage-Black, #3C3C3C);
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  line-height: 161%; /* 25.76px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.your-selections > div > strong {
  font-weight: 700;
}

.wedux-timeline {
  --selection-color: #8D5C49;
  position: relative;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.wedux-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--selection-color);
}
.wedux-timeline > .inner-timeline {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  position: relative;
}
.wedux-timeline > .inner-timeline > .selection-background {
  position: absolute;
  top: -40px;
  left: -40px;
  max-width: 160px;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #fff;
  padding: 20px;
  transition: top 0.3s ease-in-out, left 0.3s ease-in-out;
  -webkit-mask: url(#bark-mask) no-repeat center;
          mask: url(#bark-mask) no-repeat center;
}
@media screen and (max-width: 768px) {
  .wedux-timeline > .inner-timeline > .selection-background {
    display: none;
  }
}
.wedux-timeline > .inner-timeline > .selection-background > .selection {
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/07/Layer-1.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.wedux-timeline > .inner-timeline > .timeline-item {
  position: relative;
  padding-bottom: 50px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.wedux-timeline > .inner-timeline > .timeline-item:hover {
  transform: scale(1.05);
}
.wedux-timeline > .inner-timeline > .timeline-item > .timeline-year {
  color: var(--selection-color);
  text-align: center;
  font-family: "SourceSans3";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%; /* 24.15px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.wedux-timeline > .inner-timeline > .timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--selection-color);
}
.wedux-timeline.dark-mode {
  --selection-color: #C2AE97;
}
.wedux-timeline.dark-mode > .inner-timeline > .selection-background {
  background-color: #3C3C3C;
}
.wedux-timeline.dark-mode > .inner-timeline > .selection-background > .selection {
  filter: grayscale(0.78);
}

.selected-year {
  transition: all 0.3s ease-in-out;
  font-family: "Wulkan Display" !important;
  font-weight: 400 !important;
}

.selected-title > p {
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  font-family: inherit !important;
  margin: 0;
}
.selected-title > p > em {
  font-family: "Wulkan Display" !important;
  font-weight: 400 !important;
}

.selected-description > p {
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  font-family: inherit !important;
}

.heritage-container {
  padding-top: 200px;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .heritage-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.selected-title,
.selected-description,
.selected-image,
.selected-year {
  transition: opacity 0.5s ease-in-out;
}
.selected-title.hidden,
.selected-description.hidden,
.selected-image.hidden,
.selected-year.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.vertical-text {
  color: var(--Secondary-Chestnut, #8D5C49);
  text-align: center;
  font-family: "SourceSans3", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 30px */
  letter-spacing: 4px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display Italic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display Regular Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display Medium Italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display SemiBold Italic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display Bold Italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wulkan Display";
  src: url("/wp-content/plugins/wedux/fonts/Wulkan Display Black Italic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  --x: 1;
}
@media (max-width: 767.98px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.is-mobile-preview .hide-on-mobile {
  display: none !important;
}

@media (max-width: 767.98px) and (orientation: landscape) {
  .hide-on-mobile-landscape {
    display: none !important;
  }
}

.is-mobile-preview .hide-on-mobile-landscape {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hide-on-tablet {
    display: none !important;
  }
}

.is-tablet-preview .hide-on-tablet {
  display: none !important;
}

@media (min-width: 992px) {
  .hide-on-desktop {
    display: none !important;
  }
}

.is-desktop-preview .hide-on-desktop {
  display: none !important;
}

.wp-is-trash-workaround {
  padding-left: 40px;
  padding-right: 40px;
}

#case-studies, #blogs, #get-in-touch {
  margin: 0 !important;
}

@media screen and (max-width: 768px) {
  .homepage-hero .gspb_backgroundOverlay {
    background: rgba(0, 0, 0, 0.5) !important;
  }
  .forced-overlay {
    position: relative;
  }
  .forced-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  .forced-overlay > * {
    position: relative;
    z-index: 2;
  }
}
:root {
  --padding-x: 40px;
}
@media screen and (max-width: 768px) {
  :root {
    --padding-x: 20px;
  }
}

.gspb_button_wrapper,
.carlisle-button,
.gform_button {
  transition: transform 0.5s ease-in-out !important;
}
.gspb_button_wrapper:hover,
.carlisle-button:hover,
.gform_button:hover {
  transform: scale(0.95) !important;
}

.carlisle-button {
  border: 1px solid var(--color, #F8F0E7);
  padding: 15px 45px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carlisle-button.glass {
  background: rgba(194, 174, 151, 0.14);
  -webkit-backdrop-filter: blur(3.0999999046px);
          backdrop-filter: blur(3.0999999046px);
}
.carlisle-button > .text {
  color: var(--text-color, var(--color, #F8F0E7));
  text-align: center;
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%; /* 19.2px */
  text-transform: uppercase;
}

input.carlisle-text {
  background-color: transparent;
  border-color: rgb(194, 174, 151);
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%; /* 19.2px */
  outline: none;
}

input.carlisle-button {
  background-color: transparent;
  border-color: rgb(194, 174, 151);
  color: var(--text-color, var(--color, rgb(194, 174, 151)));
  text-align: center;
  font-family: "SourceSans3";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%; /* 19.2px */
  text-transform: uppercase;
  cursor: pointer;
}

.gform_button {
  width: 100% !important;
  border: 1px solid var(--color, #3c3c3c) !important;
  background: none !important;
  box-shadow: none !important;
  padding: 15px 45px !important;
  text-decoration: none !important;
  color: var(--text-color, var(--color, #3c3c3c)) !important;
  text-align: center !important;
  font-family: "SourceSans3" !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 128% !important; /* 19.2px */
  text-transform: uppercase !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.heading-130 {
  font-size: min(8vw, 130px) !important;
}
@media screen and (max-width: 768px) {
  .heading-130 {
    font-size: 48px !important;
    text-align: center !important;
  }
}

.heading-121 {
  font-size: min(8vw, 121px) !important;
}
@media screen and (max-width: 768px) {
  .heading-121 {
    font-size: 48px !important;
    text-align: center !important;
  }
}

.heading-116 {
  font-size: min(7vw, 116px) !important;
}
@media screen and (max-width: 768px) {
  .heading-116 {
    font-size: 32px !important;
    text-align: center !important;
  }
}

body:not(.wp-admin) .heading-118,
body:not(.wp-admin) h1:not(.wp-block-post-title):not(.force-fitty),
.block-editor-writing-flow .heading-118,
.block-editor-writing-flow h1:not(.wp-block-post-title):not(.force-fitty) {
  font-size: min(8vw, 118px) !important;
}
@media screen and (max-width: 768px) {
  body:not(.wp-admin) .heading-118,
  body:not(.wp-admin) h1:not(.wp-block-post-title):not(.force-fitty),
  .block-editor-writing-flow .heading-118,
  .block-editor-writing-flow h1:not(.wp-block-post-title):not(.force-fitty) {
    font-size: 48px !important;
  }
}
body:not(.wp-admin) .heading-96,
body:not(.wp-admin) h2:not(.force-fitty),
.block-editor-writing-flow .heading-96,
.block-editor-writing-flow h2:not(.force-fitty) {
  font-size: min(7vw, 96px) !important;
}
@media screen and (max-width: 768px) {
  body:not(.wp-admin) .heading-96,
  body:not(.wp-admin) h2:not(.force-fitty),
  .block-editor-writing-flow .heading-96,
  .block-editor-writing-flow h2:not(.force-fitty) {
    font-size: 40px !important;
  }
}
body:not(.wp-admin) .heading-64,
body:not(.wp-admin) h3:not(.force-fitty),
.block-editor-writing-flow .heading-64,
.block-editor-writing-flow h3:not(.force-fitty) {
  font-size: min(6vw, 64px) !important;
}
@media screen and (max-width: 768px) {
  body:not(.wp-admin) .heading-64,
  body:not(.wp-admin) h3:not(.force-fitty),
  .block-editor-writing-flow .heading-64,
  .block-editor-writing-flow h3:not(.force-fitty) {
    font-size: 32px !important;
  }
}
body:not(.wp-admin) .heading-34,
body:not(.wp-admin) h4:not(.force-fitty),
.block-editor-writing-flow .heading-34,
.block-editor-writing-flow h4:not(.force-fitty) {
  font-size: min(6vw, 34px) !important;
  font-weight: 400 !important;
}
@media screen and (max-width: 768px) {
  body:not(.wp-admin) .heading-34,
  body:not(.wp-admin) h4:not(.force-fitty),
  .block-editor-writing-flow .heading-34,
  .block-editor-writing-flow h4:not(.force-fitty) {
    font-size: 24px !important;
  }
}

body:not(.wp-admin) .gform_validation_errors h1, body:not(.wp-admin) .gform_validation_errors h2, body:not(.wp-admin) .gform_validation_errors h3, body:not(.wp-admin) .gform_validation_errors h4, body:not(.wp-admin) .gform_validation_errors h5, body:not(.wp-admin) .gform_validation_errors h6 {
  font-size: 18px !important;
}

.overlay-text-light {
  color: #F8F0E7 !important;
  opacity: 1 !important;
}

.overlay-text-dark {
  color: #C2AE97 !important;
  opacity: 0.15 !important;
}

.eyebrow-text {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 150%;
  text-transform: uppercase;
}

.animated-line-by-line {
  overflow: hidden;
  padding: 1rem 1rem 1rem 0 !important;
}
.animated-line-by-line.done {
  overflow: visible;
}

.animated-line-by-line > .line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}

@keyframes weduxSectionReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ani-section-reveal.init {
  opacity: 0;
  transform: translateY(20px);
}
.ani-section-reveal.ani-visible {
  animation: weduxSectionReveal var(--timing, 1s) ease forwards;
  animation-delay: var(--delay, 0s);
}

.ani-section-reveal-goldbars {
  position: relative !important;
}
.ani-section-reveal-goldbars .top-bar,
.ani-section-reveal-goldbars .bottom-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  height: 1px;
  width: 100%;
  background-color: #c2ae97;
  z-index: 1;
  pointer-events: none;
}
.ani-section-reveal-goldbars .top-bar {
  top: 0;
}
.ani-section-reveal-goldbars .bottom-bar {
  bottom: 0;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-8-6 16:29:55
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.ani-blur-in.init {
  filter: blur(12px);
  opacity: 0;
}
.ani-blur-in.ani-visible {
  animation: text-focus-in 2s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.gfield_label {
  font-family: "SourceSans3", sans-serif !important;
  font-weight: 300 !important;
  font-size: 18px !important;
}

.gform-theme--api,
.gform-theme--foundation {
  --gf-form-gap-x: 8px !important;
  --gf-form-gap-y: 8px !important;
  --gf-local-radius: 0px !important;
}

.main-navbar {
  transition: transform 0.3s ease-in-out;
  z-index: 89;
}
.main-navbar.floating {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
}
@media screen and (max-width: 781px) {
  .main-navbar.floating {
    position: static !important;
  }
}
.main-navbar.hidden {
  transform: translateY(-100%);
}

.navbar-placeholder {
  background-color: var(--Secondary-Craft-White, #F8F0E7);
}
@media screen and (max-width: 781px) {
  .navbar-placeholder {
    display: none !important;
  }
}
.navbar-placeholder.commercial {
  background-color: var(--Primary-Inkstone-Blue-Commercial, #2C3E50);
}

@media screen and (min-width: 782px) {
  .admin-bar .main-navbar {
    position: fixed !important;
    top: 32px !important;
  }
}

.zoomable-image {
  cursor: none;
}

.modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.modal-background.active {
  opacity: 1;
  pointer-events: all;
}
.modal-background > .modal-image {
  max-width: 90%;
  max-height: 90%;
}

.zoom-button {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  pointer-events: none;
  z-index: 10000;
}
.zoom-button.visible {
  opacity: 1;
}
