.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  visibility: hidden;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  color: #333;
}

main section {
  padding: 6vw 3vw;
}
@media (max-width: 768px) {
  main section {
    padding: 10vw 6vw;
  }
}
main section.gray {
  background-color: #73777a;
}
main section.light-gray {
  background-color: #e1e0e0;
}
main a {
  text-decoration: none;
}
main img {
  width: 100%;
}
main h1 {
  font-size: 8vw;
  font-weight: 800;
  color: #f47d2a;
  line-height: 1.3;
}
@media (max-width: 768px) {
  main h1 {
    font-size: 20vw;
    line-height: 1.1;
  }
}
main h2 {
  font-size: 4vw;
  color: #f47d2a;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  main h2 {
    font-size: 7vw;
    max-width: 100%;
    line-height: 1.3;
  }
}
main p {
  margin: 0;
  color: #ffffff;
  font-size: 1.8vw;
  line-height: 1.4;
  margin-top: 2vw;
}
@media (max-width: 768px) {
  main p {
    color: #ffffff;
    font-size: 4vw !important;
    line-height: 1.4;
    margin-top: 3vw;
  }
}
main .gray p {
  color: #ffffff;
}

.logo {
  width: 20vw;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .logo {
    width: 50vw;
  }
}

.hero {
  background-color: #73777a;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero {
    padding: 10vw 0;
  }
}
.hero .tagline {
  margin: 0;
  margin-bottom: 5vw;
  font-weight: 300;
}
@media (max-width: 768px) {
  .hero .tagline {
    font-size: 3.6vw;
  }
}
.hero .chairs-container {
  display: flex;
  justify-content: center;
  gap: 3vw;
  margin-top: 3vw;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero .chairs-container {
    margin-top: 14vw;
  }
}
.hero .chairs-container .chairs-slider {
  display: flex;
  justify-content: center;
  gap: 3vw;
  flex-wrap: wrap;
  align-items: end;
}
@media (max-width: 768px) {
  .hero .chairs-container .chairs-slider {
    display: block;
  }
}
.hero .chairs-container .chairs-slider .chair-slide {
  flex: 1;
  max-width: 30vw;
}
@media (max-width: 767px) {
  .hero .chairs-container .chairs-slider .chair-slide {
    max-width: 70%;
    margin: 0 4vw;
  }
}
@media (min-width: 768px) {
  .hero .chairs-container .chairs-slider .chair-slide {
    transition: transform 0.3s ease;
    padding: 0 5vw;
    min-width: 0;
    max-width: none;
  }
  .hero .chairs-container .chairs-slider .chair-slide:hover {
    transform: translateY(-20px);
  }
}
.hero .chairs-container .chairs-slider .chair-slide .chair {
  flex: 1;
}
@media (max-width: 768px) {
  .hero .chairs-container .chairs-slider .chair-slide .chair {
    margin: 0 auto;
  }
}
.hero .chairs-container .chairs-slider .chair-slide .chair img {
  width: 100%;
  height: auto;
}
.hero .chairs-container .chairs-slider .chair-slide .chair p {
  color: #ffffff;
  font-weight: 700;
  font-size: 2vw !important;
  margin-top: 3vw;
}
@media (max-width: 768px) {
  .hero .chairs-container .chairs-slider .chair-slide .chair p {
    font-size: 4vw !important;
    margin-top: 7vw;
  }
}

.solving .kontainer .stats-con {
  display: flex;
  justify-content: center;
  gap: 2vw;
}
@media (max-width: 768px) {
  .solving .kontainer .stats-con {
    flex-direction: column;
    align-items: center;
  }
}
.solving .kontainer .stats-con > div {
  position: relative;
  height: 20vw;
  margin-top: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .solving .kontainer .stats-con > div {
    height: 40vw;
    margin-top: 12vw;
    width: 100% !important;
  }
}
.solving .kontainer .stats-con > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6; /* Adjust this value (0 to 1) */
  z-index: 0;
  mix-blend-mode: multiply;
}
.solving .kontainer .stats-con > div.sold {
  width: 20vw;
}
.solving .kontainer .stats-con > div.sold::before {
  background-image: url("./images/wau_wide backrest-1500w.webp");
}
.solving .kontainer .stats-con > div.country {
  width: 40vw;
}
.solving .kontainer .stats-con > div.country::before {
  background-image: url("./images/globe_map.webp");
}
.solving .kontainer .stats-con > div .count {
  font-size: 4.5vw;
  color: #fff;
  z-index: 1;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .solving .kontainer .stats-con > div .count {
    font-size: 10vw;
  }
}
.solving .kontainer .stats-con > div .desc {
  font-size: 3vw;
  color: #f47d2a;
  z-index: 1;
}
@media (max-width: 768px) {
  .solving .kontainer .stats-con > div .desc {
    font-size: 6vw;
  }
}

