.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.right-0 {
  right: 0;
}

.top-0 {
  top: 0;
}

.p-0 {
  padding: 0 !important;
}

.pl-0 {
  padding: 0 !important;
}

.mb-5 {
  margin-bottom: 1.25vw !important;
}

.mt-2 {
  margin-top: 0.5vw !important;
}

.gap-4 {
  gap: 1vw;
}

.gap-8 {
  gap: 2vw;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) {
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .max-md\:grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.text-center {
  text-align: center;
}

.text-white {
  color: #ffffff;
}

.text-gray-300 {
  background-color: #faf6ef;
}

.text-gray-500 {
  color: #bbb5ac;
}

.text-brown {
  color: #b09873;
}

.text-bigger {
  font-size: 8vw;
}
@media (max-width: 767px) {
  .text-bigger {
    font-size: 20vw;
    line-height: 1.1;
  }
}

.text-big {
  font-size: 4vw;
}
@media (max-width: 767px) {
  .text-big {
    font-size: 7vw;
    line-height: 1.3;
  }
}

.font-bold {
  font-weight: 700;
}

.font-semi {
  font-weight: 500;
}

.font-regular {
  font-weight: 400;
}

.font-light {
  font-weight: 300;
}

.italics {
  font-style: italic;
}

@media (max-width: 767px) {
  .max-md\:w-full {
    width: 100%;
  }
}
.block {
  display: block;
}

.bg-brand-500 {
  background-color: #30bebc;
}

.bg-gray-500 {
  background-color: #bbb5ac;
}

.bg-white-800 {
  background-color: #f2efed;
}

.bg-white {
  background-color: #ffffff;
}

.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: 3vw 3vw;
}
@media (max-width: 767px) {
  main section {
    padding: 10vw 6vw;
  }
}
main section.gray {
  background-color: #73777a;
}
main section.light-gray {
  background-color: #faf6ef;
}
main a {
  text-decoration: none;
}
main img {
  width: 100%;
}
main p {
  margin: 0;
  font-size: 1.8vw;
  line-height: 1.4;
  margin-top: 2vw;
}
@media (max-width: 767px) {
  main p {
    font-size: 4vw;
    line-height: 1.4;
    margin-top: 3vw;
  }
}

.logo {
  width: 20vw;
}
@media (max-width: 767px) {
  .logo {
    width: 50vw;
  }
}

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

@media (max-width: 767px) {
  .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;
}

.cta {
  display: inline-block;
  background-color: #30bebc;
  color: #fff;
  padding: 0.75vw 1.5vw;
  text-decoration: none;
  border-radius: 50vw;
  font-size: 2vw;
  font-weight: 800;
  margin-top: 4vw;
  border: 3px solid #30bebc;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .cta {
    font-size: 4vw;
    padding: 1vw 3vw;
  }
}
.cta.primary:hover {
  border-color: #30bebc;
  color: #30bebc;
}
.cta:hover {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
}

