.pristine-error {
  color: #cc0900 !important;
  margin-top: 0 !important;
}

.has-danger input, .has-danger textarea {
  border-color: #cc0900 !important;
}

/* ----------------------------------------------------------- */
/* == tingle v0.15.2 */
/* ----------------------------------------------------------- */
.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

/* confirm and alerts
-------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
-------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.tingle-modal__close svg * {
  fill: currentColor;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
}
.modal-image .tingle-modal-box {
  width: auto;
  max-width: 1264px;
}

.tingle-modal-box__content {
  padding: 2em;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px; /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom 0.3s ease-in-out 0.3s;
}

/* state
-------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-enabled .tingle-content-wrapper {
  filter: blur(8px);
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
-------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
-------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }
  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }
  .tingle-modal-box__content {
    overflow-y: scroll;
  }
  .tingle-modal--noClose {
    top: 0;
  }
  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }
  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #643264;
    box-shadow: none;
    color: #fff;
  }
  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }
  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: 0.8rem;
    width: 1.6rem;
    vertical-align: middle;
    font-size: 0;
  }
}
@supports (-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px)) {
  .tingle-modal:before {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: none;
  }
  .tingle-enabled .tingle-content-wrapper {
    filter: none;
  }
}
/* animations
-------------------------------------------------------------- */
@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Custom
-------------------------------------------------------------- */
.tingle-modal-box--wide .tingle-modal-box {
  max-width: 60em;
  width: auto;
}
.tingle-modal-box--wide .tingle-modal-box__content {
  padding: 1em;
}
.tingle-modal-box--wide embed {
  width: 80vw;
  max-width: 58em;
  height: 57vw;
}
@media (min-width: ) {
  .tingle-modal-box--wide embed {
    height: 90vh;
  }
}

.tingle-modal-box__content form button::before {
  background-color: #643264;
}
.tingle-modal-box__content form button:hover {
  color: #fff;
}

.tns-outer {
  padding: 0 !important;
  position: relative;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel.tns-carousel > .tns-item {
  margin-right: -100%;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}
.tns-t-ct::after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}

.tns-controls {
  text-align: center;
}
.tns-controls button {
  padding: 0;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  background-repeat: no-repeat;
  width: 14px;
  height: 28px;
  background-size: 100%;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin: 1em;
  background-size: 100%;
}
.tns-controls button:hover {
  opacity: 0.64;
}
.tns-controls button:first-child {
  background-image: url(../img/arrow-prev.svg);
}
.tns-controls button:last-child {
  background-image: url(../img/arrow-next.svg);
}
@media (min-width: 40rem) {
  .tns-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -14px;
  }
  .tns-controls button {
    position: absolute;
    margin: 0;
    width: 14px;
    height: 28px;
  }
  .tns-controls button:first-child {
    left: 0;
  }
  .tns-controls button:last-child {
    right: 0;
  }
}

.dots, .sitemap-list {
  list-style: none;
}
.dots li, .sitemap-list li {
  padding-left: 24px;
  margin-top: 2px;
  position: relative;
}
.dots li::before, .sitemap-list li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 28px;
  background-image: url("../img/logo-isolated.svg");
  background-repeat: no-repeat;
  background-position: center center;
  left: 0;
}
.dots ul, .sitemap-list ul {
  list-style: none;
  margin-top: 0;
}