.as-seen .as-seen-con {
  display: flex;
  justify-content: center;
  gap: 3vw;
  margin-top: 3vw;
}
@media (max-width: 768px) {
  .as-seen .as-seen-con {
    display: block;
    padding: 0 8vw;
  }
}
.as-seen .as-seen-con .video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2rem;
  overflow: hidden;
  cursor: pointer;
}
.as-seen .as-seen-con .video-container .video-player {
  width: 100%;
  display: block;
  transition: opacity 0.3s;
}
.as-seen .as-seen-con .video-container .play-button {
  position: absolute;
  top: calc(50% - 6vw);
  left: calc(50% - 3vw);
  width: 6vw;
  height: 6vw;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .as-seen .as-seen-con .video-container .play-button {
    top: calc(50% - 11vw);
    width: 10vw;
    height: 10vw;
    background: rgba(255, 255, 255, 0.4);
  }
}
.as-seen .as-seen-con .video-container .play-button svg {
  fill: white;
}
.as-seen .as-seen-con .video-container .play-button:hover {
  background: rgba(255, 255, 255, 0.3);
}
.as-seen .as-seen-con .video-container .title {
  color: #231f20;
  font-weight: 500;
}
.as-seen .as-seen-con .video-container.playing .play-button {
  opacity: 0;
  pointer-events: none;
}

.features {
  padding: 5vw;
}
.features .features-vid-con {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2vw;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 3vw;
}
.features .features-vid-con .vid-item {
  position: relative;
  overflow: hidden;
}
.features .features-vid-con .vid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.features .features-vid-con .vid-item.full {
  grid-column: 1/-1;
  aspect-ratio: 16/9;
}
@media (min-width: 769px) {
  .features .features-vid-con {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features .features-vid-con {
    gap: 3vw;
  }
}

.reviews {
  padding: 5vw 0;
  background-color: #f9f9f9;
}
.reviews .reviews-slider {
  padding: 0 3vw;
  margin-top: 3vw;
}
@media (max-width: 768px) {
  .reviews .reviews-slider {
    padding: 0;
  }
}
.reviews .reviews-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}
.reviews .reviews-slider .slick-slide {
  height: auto;
}
.reviews .review-card {
  background: #73777a;
  border-radius: 8px;
  padding: 0 1vw;
  margin: 1vw;
  height: 100%;
  border: 1px solid #fff;
  display: flex !important;
  flex-direction: column;
}
@media (max-width: 768px) {
  .reviews .review-card {
    padding: 0 5vw;
    margin: 4vw;
  }
}
.reviews .review-card .title {
  text-align: left;
  font-size: 1.2vw !important;
}
@media (max-width: 768px) {
  .reviews .review-card .title {
    font-size: 4vw !important;
  }
}
.reviews .review-card .review-text {
  color: #b4b4b3;
  font-size: 1vw !important;
  line-height: 1.6;
  margin-bottom: 2vw;
  text-align: left;
  margin: 1.5vw 0;
}
@media (max-width: 768px) {
  .reviews .review-card .review-text {
    font-size: 4vw !important;
    margin-bottom: 5vw;
  }
}
.reviews .review-card .reviewer {
  display: flex;
  align-items: center;
  text-align: left;
  background-color: #414042;
  margin: 0 calc(-1vw - 1px);
  margin-bottom: -1px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 1.5vw;
  margin-top: auto;
}
@media (max-width: 768px) {
  .reviews .review-card .reviewer {
    margin: 0 calc(-5vw - 1px);
    margin-bottom: -1px;
    margin-top: auto;
    padding: 4vw;
  }
}
.reviews .review-card .reviewer .reviewer-avatar {
  width: 4vw;
  height: 4vw;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5vw;
}
@media (max-width: 768px) {
  .reviews .review-card .reviewer .reviewer-avatar {
    width: 12vw;
    height: 12vw;
    margin-right: 3vw;
  }
}
.reviews .review-card .reviewer .reviewer-info h4 {
  margin: 0;
  font-size: 1vw;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 768px) {
  .reviews .review-card .reviewer .reviewer-info h4 {
    font-size: 4vw;
  }
}
.reviews .review-card .reviewer .reviewer-info p {
  margin: 0.2vw 0 0;
  color: #82817f;
  font-size: 1vw !important;
}
@media (max-width: 768px) {
  .reviews .review-card .reviewer .reviewer-info p {
    font-size: 3.5vw !important;
  }
}