section.hero {
  background-color: #f2efed;
}
@media (max-width: 767px) {
  section.hero {
    padding: 10vw 0;
  }
}
@media (max-width: 767px) {
  section.hero .logo {
    width: 50vw;
    height: auto;
  }
}
@media (min-width: 768px) {
  section.hero .logo {
    position: absolute;
    right: 0.1vw;
    top: 0.1vw;
  }
}
section.hero .kontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  section.hero .kontainer {
    display: grid;
    height: calc(100vh - 3vw);
    grid-template-columns: 2fr 3fr;
  }
}
section.hero .kontainer .hero-img-container {
  width: 100%;
  height: 100%;
  padding-bottom: 5vh;
  min-height: 0;
}
@media (max-width: 767px) {
  section.hero .kontainer .hero-img-container {
    width: 70%;
  }
}
section.hero .kontainer .hero-img-container img {
  height: 100%;
  width: auto;
}
@media (max-width: 767px) {
  section.hero .kontainer .hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
section.hero .product-name {
  color: #b09873;
  font-size: 8.5vw;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 767px) {
  section.hero .product-name {
    margin-top: 10vw;
    font-size: 20vw;
  }
}
@media (max-width: 767px) {
  section.hero h1 {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
}
section.hero .tagline {
  margin: 0 0 5vw;
  text-align: center;
  font-size: 2.8vw;
  line-height: 1.1;
}
@media (max-width: 767px) {
  section.hero .tagline {
    font-size: 6vw;
    font-weight: 400;
    margin-bottom: 10vw;
  }
  section.hero .tagline span {
    font-weight: 300;
  }
}

section.desc {
  padding-top: 2vw;
  padding-bottom: 2vw;
}
section.desc h1 {
  font-size: 3vw;
  text-wrap: balance;
  font-weight: 400;
  padding: 0;
}
@media (max-width: 767px) {
  section.desc h1 {
    font-size: 5vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
}

section.why_ergonomics {
  color: white;
  background-image: url("https://www.merryfair.com/wp-content/themes/bdid/landing-page/zenit/images/zenit/hero-2-1920w.webp");
  background-size: cover;
  text-align: left;
}
@media (min-width: 768px) {
  section.why_ergonomics {
    text-align: center;
  }
}
@media (max-width: 767px) {
  section.why_ergonomics {
    padding-bottom: 0;
    position: relative;
    padding-top: 1.4vw;
    padding-left: 1.4vw;
    aspect-ratio: 40/57;
    color: black;
    background-image: url("https://www.merryfair.com/wp-content/themes/bdid/landing-page/zenit/images/zenit/hero-2-m.webp");
    background-size: contain;
    background-repeat: no-repeat;
  }
}
section.why_ergonomics .kontainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
@media (min-width: 768px) {
  section.why_ergonomics .kontainer .cta {
    margin-bottom: 2vw;
  }
}
@media (max-width: 767px) {
  section.why_ergonomics .kontainer {
    display: flex;
    position: relative;
  }
  section.why_ergonomics .kontainer > div {
    width: 66%;
  }
  section.why_ergonomics .kontainer .cta {
    position: absolute;
    bottom: 10vw;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-wrap: nowrap;
  }
}
section.why_ergonomics h2 {
  font-size: 2.75vw;
}
@media (max-width: 767px) {
  section.why_ergonomics h2 {
    font-size: 4vw;
    font-weight: 600;
  }
}
section.why_ergonomics p {
  font-size: 1.8vw;
}
@media (max-width: 767px) {
  section.why_ergonomics p {
    font-size: 3vw !important;
    line-height: 1.1;
    filter: drop-shadow(0 0 2px white);
  }
}

section.solving {
  padding-right: 0;
}
@media (max-width: 767px) {
  section.solving {
    padding-bottom: 0;
  }
}
section.solving .kontainer {
  display: grid;
  grid-template-columns: 5fr 3fr;
}
@media (max-width: 767px) {
  section.solving .kontainer {
    grid-template-columns: 1fr;
  }
}
section.solving .kontainer .stats-con {
  background-image: url("https://www.merryfair.com/wp-content/themes/bdid/landing-page/zenit/images/zenit/map.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  section.solving .kontainer .stats-con {
    padding-right: 6vw;
  }
}
section.solving .kontainer .stats-con .count {
  font-size: 15vw;
  color: #30bebc;
}
@media (max-width: 767px) {
  section.solving .kontainer .stats-con .count {
    margin-bottom: 1vw !important;
  }
}
@media (min-width: 768px) {
  section.solving .kontainer .stats-con .count {
    font-size: 8.5vw;
    font-weight: 400;
  }
}
section.solving .kontainer .stats-con .desc {
  font-size: 5.6vw;
  text-wrap: balance;
  font-style: italic;
}
@media (min-width: 768px) {
  section.solving .kontainer .stats-con .desc {
    font-size: 3.1vw;
    margin-top: 1vw;
  }
}
@media (max-width: 767px) {
  section.solving .kontainer .stats-con .country {
    margin-top: 4vw;
  }
}
section.solving .kontainer .mesh-pic {
  width: 50%;
}
@media (max-width: 767px) {
  section.solving .kontainer .mesh-pic {
    width: 46%;
    top: 97% !important;
  }
  section.solving .kontainer .mesh-pic img {
    height: auto;
  }
}

section.features {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  section.features {
    padding-top: 0;
    padding-bottom: 0;
  }
}
section.features .rrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1vw;
}
@media (max-width: 767px) {
  section.features .rrow {
    grid-template-columns: 7fr 5fr;
  }
  section.features .rrow .mobile-span-2 {
    grid-column: span 2;
  }
  section.features .rrow .mobile-span-2.content {
    padding-left: 10vw !important;
    padding-right: 4vw !important;
  }
  section.features .rrow .mobile-span-2.img {
    height: 60vw;
  }
  section.features .rrow .mobile-span-2.img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
section.features .rrow:nth-child(odd) .content {
  text-align: right;
  padding-right: 2vw;
}
section.features .rrow:nth-child(even) .content {
  order: 1;
  padding-left: 5vw;
  padding-right: 5vw;
}
@media (max-width: 767px) {
  section.features .rrow.mobile-left-20-percent .img {
    transform: translateX(-20%);
  }
  section.features .rrow.mobile-left-20-percent .img img {
    width: 120%;
  }
  section.features .rrow.mobile-left-20-percent .content {
    transform: translateX(-5%) translateY(20%);
    padding-bottom: 30vw !important;
  }
}
section.features .rrow .content {
  background: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 5vw;
  padding-bottom: 5vw;
}
@media (max-width: 767px) {
  section.features .rrow .content {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
  section.features .rrow .content:not(.mobile-span-2) {
    background-color: transparent;
    z-index: 2;
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
}
section.features .rrow .content .title {
  font-size: 4vw;
  font-weight: 700;
  margin-bottom: 3.5vw;
}
@media (min-width: 768px) {
  section.features .rrow .content .title {
    font-size: 2.75vw;
    margin-bottom: 2vw;
  }
}
section.features .rrow .content .desc {
  font-size: 2.8vw;
  font-weight: 500;
  text-wrap: balance;
}
@media (min-width: 768px) {
  section.features .rrow .content .desc {
    font-size: 1.9vw;
  }
}
section.features .rrow .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  section.features .rrow .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
}

section.product-intro h2 {
  font-size: 7vw;
}
@media (min-width: 768px) {
  section.product-intro h2 {
    font-size: 3.5vw;
  }
}
section.product-intro h3 {
  font-size: 6vw;
}
@media (max-width: 767px) {
  section.product-intro h3 {
    margin-top: 2vw;
    margin-bottom: 2.5vw;
  }
}
@media (min-width: 768px) {
  section.product-intro h3 {
    font-size: 3vw;
  }
}
section.product-intro p {
  font-size: 3vw;
}
@media (min-width: 768px) {
  section.product-intro p {
    font-size: 2vw;
  }
}
section.product-intro .desc {
  padding-right: 4vw;
}
@media (max-width: 767px) {
  section.product-intro .desc {
    padding-right: 15vw;
    margin-top: 1vw;
    font-size: 3.3vw !important;
  }
}
section.product-intro .content {
  padding-left: 10vw;
}
@media (max-width: 767px) {
  section.product-intro .content {
    margin-top: 2vw;
    padding-left: 40vw;
    margin-bottom: 15vw;
  }
}
section.product-intro .usp-loop .title {
  font-size: 7vw !important;
}
@media (min-width: 768px) {
  section.product-intro .usp-loop .title {
    font-size: 4.5vw !important;
  }
}
section.product-intro .usp-loop .title {
  color: #b09873;
  font-weight: 600;
}
section.product-intro .usp-loop .desc {
  font-weight: 500;
  padding-right: 5vw;
  margin-top: 1vw;
}

section.leadership_tool {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://www.merryfair.com/wp-content/themes/bdid/landing-page/zenit/images/zenit/08.webp");
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  section.leadership_tool {
    height: 150vh;
  }
}
@media (max-width: 767px) {
  section.leadership_tool {
    aspect-ratio: 1/1;
    background-size: 160%;
    background-position: right;
    grid-template-columns: 1fr;
    position: relative;
  }
  section.leadership_tool:before {
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.7) 100%);
    height: 100%;
    width: 100%;
    z-index: 1;
  }
}
section.leadership_tool .kontainer {
  z-index: 2;
  padding-left: 3.2vw;
  padding-right: 3.2vw;
}
section.leadership_tool .kontainer .title {
  font-size: 3.5vw;
  font-weight: 400;
}
@media (max-width: 767px) {
  section.leadership_tool .kontainer .title {
    font-size: 6vw !important;
    margin-bottom: 5vw;
  }
}
section.leadership_tool .kontainer .title span {
  font-weight: 700;
}
section.leadership_tool .kontainer .desc {
  font-size: 2.5vw;
  font-weight: 600;
}
@media (max-width: 767px) {
  section.leadership_tool .kontainer .desc {
    text-wrap: balance;
    font-size: 4.5vw !important;
  }
}

@media (max-width: 767px) {
  section.comparison {
    background-color: #f2efed;
  }
}
section.comparison h2 {
  text-align: center;
  font-size: 2.8vw;
  font-weight: 600;
}
@media (max-width: 767px) {
  section.comparison h2 {
    font-size: 4.5vw;
    font-weight: 500;
  }
}
section.comparison table {
  width: 100%;
  margin-top: 3vw;
  margin-bottom: 4vw;
  font-size: 2vw;
}
@media (max-width: 767px) {
  section.comparison table {
    font-size: 2.2vw;
  }
}
section.comparison table {
  border-collapse: collapse;
  font-weight: 500;
}
section.comparison table thead {
  font-weight: 700;
  border-bottom: 2px solid rgba(176, 152, 115, 0.2);
}
@media (max-width: 767px) {
  section.comparison table thead {
    border-width: 1px;
  }
}
section.comparison table tbody tr:nth-child(even) {
  background: rgba(176, 152, 115, 0.2);
}
section.comparison table td {
  padding: 1vw;
}

section.dimension {
  padding-top: 6vw;
}
@media (min-width: 768px) {
  section.dimension {
    background: #f2efed;
  }
}
@media (max-width: 767px) {
  section.dimension {
    padding-top: 14vw;
    padding-bottom: 0;
  }
}
section.dimension .flex-container {
  display: flex;
  flex-direction: column;
  gap: 8vw;
}
section.dimension h2 {
  font-size: 3.3vw;
  font-weight: 500;
  padding-left: 2vw;
  padding-right: 2vw;
}
@media (max-width: 767px) {
  section.dimension h2 {
    font-size: 4.5vw;
    margin-bottom: 2vw;
  }
}
section.dimension img {
  padding: 4vw 2vw 4vw 6vw;
}
@media (max-width: 767px) {
  section.dimension img {
    padding: 4vw 0 4vw 8vw;
  }
}

section.ecosystem {
  background-color: #faf6ef;
  padding-left: 6vw;
  padding-right: 6vw;
}
section.ecosystem .kontainer .header {
  padding: 2vw;
  text-align: center;
}
section.ecosystem .kontainer .header h2 {
  font-size: 4vw;
  color: #b09873;
}
@media (max-width: 767px) {
  section.ecosystem .kontainer .header h2 {
    font-size: 6vw;
  }
}
section.ecosystem .kontainer .header p {
  font-weight: 500;
}
@media (max-width: 767px) {
  section.ecosystem .kontainer .header p {
    font-size: 3.8vw !important;
    margin-bottom: 8vw;
  }
}
section.ecosystem .kontainer .header h3 {
  margin-top: 1vw;
  font-size: 6vw;
  font-weight: 600;
}
@media (max-width: 767px) {
  section.ecosystem .kontainer .header h3 {
    font-size: 6vw !important;
  }
}
section.ecosystem .kontainer .header .logo {
  margin-top: 4vw;
  margin-left: auto;
  margin-right: auto;
  width: 28vw;
}
@media (max-width: 767px) {
  section.ecosystem .kontainer .header .logo {
    width: 40vw;
    height: auto;
  }
}
section.ecosystem .kontainer .layout-con {
  margin-top: 3vw;
  position: relative;
}
section.ecosystem .kontainer .layout-con area {
  cursor: pointer;
}
section.ecosystem .kontainer .layout-con area:hover {
  outline: 2px solid rgba(255, 0, 0, 0.4);
}
section.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;
}
section.ecosystem .kontainer .layout-con .overlay.active {
  pointer-events: auto;
}
section.ecosystem .kontainer .layout-con .overlay h4 {
  font-size: 3vw;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3vw;
}
@media (max-width: 767px) {
  section.ecosystem .kontainer .layout-con .overlay h4 {
    font-size: 4vw;
    margin-bottom: 5vw;
  }
}
section.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: 767px) {
  section.ecosystem .kontainer .layout-con .overlay .item {
    padding: 6vw;
    height: auto;
    bottom: unset;
    top: 10vh;
  }
}
section.ecosystem .kontainer .layout-con .overlay .item .close {
  position: absolute;
  right: 3vw;
  top: 2vw;
  font-size: 3vw;
  cursor: pointer;
}
section.ecosystem .kontainer .layout-con .overlay .item .close:hover {
  color: #30bebc;
}
@media (max-width: 767px) {
  section.ecosystem .kontainer .layout-con .overlay .item .close {
    right: 4vw;
    top: 3vw;
  }
}
section.ecosystem .kontainer .layout-con .overlay .item .chair-holder {
  display: flex;
  justify-content: center;
  gap: 5vw;
  height: 80%;
  width: auto;
  color: #231f20;
}
@media (max-width: 767px) {
  section.ecosystem .kontainer .layout-con .overlay .item .chair-holder {
    flex-direction: column;
    align-items: center;
    gap: 6vw;
    height: auto;
  }
}
section.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: 767px) {
  section.ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair {
    min-width: unset;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  section.ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair.muze img {
    max-height: 36vh;
  }
}
section.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: 767px) {
  section.ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair img {
    min-height: unset;
    max-height: unset;
  }
}
section.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: 767px) {
  section.ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair h5 {
    font-size: 4vw;
    margin-top: 3vw;
  }
}
section.ecosystem .kontainer .layout-con .overlay .item .chair-holder .chair:hover {
  transform: translateY(-1vw);
}