.sitemap-list {
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.image-hover-text {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.image-hover-text img {
  display: block;
}
.image-hover-text figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(105%);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  padding: 1em 0.5em;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
}
.image-hover-text h2 {
  text-transform: uppercase;
  font-weight: 700;
}
.image-hover-text h2 + p {
  margin-top: 0.5rem;
}
.image-hover-text p {
  line-height: 1.25;
}
.image-hover-text:hover figcaption {
  transform: rotateY(0);
}

#js_carousel-sectors .tns-item a {
  display: block;
  max-width: 300px;
  max-height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.aspect-ratio-container {
  overflow: hidden;
  display: block;
}
.aspect-ratio-container img {
  object-fit: cover;
}

.aspect-ratio-container--absolute {
  position: relative;
}
.aspect-ratio-container--absolute img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.figure-title {
  position: relative;
  border-radius: 0 24px 24px 24px;
}
.figure-title figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.figure-title figcaption h2 {
  position: absolute;
  top: 0;
  left: 0;
  color: #643264;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}
@media (max-width: 55rem) {
  .figure-title figcaption h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.figure-title figcaption h2::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-image: url(../img/curve.svg);
  top: 100%;
  left: 0;
}
.figure-title figcaption h2 span {
  display: inline-block;
  padding: 0px 32px 24px 0px;
  border-radius: 0px 0px 24px 0px;
  background: #fff;
  position: relative;
}
.figure-title figcaption h2 span::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background-image: url(../img/curve.svg);
  top: 0;
  right: -28px;
}
.figure-title figcaption p {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18.75px;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
}
@media (max-width: 55rem) {
  .figure-title figcaption p {
    text-align: right;
  }
}
.figure-title figcaption p strong {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 55rem) {
  .figure-title figcaption p strong {
    font-size: 1.75rem;
  }
}
@media (min-width: 55rem) {
  .figure-title.figure-title--right {
    border-radius: 24px 0 24px 24px;
  }
  .figure-title.figure-title--right h2 {
    left: auto;
    right: 0;
    text-align: right;
  }
  .figure-title.figure-title--right h2::after {
    left: auto;
    right: 0;
    transform: rotate(90deg);
  }
  .figure-title.figure-title--right h2 span {
    display: inline-block;
    padding: 0px 0px 24px 32px;
    border-radius: 0px 0px 0px 24px;
  }
  .figure-title.figure-title--right h2 span::after {
    right: auto;
    left: -28px;
    transform: rotate(90deg);
  }
}
@media (min-width: 960px) {
  .figure-title figcaption h2,
  .figure-title figcaption p strong {
    font-size: 3rem;
  }
}

.card {
  background-color: #f0f0f0;
  padding: 2rem;
  border-radius: 1.5rem;
}

a.card {
  display: inline-block;
}

.carousel--testimonials {
  margin-bottom: -24px;
}
.carousel--testimonials .tns-slide-active .card {
  background-color: #643264;
  color: #fff;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.carousel--testimonials .tns-slide-active .card .icon--review-star-grey::after {
  opacity: 1;
}
.carousel--testimonials .tns-slide-active + .tns-slide-active .card {
  background-color: #f0f0f0;
  color: #3f4042;
}
.carousel--testimonials .tns-slide-active + .tns-slide-active .card .icon--review-star-grey::after {
  opacity: 0;
}

.card--testimonials {
  position: relative;
  padding: 2.5rem 7.5rem 2.5rem 2rem;
  position: relative;
}
.card--testimonials::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-image: url(../img/icons/card-cutout.svg);
  z-index: 2;
}
.card--testimonials .icon:not(:last-child) {
  margin-right: 8px;
}
.card--testimonials p {
  position: relative;
  z-index: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.card--testimonials .icon--review-star-grey {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}
.card--testimonials .icon--review-star-grey::before {
  position: absolute;
  top: 0;
  left: 0;
}
.card--testimonials .icon--review-star-grey::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(../img/icons/review-star-white.svg);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 2;
}

.card--testimonials__arrow {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background-color: #643264;
  margin-left: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.card--testimonials__arrow::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/card-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 20px;
  transition: 0.35s cubic-bezier(0.35, 0, 0.35, 1);
}