@media (max-width: 768px) {
  .wau-space {
    padding-left: 0;
    padding-right: 0;
  }
}
.wau-space .wau-space-con {
  margin-top: 3vw;
}
.wau-space .wau-space-con .wau-space-item {
  position: relative;
  margin: 0.5vw;
}
@media (max-width: 768px) {
  .wau-space .wau-space-con .wau-space-item {
    margin: 1.5vw;
    height: 80vw !important;
    overflow: hidden;
  }
  .wau-space .wau-space-con .wau-space-item img {
    height: 100%;
    width: auto;
  }
}
.wau-space .wau-space-con .wau-space-item p {
  position: absolute;
  width: 100%;
  top: 2vw;
}
.wau-space .wau-space-con .wau-space-item.slick-current::after {
  background-color: rgba(0, 0, 0, 0);
}
.wau-space .wau-space-con .wau-space-item::before, .wau-space .wau-space-con .wau-space-item::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.wau-space .wau-space-con .wau-space-item::before {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
}
.wau-space .wau-space-con .wau-space-item::after {
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.8);
}
.wau-space .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 3vw;
  height: 3vw;
  color: #73777a;
  border: none;
  font-size: 0;
}
@media (max-width: 768px) {
  .wau-space .slick-arrow {
    width: 10vw;
    height: 10vw;
  }
}
.wau-space .slick-arrow::before {
  font-size: 3vw;
}
@media (max-width: 768px) {
  .wau-space .slick-arrow::before {
    font-size: 10vw;
  }
}
.wau-space .slick-arrow.slick-prev {
  left: 1vw;
}
@media (max-width: 768px) {
  .wau-space .slick-arrow.slick-prev {
    left: 4vw;
  }
}
.wau-space .slick-arrow.slick-next {
  right: 1vw;
}
@media (max-width: 768px) {
  .wau-space .slick-arrow.slick-next {
    right: 4vw;
  }
}
@media (min-width: 768px) {
  .wau-space .slick-arrow:hover:before {
    color: #f47d2a;
  }
}

.cta {
  display: inline-block;
  background-color: #30bebc;
  color: #fff;
  padding: 0.5vw 2vw;
  text-decoration: none;
  border-radius: 50vw;
  font-size: 2vw;
  font-weight: 600;
  margin-top: 4vw;
  border: 2px solid #30bebc;
}
@media (max-width: 768px) {
  .cta {
    font-size: 4vw;
    padding: 2vw 6vw;
  }
}
@media (min-width: 768px) {
  .cta:hover {
    background-color: transparent;
    color: #30bebc;
  }
}

.adjust .kontainer > div {
  margin-top: 3vw;
}
.adjust .kontainer .mobile .top {
  margin-right: -12vw;
  margin-bottom: 6vw;
}
.adjust .kontainer .mobile .bottom {
  margin-left: -12vw;
}

.dimensions .kontainer .bottom {
  margin-top: 3vw;
}
@media (max-width: 768px) {
  .dimensions .kontainer {
    margin-top: 10vw;
  }
}