.faq {
  background-color: #f2efed;
}
.faq .kontainer h2 {
  text-align: center;
  color: #231f20;
  font-weight: 500;
  font-size: 3vw;
}
@media (max-width: 767px) {
  .faq .kontainer h2 {
    font-size: 5vw;
  }
}
.faq .kontainer .faq-con {
  margin-top: 3vw;
}
.faq .kontainer .faq-con .faq-item {
  background: #ffffff;
  margin-bottom: 1.5vw;
  overflow: hidden;
}
.faq .kontainer .faq-con .faq-item p {
  margin-top: 0;
}
.faq .kontainer .faq-con .faq-item .faq-question {
  position: relative;
  padding: 1vw;
  padding-right: 3vw;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (max-width: 767px) {
  .faq .kontainer .faq-con .faq-item .faq-question {
    padding: 2vw;
    padding-right: 9vw;
  }
}
.faq .kontainer .faq-con .faq-item .faq-question h3 {
  color: #30bebc;
  font-size: 1.6vw;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq .kontainer .faq-con .faq-item .faq-question h3 {
    font-size: 2.8vw;
  }
}
.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: 767px) {
  .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%) scale(0.7);
  width: 2vw;
}
@media (max-width: 767px) {
  .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) scale(0.7);
}
.faq .kontainer .faq-con .faq-item.active .con {
  padding: 1vw;
  max-height: 1000px; /* Adjust based on your content */
}
@media (max-width: 767px) {
  .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: 767px) {
  .faq .kontainer .faq-con .faq-item .con p {
    font-size: 3vw !important;
  }
}