.card--illustration figure {
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.card--illustration:hover figure {
  transform: scale(1.05);
}

.faq.js-enabled details .content {
  height: 0;
  transition: height 0.3s ease-in-out;
}
.faq details {
  position: relative;
}
.faq details[open] summary {
  margin-bottom: 1rem;
}
.faq details[open] summary h2 {
  color: #643264;
}
.faq details[open] .content {
  height: auto;
}
.faq details .content {
  overflow: hidden;
  margin: 0;
}
.faq details .content * + * {
  margin-top: 0.75rem;
}
.faq summary {
  user-select: none;
  outline: none;
  padding-right: 2rem;
  position: relative;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  color: #643264;
}

.flex > .faq {
  flex-grow: 1;
}

.faq--arrow {
  counter-reset: ol-counter;
  border-top: 1px solid #202020;
}
.faq--arrow details {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #202020;
  margin-top: 1.5rem;
}
.faq--arrow details[open] summary {
  margin-bottom: 1rem;
}
.faq--arrow details[open] summary svg {
  transform: rotate(90deg);
}
.faq--arrow details[open] summary circle, .faq--arrow details[open] summary path {
  stroke: #643264;
}
.faq--arrow summary {
  counter-increment: ol-counter;
  padding-left: 66px;
  color: #3f4042;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 1px;
}
@media (max-width: 55rem) {
  .faq--arrow summary {
    font-size: 1.125rem;
    line-height: 1.6875;
    padding-left: 44px;
  }
}
.faq--arrow summary:before {
  content: "0" counter(ol-counter);
  position: absolute;
  left: 0;
  top: 0;
}
.faq--arrow summary:hover circle, .faq--arrow summary:hover path {
  stroke: #643264;
}
.faq--arrow summary svg, .faq--arrow summary circle, .faq--arrow summary path {
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.faq--arrow summary svg {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
}
@media (max-width: 55rem) {
  .faq--arrow summary svg {
    width: 16px;
    height: 16px;
    margin-top: -6px;
  }
}

.faq--plus details {
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid #202020;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq--plus details:not(:first-child) {
  margin-top: 1.5rem;
}
.faq--plus details[open] summary {
  color: #643264;
  -webkit-line-clamp: 2;
}
.faq--plus details[open] summary span, .faq--plus details[open] summary::after {
  color: #643264;
}
.faq--plus details[open] summary h2::after {
  transform: rotate(225deg);
}
.faq--plus details .content {
  overflow: hidden;
  margin: 0;
}
.faq--plus details .content * + * {
  margin-top: 0.75rem;
}
.faq--plus summary {
  padding-right: 40px;
  position: relative;
}
@media (min-width: 40rem) {
  .faq--plus summary::after {
    top: 0;
  }
}

.icon::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  z-index: 1;
}

.icon--sm::before {
  height: 16px;
  width: 16px;
}

.icon--md::before {
  height: 48px;
  width: 48px;
}

.icon--comfort-first::before {
  background-image: url(../img/icons/comfort-first.svg);
}

.icon--customisation::before {
  background-image: url(../img/icons/customisation.svg);
}

.icon--expert-craftmanship::before {
  background-image: url(../img/icons/expert-craftmanship.svg);
}

.icon--fair-pricing::before {
  background-image: url(../img/icons/fair-pricing.svg);
}

.icon--quality-materials::before {
  background-image: url(../img/icons/quality-materials.svg);
}

.icon--space-efficiency::before {
  background-image: url(../img/icons/space-efficiency.svg);
}

.icon--versatile-design::before {
  background-image: url(../img/icons/versatile-design.svg);
}

.icon--details-phone-white::before {
  background-image: url(../img/icons/details-phone-white.svg);
}

.icon--details-email-white::before {
  background-image: url(../img/icons/details-email-white.svg);
}

.icon--details-location-white::before {
  background-image: url(../img/icons/details-location-white.svg);
}

.icon--review-star-white::before {
  background-image: url(../img/icons/review-star-white.svg);
}

.icon--review-star-grey::before {
  background-image: url(../img/icons/review-star-grey.svg);
}

.icon-block > * {
  margin-top: 1.25rem;
}

.icon--horizontal {
  position: relative;
}
.icon--horizontal::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.icon--horizontal.icon--sm {
  padding-left: calc(16px + 1rem);
}
.icon--horizontal.icon--md {
  padding-left: calc(48px + 1rem);
}

.icon--vertical {
  position: relative;
}
.icon--vertical::before {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.icon--vertical.icon--sm {
  padding-top: 36px;
}
.icon--vertical.icon--md {
  padding-top: 68px;
}

.icon-blocks {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 96px;
  flex: 1 0 0;
}
.icon-blocks__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  width: 200px;
}
.icon-blocks__icon svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.icon-blocks__icon hr {
  border-bottom: 2px solid #643264;
  width: 100%;
}

.material-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.material-list__image figure, .material-list__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  cursor: pointer;
}
.material-list__image figure {
  position: relative;
}
.material-list__image figure:hover img {
  transform: scale(1.05);
}
.material-list__image figure img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.material-list__text:hover div {
  background-color: #320032;
}
.material-list__text div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 168px;
  align-self: stretch;
  border-radius: 12px;
  background: #643264;
  padding: 12px;
  transition: background-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (max-width: 55rem) {
  .material-list__text div {
    height: 100px;
  }
}
.material-list__text p:first-child {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  line-height: 24px; /* 171.429% */
  letter-spacing: -0.5px;
}
.plinth-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.plinth-list__image figure {
  width: 107px;
  height: 107px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 55rem) {
  .plinth-list__image figure {
    width: 60px;
    height: 60px;
  }
}
.plinth-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip__content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(-4px);
  z-index: 1000;
  pointer-events: none;
}
.tooltip__content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}
.tooltip:hover .tooltip__content, .tooltip:focus .tooltip__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.plinth-list__image figure {
  transition: transform 0.2s ease;
  cursor: pointer;
}
.plinth-list__image figure:hover {
  transform: scale(1.05);
}