.secure .kontainer .secure-con {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3vw;
}
@media (max-width: 768px) {
  .secure .kontainer .secure-con {
    flex-direction: column;
  }
}
.secure .kontainer .secure-con .left {
  width: 40%;
  padding-right: 10%;
  border-right: 0.3vw solid #f47d2a;
  margin-right: 5%;
}
@media (max-width: 768px) {
  .secure .kontainer .secure-con .left {
    width: 100%;
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }
  .secure .kontainer .secure-con .left p {
    margin-top: 0;
    font-size: 3vw !important;
    text-align: left;
    margin-left: 4vw;
  }
  .secure .kontainer .secure-con .left {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .secure .kontainer .secure-con .left img {
    width: 30%;
    height: auto;
  }
}
.secure .kontainer .secure-con .right {
  width: 45%;
}
@media (max-width: 768px) {
  .secure .kontainer .secure-con .right {
    width: 100%;
  }
  .secure .kontainer .secure-con .right p {
    font-size: 3vw !important;
  }
}
.secure .kontainer .secure-con .right h4 {
  font-size: 3vw;
  font-weight: 400;
  color: #f47d2a;
}
@media (max-width: 768px) {
  .secure .kontainer .secure-con .right h4 {
    font-size: 7vw;
    font-weight: 700;
    margin: 7vw 0;
  }
}
.secure .kontainer .secure-con .right .cert-con {
  margin-top: 2vw;
  display: flex;
  justify-content: center;
  column-gap: 2vw;
}
@media (max-width: 768px) {
  .secure .kontainer .secure-con .right .cert-con {
    margin-bottom: 7vw;
  }
}
.secure .kontainer .secure-con .right .cert-con img {
  width: 34%;
  background-color: #fff;
  padding: 1vw;
  align-self: flex-end;
}

.ergonomics {
  background-color: #e6e7e8;
}
.ergonomics .kontainer h2 {
  color: #231f20;
  margin-top: 1vw;
}
.ergonomics .kontainer .ergo-con {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 2vw;
  margin-top: 3vw;
}
@media (max-width: 768px) {
  .ergonomics .kontainer .ergo-con {
    flex-direction: column;
    column-gap: 0;
    row-gap: 10vw;
  }
}
.ergonomics .kontainer h4 {
  color: #231f20;
  font-weight: 500;
  font-size: 1.6vw;
  margin-top: 1vw;
}
@media (max-width: 768px) {
  .ergonomics .kontainer h4 {
    font-size: 4vw;
  }
}
.ergonomics .kontainer p {
  color: #231f20;
  font-size: 1.5vw !important;
  margin-top: 0;
}
@media (max-width: 768px) {
  .ergonomics .kontainer p {
    font-size: 3.3vw !important;
    margin-top: 1vw;
  }
}

.ecosystem {
  background-color: #faf6ef;
  padding: 0;
  padding-top: 3vw;
}
.ecosystem .kontainer .layout-con {
  margin-top: 3vw;
  position: relative;
}
.ecosystem .kontainer .layout-con area {
  cursor: pointer;
}
.ecosystem .kontainer .layout-con area:hover {
  outline: 2px solid rgba(255, 0, 0, 0.4);
}
.ecosystem .kontainer .layout-con .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9;
}
.ecosystem .kontainer .layout-con .overlay.active {
  pointer-events: auto;
}
.ecosystem .kontainer .layout-con .overlay h4 {
  font-size: 3vw;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3vw;
}
@media (max-width: 768px) {
  .ecosystem .kontainer .layout-con .overlay h4 {
    font-size: 4vw;
    margin-bottom: 5vw;
  }
}
.ecosystem .kontainer .layout-con .overlay .item {
  position: absolute;
  bottom: 10vh;
  left: 20%;
  width: 60%;
  height: 80vh;
  background-color: RGBA(255, 255, 255, 0.8);
  padding: 2vw;
  border-radius: 3vw;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .ecosystem .kontainer .layout-con .overlay .item {
    padding: 6vw;
    height: auto;
    bottom: unset;
    top: 10vh;
  }
}
.ecosystem .kontainer .layout-con .overlay .item .close {
  position: absolute;
  right: 3vw;
  top: 2vw;
  font-size: 3vw;
  cursor: pointer;
}
.ecosystem .kontainer .layout-con .overlay .item .close:hover {
  color: #30bebc;
}
@media (max-width: 768px) {
  .ecosystem .kontainer .layout-con .overlay .item .close {
    right: 4vw;
    top: 3vw;
  }
}
.ecosystem .kontainer .layout-con .overlay .item .chair-holder {
  display: flex;
  justify-content: center;
  gap: 5vw;
  height: 80%;
  width: auto;
  color: #231f20;
}
@media (max-width: 768px) {
  .ecosystem .kontainer .layout-con .overlay .item .chair-holder {
    flex-direction: column;
    align-items: center;
    gap: 6vw;
    height: auto;
  }
}
.ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair {
  min-width: 30%;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media (max-width: 768px) {
  .ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair {
    min-width: unset;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair.muze img {
    max-height: 36vh;
  }
}
.ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair img {
  width: 100%;
  height: auto;
  min-height: 30vh;
  max-height: 50vh;
  object-fit: contain;
}
@media (max-width: 768px) {
  .ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair img {
    min-height: unset;
    max-height: unset;
  }
}
.ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair h5 {
  width: 100%;
  font-weight: 300;
  font-size: 2.5vw;
  color: #231f20;
  text-align: center;
}
@media (max-width: 768px) {
  .ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair h5 {
    font-size: 4vw;
    margin-top: 3vw;
  }
}
.ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair:hover {
  transform: translateY(-1vw);
}

.faq .kontainer h2 {
  text-align: center;
  color: #231f20;
}
.faq .kontainer .faq-con {
  margin-top: 3vw;
}
.faq .kontainer .faq-con .faq-item {
  margin-bottom: 2vw;
  overflow: hidden;
}
.faq .kontainer .faq-con .faq-item .faq-question {
  position: relative;
  padding-right: 3vw;
  border-bottom: 2px solid #231f20;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 1vw;
}
@media (max-width: 768px) {
  .faq .kontainer .faq-con .faq-item .faq-question {
    padding: 2vw;
    padding-right: 9vw;
  }
}
@media (min-width: 768px) {
  .faq .kontainer .faq-con .faq-item .faq-question:hover {
    background-color: #30bebc;
  }
  .faq .kontainer .faq-con .faq-item .faq-question:hover h3 {
    color: #fff;
  }
  .faq .kontainer .faq-con .faq-item .faq-question:hover .chevron::before {
    border-color: #fff;
  }
}
.faq .kontainer .faq-con .faq-item .faq-question h3 {
  color: #30bebc;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .faq .kontainer .faq-con .faq-item .faq-question h3 {
    font-size: 4vw;
  }
}
.faq .kontainer .faq-con .faq-item .con {
  line-height: 1.3;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq .kontainer .faq-con .faq-item .con ul,
.faq .kontainer .faq-con .faq-item .con ol {
  margin-top: 3vw;
  padding-left: 3vw;
}
.faq .kontainer .faq-con .faq-item .con ul li,
.faq .kontainer .faq-con .faq-item .con ol li {
  font-size: 1.5vw;
  margin-bottom: 1vw;
}
@media (max-width: 768px) {
  .faq .kontainer .faq-con .faq-item .con ul li,
  .faq .kontainer .faq-con .faq-item .con ol li {
    font-size: 3vw;
    margin-bottom: 3vw;
  }
}
.faq .kontainer .faq-con .faq-item .chevron {
  position: absolute;
  right: 2vw;
  top: 40%;
  transform: translateY(-50%);
  width: 2vw;
}
@media (max-width: 768px) {
  .faq .kontainer .faq-con .faq-item .chevron {
    right: 3vw;
    width: 3vw;
  }
}
.faq .kontainer .faq-con .faq-item .chevron::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1vw;
  height: 1vw;
  border-right: 2px solid #231f20;
  border-bottom: 2px solid #231f20;
  transform: rotate(45deg) translateY(-50%);
  transition: transform 0.3s ease;
  box-sizing: content-box;
}
.faq .kontainer .faq-con .faq-item.active .chevron {
  top: 56%;
  transform: translateY(-50%) rotate(-180deg);
}
.faq .kontainer .faq-con .faq-item.active .con {
  padding: 1vw;
  max-height: 1000px; /* Adjust based on your content */
}
@media (max-width: 768px) {
  .faq .kontainer .faq-con .faq-item.active .con {
    padding: 2vw;
  }
}
.faq .kontainer .faq-con .faq-item .con p {
  color: #231f20;
  font-size: 1.5vw !important;
}
@media (max-width: 768px) {
  .faq .kontainer .faq-con .faq-item .con p {
    font-size: 3vw !important;
  }
}

.offices {
  background-color: #f1f2f2;
}
.offices .kontainer h2 {
  font-weight: 300;
  color: #231f20;
}
.offices .kontainer .desc {
  color: #231f20;
  padding: 0 20vw;
}
@media (max-width: 768px) {
  .offices .kontainer .desc {
    padding: 0;
  }
}
.offices .kontainer .offices-con,
.offices .kontainer .other-products {
  display: grid;
  justify-content: center;
  gap: 2vw;
  width: 100%;
}
.offices .kontainer .offices-con {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3vw;
  margin-bottom: 6vw;
}
@media (max-width: 768px) {
  .offices .kontainer .offices-con {
    margin-top: 10vw;
    margin-bottom: 20vw;
    display: flex !important;
    margin-left: -6vw;
    width: 100vw;
  }
}
@media (max-width: 768px) {
  .offices .kontainer .offices-con .office {
    width: 100%;
    margin: 0 2vw;
  }
}
.offices .kontainer .offices-con .office a {
  color: #30bebc;
  text-decoration: underline;
  display: block;
  margin-top: 0.5vw;
  text-align: left;
}
.offices .kontainer .offices-con .office a:hover {
  color: #f47d2a;
}
@media (max-width: 768px) {
  .offices .kontainer .offices-con .office a {
    margin-top: 3vw;
  }
}
.offices .kontainer .other-products {
  margin-top: 3vw;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .offices .kontainer .other-products {
    grid-template-columns: repeat(1, 1fr);
    gap: 10vw;
    margin-top: 6vw;
  }
}
.offices .kontainer .other-products p {
  color: #231f20;
}
.offices .kontainer .other-products p a {
  color: #30bebc;
  text-decoration: underline;
}
.offices .kontainer .other-products p a:hover {
  color: #f47d2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.slick-slider {
  width: 100%;
  margin: 0 auto;
}

.slick-list {
  overflow: visible;
}

.slick-slide {
  box-sizing: border-box;
  height: auto !important;
}
.slick-slide > div {
  outline: none;
}

footer {
  margin-top: 0 !important;
}

.mobile {
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .desktop {
    display: none;
  }
}

.delay-1 {
  transition-delay: 0.2s !important;
}

.delay-2 {
  transition-delay: 0.4s !important;
}

.delay-3 {
  transition-delay: 0.6s !important;
}

.delay-4 {
  transition-delay: 0.8s !important;
}

.customiser-container {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .customiser-container {
    padding-bottom: 6vw;
  }
}
.customiser-container .custcon {
  display: flex;
  justify-content: center;
  gap: 8%;
  margin-top: 6vw;
}
@media (max-width: 768px) {
  .customiser-container .custcon {
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
  }
}
.customiser-container .custcon .chair-preview {
  position: relative;
  width: 30%;
}
@media (max-width: 768px) {
  .customiser-container .custcon .chair-preview {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
  }
  .customiser-container .custcon .chair-preview img {
    padding: 0 25%;
    padding-top: calc(4vw + 48px);
  }
}
.customiser-container .custcon .chair-preview #seat-img,
.customiser-container .custcon .chair-preview #frame-img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
.customiser-container .custcon .chair-preview #seat-img {
  z-index: 9;
}
.customiser-container .custcon .options {
  width: 55%;
}
@media (max-width: 768px) {
  .customiser-container .custcon .options {
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
}
.customiser-container .custcon .options h3 {
  color: #30bebc;
  margin-bottom: 0.5vw;
  font-size: 1.5vw;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .customiser-container .custcon .options h3 {
    font-size: 5vw;
    margin-bottom: -3vw;
    padding-top: 5vw;
  }
}
.customiser-container .custcon .options h3 span {
  display: inline-block;
  width: 2vw;
  height: 2vw;
  background-color: #30bebc;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 2vw;
  margin-right: 1vw;
}
@media (max-width: 768px) {
  .customiser-container .custcon .options h3 span {
    width: 6vw;
    height: 6vw;
    line-height: 6vw;
    font-size: 3vw;
    margin-right: 2vw;
  }
}
.customiser-container .custcon .options .btn-group {
  margin-bottom: 4vw;
}
@media (max-width: 768px) {
  .customiser-container .custcon .options .btn-group {
    flex-wrap: wrap;
  }
}
.customiser-container .custcon .options .btn-group button {
  width: 6vw;
  height: 6vw;
  border-radius: 50%;
  border: 3px solid #fff;
  margin: 0.5vw;
  cursor: pointer;
  background: transparent;
  transition: 0.2s;
  font-size: 0;
  position: relative;
}
@media (max-width: 768px) {
  .customiser-container .custcon .options .btn-group button {
    width: 12vw;
    height: 12vw;
    margin: 2vw;
    margin-top: 6vw;
  }
}
.customiser-container .custcon .options .btn-group button.active {
  border-color: #30bebc !important;
}
.customiser-container .custcon .options .btn-group button::after {
  content: attr(data-value);
  position: absolute;
  left: 50%;
  transform: translateX(calc(-50% - 2px));
  bottom: -2vw;
  font-size: 0.8vw;
  color: #333;
  white-space: nowrap;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .customiser-container .custcon .options .btn-group button::after {
    bottom: -5vw;
    font-size: 2vw;
    transform: translateX(calc(-50% - 0px));
  }
}
.customiser-container .custcon .options .btn-group[data-type=frame] button[data-value=black] {
  background: #000;
  border-color: #000;
}
.customiser-container .custcon .options .btn-group[data-type=frame] button[data-value=white] {
  background: #fff;
  border-color: #000;
}
.customiser-container .custcon .options .btn-group[data-type=material] button {
  border-radius: 0;
  background-size: 100%;
  background-position: center;
}
.customiser-container .custcon .options .btn-group[data-type=material] button[data-value=thermoplastic] {
  border-color: #fff;
  background-image: url("https://www.merryfair.com/wp-content/themes/bdid/landing-page/wau/images/customisation/material_thermoplastic.webp");
}
.customiser-container .custcon .options .btn-group[data-type=material] button[data-value=mesh] {
  border-color: #fff;
  background-image: url("https://www.merryfair.com/wp-content/themes/bdid/landing-page/wau/images/customisation/material_network_mesh.webp");
}
.customiser-container .custcon .options .btn-group[data-type=material] button[data-value=fabric] {
  border-color: #fff;
  background-image: url("https://www.merryfair.com/wp-content/themes/bdid/landing-page/wau/images/customisation/material_bloom _fabric.webp");
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=orange] {
  background: #f47d2a;
  border-color: #f47d2a;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=gray] {
  background: #6d6d6f;
  border-color: #6d6d6f;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=charcoal] {
  background: #58595b;
  border-color: #58595b;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=snowy] {
  background: #d1d3d4;
  border-color: #d1d3d4;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=royal-blue] {
  background: #16489b;
  border-color: #16489b;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=green] {
  background: #6b701c;
  border-color: #6b701c;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=mandarin] {
  background: #f47d2a;
  border-color: #f47d2a;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=deep-red] {
  background: #9e171b;
  border-color: #9e171b;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=black] {
  background: #000;
  border-color: #000;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=slate-grey] {
  background: #6d6d6f;
  border-color: #6d6d6f;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=navy-blue] {
  background: #30318a;
  border-color: #30318a;
}
.customiser-container .custcon .options .btn-group[data-type=colour] button[data-value=mustard] {
  background: #e1d000;
  border-color: #e1d000;
}
.customiser-container .custcon .options .btn-group[data-type=base] button[data-value=black] {
  background: #000;
  border-color: #000;
}
.customiser-container .custcon .options .btn-group[data-type=base] button[data-value=silver] {
  background: #9e9c9d;
  border-color: #9e9c9d;
}
.customiser-container .custcon .options .btn-group[data-type=base] button[data-value=polished] {
  background: #d3d5d6;
  background: linear-gradient(132deg, rgb(211, 213, 214) 19%, rgb(109, 109, 111) 48%, rgb(130, 132, 135) 100%);
  border-color: #d3d5d6;
}

/*# sourceMappingURL=landing-wau.css.map */