* {
  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;
}

.customiser-container {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .customiser-container {
    padding-bottom: 6vw;
  }
}
.customiser-container .custcon {
  display: flex;
  justify-content: center;
  gap: 8%;
  margin-top: 6vw;
}
@media (max-width: 767px) {
  .customiser-container .custcon {
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
  }
}
.customiser-container .custcon .chair-preview {
  position: relative;
  width: 35%;
  margin-left: 10%;
  min-height: 54vw;
}
@media (max-width: 767px) {
  .customiser-container .custcon .chair-preview {
    margin-left: 0;
    width: 100%;
    background: #fff;
    min-height: 128vw;
    position: sticky;
    top: 0;
    z-index: 99;
  }
  .customiser-container .custcon .chair-preview img {
    padding: 0 10%;
    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%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
}
@media (max-width: 767px) {
  .customiser-container .custcon .options {
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
}
.customiser-container .custcon .options .label {
  font-size: 2vw;
  font-weight: 500;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .customiser-container .custcon .options .label {
    font-size: 4vw !important;
  }
}
.customiser-container .custcon .options h3 {
  color: #30bebc;
  margin-bottom: 0.5vw;
  font-size: 3vw;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .customiser-container .custcon .options h3 {
    font-size: 6vw;
    margin-bottom: -3vw;
    padding-top: 5vw;
    text-align: center;
  }
}
.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: 767px) {
  .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 (min-width: 768px) {
  .customiser-container .custcon .options .btn-group {
    width: 50%;
    display: inline;
  }
}
@media (max-width: 767px) {
  .customiser-container .custcon .options .btn-group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.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: 767px) {
  .customiser-container .custcon .options .btn-group button {
    width: 12vw;
    height: 12vw;
    margin: 1vw;
    margin-top: 6vw;
  }
}
.customiser-container .custcon .options .btn-group button.active {
  border-color: #30bebc !important;
}
.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=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;
}
@media (max-width: 767px) {
  .customiser-container .custcon .options .cta {
    align-self: center;
  }
}

section.cert {
  padding-top: 5vw;
  padding-bottom: 5vw;
}
section.cert .title {
  font-size: 2.5vw;
  font-weight: 600;
}
@media (max-width: 767px) {
  section.cert .title {
    font-size: 3.5vw;
    font-weight: 700;
  }
}
section.cert .desc {
  font-size: 2vw;
}
section.cert .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1vw;
}
@media (max-width: 767px) {
  section.cert .grid-container {
    grid-template-columns: 1fr;
    gap: 2vw;
  }
}
section.cert .card {
  padding: 2vw;
  background: white;
}
@media (max-width: 767px) {
  section.cert .card {
    padding: 4vw;
  }
  section.cert .card .content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 1vw;
    align-items: start;
    margin-top: 4vw;
  }
}
section.cert .card .img-container {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  align-items: center;
  margin-top: 4vw;
  margin-bottom: 4vw;
}
section.cert .card .img-container .fifty-logo {
  width: 50%;
}
@media (max-width: 767px) {
  section.cert .card .img-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  section.cert .card .img-container .bifma-logo {
    width: 80%;
    margin-bottom: 2vw;
  }
  section.cert .card .img-container .fifty-logo {
    width: 75%;
  }
}
section.cert .card img {
  width: 70%;
  height: auto;
}
@media (max-width: 767px) {
  section.cert .card img {
    width: 90%;
  }
}
section.cert .card .desc {
  text-wrap: balance;
  padding-left: 1vw;
  padding-right: 1vw;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 767px) {
  section.cert .card .desc {
    font-size: 3.2vw !important;
    text-align: left;
  }
}