.side-contact-button {
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 3;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: none;
  padding: 0 !important;
  background-color: #643264;
  background-image: url(../img/icon-envelope-lg.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  text-indent: 150px;
  font-size: 0;
  overflow: hidden;
  box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.4);
}
@media (min-width: 55rem) {
  .side-contact-button {
    right: 1.5rem;
    bottom: 1.5rem;
    height: 64px;
    width: 64px;
    background-size: 40px;
  }
}

else .side-contact-button {
  top: 190px;
  position: fixed;
  right: -3.875em;
  transform: rotate(270deg);
  z-index: 3;
  font-size: 1em;
  padding: 1em 1.5em;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.15);
}
@media (min-width: 960px) {
  else .side-contact-button {
    top: 225px;
  }
}

.side-contact {
  display: none;
}

.tingle-modal {
  overflow: auto;
}
.tingle-modal input, .tingle-modal textarea {
  border-color: #f0f0f0;
  line-height: 1;
}

.tingle-modal-box {
  max-width: 34em;
}
.tingle-modal-box form > div {
  margin-top: 0.5em;
}
.tingle-modal-box form > div:last-child {
  margin-top: 1.5em;
}

@media (min-width: 40rem) {
  .carousel:not(.carousel--gallery) .tns-outer {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}
@media (min-width: 87.5rem) {
  .carousel #js_carousel-sectors .tns-outer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.carousel--usp {
  max-width: 1000px;
}
.carousel--usp li {
  width: 380px;
  max-width: calc(100vw - 2em);
}
.carousel--usp li.carousel--usp__wide {
  width: 420px;
}
.carousel--usp h2 {
  font-weight: 700;
  letter-spacing: 0.15px;
}
.carousel--usp h2 + p {
  margin-top: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1px;
  max-width: 30ch;
}
@media (min-width: 460px) {
  .carousel--usp .tns-ovh {
    position: relative;
  }
  .carousel--usp .tns-ovh::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.5;
    background-image: linear-gradient(to right, #fff 0%, #fff calc(50% - 170px), transparent calc(50% - 169px), transparent calc(50% + 169px), #fff calc(50% + 170px));
  }
  .carousel--usp li {
    max-width: 380px;
  }
  .carousel--usp li.carousel--usp__wide {
    max-width: 420px;
  }
}

.carousel--vert-mid .tns-carousel {
  display: flex;
}
.carousel--vert-mid .tns-item {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.carousel-usp {
  color: #3f4042;
  text-align: center;
}
.carousel-usp h2 {
  padding-bottom: 21px;
  margin-bottom: 21px;
  position: relative;
}
.carousel-usp h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border: 1px solid #643264;
  width: 198px;
  height: 0;
  transform: translateX(-50%);
}
.carousel-usp ul {
  list-style: none;
  display: flex;
}
@media (min-width: 55rem) {
  .carousel-usp {
    padding: 0 66px;
  }
  .carousel-usp .tns-controls {
    left: -66px;
    right: -66px;
  }
}

.category-block {
  position: relative;
  height: 500px;
  padding-bottom: 96px;
  border-radius: 24px 24px 16px 24px;
  overflow: hidden;
  color: #fff;
  background-color: #3f4042;
  background-size: cover;
  background-position: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 55rem) {
  .category-block {
    height: auto;
    min-height: 350px;
    padding-bottom: 80px;
  }
}
.category-block--428 {
  height: 428px;
}
.category-block--340, .category-blocks--340 .category-block {
  height: 340px;
}
.category-block--180 {
  height: 180px;
}
.category-block.no-text:hover::before {
  opacity: 0.64;
}
.category-block--no-arrow {
  padding-bottom: 0;
}
.category-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 0;
  transition: 0.35s cubic-bezier(0.35, 0, 0.35, 1);
  opacity: 0.4;
}
.category-block:not(.category-block--no-arrow)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-image: url(../img/icons/card-cutout.svg);
  z-index: 2;
}
@media (max-width: 55rem) {
  .category-block:not(.category-block--no-arrow)::after {
    width: 100px;
    height: 100px;
    background-size: contain;
  }
}
.category-block:hover::before {
  opacity: 1;
}
.category-block:hover .category-block__text p {
  opacity: 1;
  max-height: 400px;
  margin: 1rem auto 0;
}
.category-block:hover .category-block__arrow::after {
  transform: rotate(90deg);
}