section.five-features {
  padding-top: 4vw;
}
section.five-features .header {
  text-align: center;
}
section.five-features .header h2 {
  color: #b09873;
  font-weight: 600;
  font-size: 5vw;
}
@media (max-width: 767px) {
  section.five-features .header h2 {
    font-size: 7.5vw;
  }
}
section.five-features .header h3 {
  font-size: 4vw;
  margin-top: 1vw;
  font-weight: 400;
}
@media (max-width: 767px) {
  section.five-features .header h3 {
    font-size: 5vw;
    margin-top: 2vw;
    margin-bottom: 3vw;
  }
}
section.five-features .header p {
  font-weight: 500;
  font-size: 2.1vw;
}
@media (max-width: 767px) {
  section.five-features .header p {
    font-size: 3vw !important;
  }
}
section.five-features .masonry_grid {
  margin-top: 8vw;
}
section.five-features .masonry_grid > * {
  user-select: none;
}
@media (min-width: 768px) {
  section.five-features .masonry_grid {
    margin-top: 12vw;
  }
}
section.five-features .masonry_grid {
  display: grid;
  grid-template-areas: "a a a a a a b b b b b" "a a a a a a b b b b b" "a a a a a a b b b b b" "a a a a a a c c c c c " "e e e d d d c c c c c" "e e e d d d c c c c c";
}
@media (max-width: 767px) {
  section.five-features .masonry_grid {
    grid-template-areas: "a a a a a a a b b b b" "a a a a a a a b b b b" "a a a a a a a b b b b" "a a a a a a a c c c c " "e e e e d d d c c c c" "e e e e d d d c c c c";
  }
}
section.five-features .masonry_grid {
  gap: 1vw;
}
section.five-features .masonry_grid > div {
  position: relative;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
}
section.five-features .masonry_grid > div .background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
section.five-features .masonry_grid > div .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4vw;
  height: 4vw;
}
@media (max-width: 767px) {
  section.five-features .masonry_grid > div .arrow {
    width: 8vw;
    height: 8vw;
  }
}
section.five-features .masonry_grid > div .arrow {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 2;
}
section.five-features .masonry_grid > div .arrow::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("https://www.merryfair.com/wp-content/themes/bdid/landing-page/zenit/images/zenit/pointer.webp");
  background-size: contain;
}
section.five-features .masonry_grid > div .active .background, section.five-features .masonry_grid > div:hover .background {
  transform: scale(1.01);
}
section.five-features .masonry_grid > div .active .card_overlay, section.five-features .masonry_grid > div:hover .card_overlay {
  opacity: 1;
}
section.five-features .masonry_grid > div .active .arrow, section.five-features .masonry_grid > div:hover .arrow {
  opacity: 0;
}
section.five-features .masonry_grid > div .card_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
section.five-features .masonry_grid > div .card_overlay .content {
  height: 100%;
  width: 100%;
  padding: 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  color: #ffffff;
  top: 0;
  right: 0;
  z-index: 3;
}
section.five-features .masonry_grid > div .card_overlay .content .title {
  font-size: 2.8vw;
  display: flex;
  gap: 1vw;
  align-items: baseline;
  font-weight: 400;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  section.five-features .masonry_grid > div .card_overlay .content .title {
    font-size: 2vw;
  }
}
section.five-features .masonry_grid > div .card_overlay .content .title .number {
  font-size: 3.8vw;
}
@media (max-width: 767px) {
  section.five-features .masonry_grid > div .card_overlay .content .title .number {
    font-size: 3.8vw;
  }
}
section.five-features .masonry_grid > div .card_overlay .content .desc {
  font-size: 1.6vw;
  padding-left: 3.8vw;
}
@media (max-width: 767px) {
  section.five-features .masonry_grid > div .card_overlay .content .desc {
    font-size: 1.7vw;
    padding-left: 0;
  }
}