.category-block--sectors-we-work-with {
  background-image: url(../img/webp/sectors-we-work-with.webp);
}
.no-webp .category-block--sectors-we-work-with {
  background-image: url(../img/sectors-we-work-with.jpg);
}

.category-block--bespoke-banquette-seating {
  background-image: url(../img/webp/bespoke-banquette-seating.webp);
}
.no-webp .category-block--bespoke-banquette-seating {
  background-image: url(../img/bespoke-banquette-seating.jpg);
}

.category-block--bespoke-bench-seating {
  background-image: url(../img/webp/bespoke-bench-seating.webp);
}
.no-webp .category-block--bespoke-bench-seating {
  background-image: url(../img/bespoke-bench-seating.jpg);
}

.category-block--bespoke-booth-seating {
  background-image: url(../img/webp/bespoke-booth-seating.webp);
}
.no-webp .category-block--bespoke-booth-seating {
  background-image: url(../img/bespoke-booth-seating.jpg);
}

.category-block--sectors-hotels-hotel-lobbies-and-reception {
  background-image: url(../img/webp/sectors-hotels-hotel-lobbies-and-reception.webp);
}
.no-webp .category-block--sectors-hotels-hotel-lobbies-and-reception {
  background-image: url(../img/sectors-hotels-hotel-lobbies-and-reception.jpg);
}

.category-block--sectors-hotels-hotel-bedrooms-and-suites {
  background-image: url(../img/webp/sectors-hotels-hotel-bedrooms-and-suites.webp);
}
.no-webp .category-block--sectors-hotels-hotel-bedrooms-and-suites {
  background-image: url(../img/sectors-hotels-hotel-bedrooms-and-suites.jpg);
}

.category-block--sectors-hotels-hotel-bars-breakfast-rooms-restaurants {
  background-image: url(../img/webp/sectors-hotels-hotel-bars-breakfast-rooms-restaurants.webp);
}
.no-webp .category-block--sectors-hotels-hotel-bars-breakfast-rooms-restaurants {
  background-image: url(../img/sectors-hotels-hotel-bars-breakfast-rooms-restaurants.jpg);
}

.category-block--sectors-hotels-hotel-lounges-libraries-reading-spaces {
  background-image: url(../img/webp/sectors-hotels-hotel-lounges-libraries-reading-spaces.webp);
}
.no-webp .category-block--sectors-hotels-hotel-lounges-libraries-reading-spaces {
  background-image: url(../img/sectors-hotels-hotel-lounges-libraries-reading-spaces.jpg);
}

.category-block--flat-fluted {
  background-image: url(../img/webp/flat-fluted.webp);
}
.no-webp .category-block--flat-fluted {
  background-image: url(../img/flat-fluted.jpg);
}

.category-block--profile-fluted {
  background-image: url(../img/webp/profile-fluted.webp);
}
.no-webp .category-block--profile-fluted {
  background-image: url(../img/profile-fluted.jpg);
}

.category-block--deep-button {
  background-image: url(../img/webp/deep-button.webp);
}
.no-webp .category-block--deep-button {
  background-image: url(../img/deep-button.jpg);
}

.category-block--floated-button {
  background-image: url(../img/webp/floated-button.webp);
}
.no-webp .category-block--floated-button {
  background-image: url(../img/floated-button.jpg);
}

.category-block--plain-bench {
  background-image: url(../img/webp/plain-bench.webp);
}
.no-webp .category-block--plain-bench {
  background-image: url(../img/plain-bench.jpg);
}

.category-block__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  position: relative;
}
.category-block__text h3 {
  color: #fff;
  font-weight: 400;
  padding: 0 1rem;
}
.category-block__text h3 strong {
  display: block;
  text-transform: none;
  font-size: 1.25rem;
  line-height: 2rem;
}
@media (min-width: 40rem) {
  .category-block__text h3 strong {
    font-size: 1.75rem;
    line-height: 3rem;
  }
}
.category-block__text p {
  opacity: 0;
  max-height: 0;
  transition: 0.35s cubic-bezier(0.35, 0, 0.35, 1);
  max-width: calc(100% - 4rem);
  margin: 0 auto;
}

.category-block__arrow {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background-color: #643264;
  margin-left: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}
@media (max-width: 55rem) {
  .category-block__arrow {
    width: 60px;
    height: 60px;
  }
}
.category-block__arrow::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/card-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 20px;
  transition: 0.35s cubic-bezier(0.35, 0, 0.35, 1);
}
@media (max-width: 55rem) {
  .category-block__arrow::after {
    top: 22.5px;
    left: 22.5px;
    width: 15px;
    height: 15px;
    background-size: 15px;
  }
}

.category-block--floated-button {
  background-position: 50% 20%;
}

.carousel--gallery {
  position: relative;
}
.carousel--gallery + figcaption {
  bottom: auto !important;
}
.carousel--gallery .carousel__container figure {
  aspect-ratio: 151/125;
}
.carousel--gallery .carousel__container figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.carousel--gallery .tns-outer:first-child {
  padding: 0 !important;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
}
.carousel--gallery .tns-outer:nth-child(2) .tns-ovh {
  border-radius: 0 0 1.5rem 1.5rem;
  overflow: hidden;
}
.carousel--gallery .carousel__thumbnails {
  margin-top: 8px;
}
.carousel--gallery .carousel__thumbnails figure {
  aspect-ratio: 161/96;
  cursor: pointer;
}
.carousel--gallery .carousel__thumbnails figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 1400px) {
  .carousel--gallery .tns-outer:nth-child(2) {
    width: calc(100% + 72px);
    margin-left: -36px;
    padding: 0 36px !important;
  }
}

.carousel--gallery--product .carousel__container figure {
  max-height: 632px;
  aspect-ratio: 175/79;
}
.carousel--gallery--product .carousel__thumbnails figure {
  aspect-ratio: 3/2;
}