section.req_demo .kontainer {
  display: grid;
  grid-template-columns: 4fr 8fr;
}
@media (max-width: 767px) {
  section.req_demo .kontainer {
    grid-template-columns: 1fr;
  }
}
section.req_demo .kontainer {
  gap: 2vw;
}
section.req_demo .kontainer h2 {
  font-size: 2vw;
}
@media (max-width: 767px) {
  section.req_demo .kontainer h2 {
    font-size: 3.3vw;
    text-align: center;
  }
}
section.req_demo .kontainer p {
  margin-top: 2vw;
  font-size: 2vw;
  font-weight: 500;
  width: 40ch;
}
@media (max-width: 767px) {
  section.req_demo .kontainer p {
    font-size: 3.3vw !important;
    text-wrap: balance;
    width: 100%;
    text-align: center;
  }
}
section.req_demo .kontainer .buttons {
  display: flex;
  gap: 1.5vw;
  margin-top: 2vw;
  flex-direction: column;
  align-items: start;
}
@media (max-width: 767px) {
  section.req_demo .kontainer .buttons {
    margin-top: 4vw;
    align-items: center;
    gap: 3vw;
  }
}
section.req_demo .kontainer .buttons .cta {
  margin-top: 0;
}

@media (max-width: 767px) {
  section.offices {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  section.offices {
    background-color: #f2efed;
  }
}
section.offices .kontainer h2 {
  font-weight: 700;
  color: #b09873;
  font-size: 4vw;
}
@media (max-width: 767px) {
  section.offices .kontainer h2 {
    font-weight: 600;
    font-size: 5.5vw;
  }
}
section.offices .kontainer .desc {
  color: #231f20;
  text-wrap: balance;
  padding: 0 20vw;
  font-weight: 500;
}
@media (max-width: 767px) {
  section.offices .kontainer .desc {
    padding: 0;
  }
}
section.offices .kontainer .offices-con {
  display: grid;
  justify-content: center;
  gap: 2vw;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3vw;
}
@media (max-width: 767px) {
  section.offices .kontainer .offices-con {
    margin-top: 10vw;
    display: flex !important;
    margin-left: -6vw;
    width: 100vw;
  }
}
@media (max-width: 767px) {
  section.offices .kontainer .offices-con .office {
    width: 100%;
    margin: 0 2vw;
  }
}
section.offices .kontainer .offices-con .office a {
  color: #2e3192;
  text-decoration: underline;
  display: block;
  margin-top: 0.5vw;
  text-align: left;
  font-size: 1.4vw;
}
section.offices .kontainer .offices-con .office a:hover {
  color: #f47d2a;
}
@media (max-width: 767px) {
  section.offices .kontainer .offices-con .office a {
    margin-top: 2vw;
    font-size: 4vw;
  }
}

section.other-solutions {
  padding-left: 9vw;
  padding-right: 9vw;
}
section.other-solutions h2 {
  font-size: 4.25vw;
  color: #b09873;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 767px) {
  section.other-solutions h2 {
    font-size: 7vw;
  }
}
section.other-solutions .other-products {
  display: grid;
  margin-top: 3vw;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-template-areas: "a_pic a_dsc" "a_pic b_pic" "b_dsc b_pic" "c_pic c_dsc" "c_pic d_pic" "d_dsc d_pic";
  row-gap: 0;
  column-gap: 8vw;
}
@media (max-width: 767px) {
  section.other-solutions .other-products {
    grid-template-rows: repeat(4, 1fr);
    grid-template-areas: "a_pic a_dsc" "b_dsc b_pic" "c_pic c_dsc" "d_dsc d_pic";
  }
  section.other-solutions .other-products .product {
    aspect-ratio: 1/1;
  }
}
section.other-solutions .other-products img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
section.other-solutions .other-products .product_desc {
  display: flex;
  align-items: baseline;
  gap: 1vw;
}
section.other-solutions .other-products .product_desc p {
  margin-top: 0;
  font-weight: 600;
}
@media (min-width: 768px) {
  section.other-solutions .other-products .product_desc p {
    font-weight: 500;
  }
}
@media (min-width: 768px) {
  section.other-solutions .other-products .product_desc {
    padding-right: 10vw;
    padding-top: 6vw;
    padding-bottom: 6vw;
  }
}
section.other-solutions .other-products .product_desc.align-right {
  --chevron-angle: -135deg;
  justify-content: flex-end;
  text-align: right;
  padding-left: 0;
}
@media (min-width: 768px) {
  section.other-solutions .other-products .product_desc.align-right {
    padding-left: 10vw;
    padding-right: 0;
  }
}
section.other-solutions .other-products .product_desc .chevron {
  --chevron-height: 1.2vw;
  --container-size: calc(var(--chevron-height) * 1.125);
}
@media (max-width: 767px) {
  section.other-solutions .other-products .product_desc .chevron {
    --chevron-height: 1.6vw;
  }
}
section.other-solutions .other-products .product_desc .chevron {
  width: var(--container-size);
  height: var(--container-size);
  position: relative;
}
section.other-solutions .other-products .product_desc .chevron::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--chevron-height);
  height: var(--chevron-height);
  border-left: 3px solid #231f20;
  border-bottom: 3px solid #231f20;
  transition: transform 0.3s ease;
  box-sizing: content-box;
  transform: rotate(var(--chevron-angle, 45deg)) translateY(50%) translateX(-50%);
}
@media (max-width: 767px) {
  section.other-solutions .other-products .product_desc .chevron::before {
    border-left: 1px solid #231f20;
    border-bottom: 1px solid #231f20;
  }
}
@media (max-width: 767px) {
  section.other-solutions .other-products {
    row-gap: 0;
    column-gap: 7vw;
    margin-top: 6vw;
  }
}
section.other-solutions .other-products p {
  color: #231f20;
}
@media (max-width: 767px) {
  section.other-solutions .other-products p {
    font-size: 2.54vw !important;
  }
}
section.other-solutions .other-products p a {
  color: #2e3192;
  text-decoration: underline;
}
section.other-solutions .other-products p a:hover {
  color: #f47d2a;
}

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