.carousel--gallery--product__controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1px;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
}
.carousel--gallery--product__controls button {
  background-color: #643264;
  display: flex;
  width: 32px;
  height: 40px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.carousel--gallery--product__controls button:hover {
  background-color: #320032;
}
.carousel--gallery--product__controls button:hover svg {
  transform: translateX(-2px);
}
.carousel--gallery--product__controls button:hover:last-child svg {
  transform: translateX(2px);
}
.carousel--gallery--product__controls button:first-child {
  border-radius: 0 6px 6px 0;
  padding-right: 2px;
}
.carousel--gallery--product__controls button:last-child {
  border-radius: 6px 0 0 6px;
  padding-left: 2px;
}
.carousel--gallery--product__controls button svg {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.gallery-images--featured .carousel__container figure {
  max-height: 750px;
  aspect-ratio: 375/308;
  background-color: rgba(32, 32, 32, 0.05);
}
.gallery-images--featured .carousel__container figure img {
  object-fit: contain;
}
.gallery-images--featured .carousel__thumbnails figure {
  aspect-ratio: 5/4;
  background-color: rgba(32, 32, 32, 0.05);
}
@media (min-width: 55rem) {
  .gallery-images--featured {
    position: absolute;
    top: 0;
    left: 0;
    width: 750px;
    margin-top: 0 !important;
  }
}

.carousel__thumbnails {
  min-width: 100%;
}
.carousel--gallery--product__controls + .tns-outer {
  border-radius: 0 0 1.5rem 1.5rem;
  overflow: hidden;
}

.copyright {
  padding: 1.5rem 0 3rem;
}
@media (max-width: 55rem) {
  .copyright {
    padding: 1.5rem 0 1.5rem;
  }
}
.copyright p,
.copyright a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  line-height: 1.75rem;
}
.copyright p + p {
  margin-top: 1.5rem;
}
@media (max-width: 55rem) {
  .copyright p + p {
    margin-top: 0;
  }
}
@media (min-width: 55rem) {
  .copyright .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .copyright p + p {
    margin-top: 0.5rem;
  }
}

.copyright__information p span {
  display: inline-block;
  vertical-align: top;
  margin: 0 0.5rem;
  position: relative;
  top: -2px;
}

.dbwd p,
.dbwd figure {
  display: inline-block;
  vertical-align: middle;
}
.dbwd p {
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.25rem;
}
.dbwd img {
  display: block;
}

.cta {
  background-color: #643264;
  color: #fff;
  padding: 2rem 1rem !important;
  border-radius: 1.5rem;
}
.cta h2 {
  color: #fff;
}
.cta .button {
  background-color: transparent;
  color: #643264;
  flex-shrink: 0;
  height: 3.25rem;
}
.cta .button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 2rem;
  z-index: 0;
}
.cta .button:hover {
  background-color: #643264;
  color: #fff;
}
.cta:not(.text-center) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 40rem) {
  .cta {
    padding: 2rem 3rem !important;
  }
}

.footer {
  background-color: #320032;
  color: #fff;
  padding-top: 3rem;
  letter-spacing: 0.25px;
}
.footer > .container {
  padding-bottom: 1.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}
.footer h2,
.footer h3 {
  color: #fff;
}
.footer h2 {
  line-height: 3;
  flex-basis: 100%;
}
.footer h3,
.footer a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: capitalize;
}
.footer h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer a:hover {
  color: #643264;
}
.footer a:hover h3 {
  color: #643264;
}
.footer nav {
  margin-top: 3rem;
}
@media (max-width: 55rem) {
  .footer nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.footer nav li {
  font-size: 0.75rem;
  line-height: 1rem;
}
.footer nav li + li {
  margin-top: 0.75rem;
}
.footer .footer__lists {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 55rem) {
  .footer .footer__lists > ul {
    flex-basis: calc(33.3% - 1rem);
  }
}
@media (min-width: 40rem) {
  .footer nav {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
@media (min-width: 70rem) {
  .footer nav {
    justify-content: space-between;
  }
}

.footer__logo {
  text-align: center;
}

.footer__contact {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 4rem;
}
.footer__contact li {
  height: 1.225rem;
}
.footer__contact p,
.footer__contact a {
  font-size: 0.875rem;
  line-height: normal;
  display: inline-block;
  vertical-align: top;
}

/*# sourceMappingURL=style.css.map */
