@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Cursive-ExtraLight.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Cursive-ExtraLight.ttf") format("truetype");
  font-display: swap;
  font-weight: 250;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Cursive-Light.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Cursive-Light.ttf") format("truetype");
  font-display: swap;
  font-weight: 300;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Cursive-Regular.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Cursive-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Cursive-Medium.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Cursive-Medium.ttf") format("truetype");
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Cursive-SemiBold.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Cursive-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Cursive-Bold.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Cursive-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Cursive-ExtraBold.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Cursive-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-weight: 800;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Auto-ExtraLight.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Auto-ExtraLight.ttf") format("truetype");
  font-display: swap;
  font-weight: 250;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Auto-Light.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Auto-Light.ttf") format("truetype");
  font-display: swap;
  font-weight: 300;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Auto-Regular.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Auto-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Auto-Medium.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Auto-Medium.ttf") format("truetype");
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Auto-SemiBold.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Auto-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Auto-Bold.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Auto-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: "Geologica";
  src: url("./../../assets/fonts/geologica/Geologica_Auto-ExtraBold.woff2") format("woff2"), url("./../../assets/fonts/new/Geologica_Auto-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-weight: 800;
}
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animated {
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animated.slow {
  animation-duration: calc(var(--animate-duration) * 2);
}

@media print, (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

#back-to-top {
  width: 50px;
  height: 50px;
  bottom: 1.5rem;
  right: 1.5rem;
  padding-bottom: 5px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes show_menu_overlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes show_menu_overlay_close {
  0% {
    opacity: 0.5;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes marqueeScroll-swipper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#header .top-bar-heading p {
  font-size: 16px;
  line-height: 20px;
  padding: 0 10px;
}
#header .only-mobile {
  display: none;
}
@media (max-width: 991px) {
  #header .only-desktop {
    display: none;
  }
  #header .only-mobile {
    display: block;
  }
}

.header-nav .container {
  padding: 0;
}
.header-nav .container .center-nav {
  padding: 0;
}

@media (max-width: 991.98px) {
  #mobile-header-sticky.stuck-down,
  #mobile-header-sticky.stuck-up.visible-stuck-up {
    top: var(--header-nav-h, 0px);
  }
}
#mobile-header .ets_prmn_megamenu .prmn_columns_u {
  visibility: visible !important;
}
#mobile-header #mobile-header-sticky {
  background: #fff;
  border-bottom: 1px solid #F3F3F3;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
}
#mobile-header .col-mobile-btn.col-mobile-btn-search.show .search-widget.show {
  border: none;
}
#mobile-header .mobile-main-bar {
  padding: 0;
}
@media screen and (min-width: 541px) and (max-width: 991px) {
  #mobile-header .mobile-main-bar .col-mobile-btn .ets_prmn_megamenu {
    box-shadow: none;
    padding: 10px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 991px) {
  #mobile-header .mobile-main-bar .col-mobile-btn .ets_prmn_megamenu .ets_prmn_megamenu_content .container .ets_prmn_megamenu_content_content > .block-custom-content .displayB2bCubeSeating {
    display: none;
  }
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul:has(.active) {
  background: #fff;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul:has(.active) .prmn_menus_li_custom.only-mobile.mobile-bottom {
  display: none;
  float: unset;
  pointer-events: none !important;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul {
  top: 56px;
  overflow: hidden;
  -ms-flex-pack: justify;
      justify-content: space-between;
  background-color: #ffffff;
  border-top: 1px solid #F3F3F3;
  background: #F8F6F4;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul > .prmn_menus_li {
  -ms-flex-pack: justify;
      justify-content: space-between;
  text-align: center;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .expand-span {
  width: 65%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  margin-right: 15px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .expand-span .expand-icon {
  display: -ms-flexbox;
  display: flex;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .expand-span .expand-icon::before {
  content: "";
  background-image: url("../../assets/img/filter-back.svg"); /* Replace with actual image path */
  width: 22px; /* Adjust based on the image size */
  height: 22px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
  rotate: 180deg;
  background-size: 100% 100%;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul > li:first-child {
  padding-top: 15px !important;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul li {
  overflow: visible;
  width: 100%;
  background: #fff;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom.only-mobile.mobile-bottom {
  float: left;
  padding-top: 65px;
  pointer-events: none !important;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .displayB2bCubeSeating {
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22.5px; /* 140.625% */
  padding: 15px;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 20px;
  background: #606C6A;
  -ms-flex-line-pack: center;
      align-content: center;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .displayB2bCubeSeating a {
  color: #fff;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .fabric-swatches {
  color: #606C6A;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22.5px; /* 140.625% */
  border: 1px solid #606C6A;
  padding: 10px;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .fabric-swatches a {
  color: #606C6A;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .fabric-swatches img {
  margin-right: 10px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(12%) saturate(281%) hue-rotate(120deg) brightness(87%) contrast(90%);
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .sign-up {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 17px 25px;
  padding-left: 15px;
  padding-top: 0;
  width: 100%;
  margin-bottom: 25px;
  margin-top: 10px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .sign-up img {
  width: 17px;
  padding-top: 5px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .sign-up a {
  color: #606C6A;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  column-gap: 14px;
  -ms-flex-align: center;
      align-items: center;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 150% */
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .sign-up a:after {
  content: "";
  background: url("../../assets/img/user-icon.svg");
  background-size: 100% 100%;
  display: block;
  width: 17px;
  height: 30px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .displayPhoneNumber {
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  #mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .displayPhoneNumber {
    padding-top: 10px;
    line-height: 55px;
  }
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .displayPhoneNumber a {
  color: #606C6A;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 150% */
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .displayPhoneNumber a img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(7%) saturate(512%) hue-rotate(120deg) brightness(91%) contrast(82%);
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .need-quote {
  padding: 0 25px;
  text-align: center;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .need-quote .need-quote-heading {
  font-weight: 700;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .need-quote p {
  margin: 0;
  line-height: 22px;
  font-size: 16px;
  color: #606C6A;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom .need-quote .btn-contact-us {
  padding: 8px;
  width: 100%;
  border-radius: 10px;
  background: #F4896C;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .close_menu {
  display: none !important;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .arrow {
  padding: 15px 25px;
  height: unset;
  right: 25px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .arrow .plus, #mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .arrow .arrow_desktop, #mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .arrow .minus {
  display: none;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .arrow .ets_svg {
  content: "";
  background: url("../../assets/img/arrow-down.svg") no-repeat;
  width: 20px;
  height: 10px;
  display: block;
  filter: brightness(0) saturate(100%) invert(42%) sepia(9%) saturate(406%) hue-rotate(120deg) brightness(92%) contrast(83%);
  transition: transform 0.2s ease-in-out;
  transform: rotate(0deg);
  margin-top: 7px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .arrow .ets_svg.mobile {
  top: 0;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .arrow.opened .ets_svg {
  transform: rotate(180deg);
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul.prmn_has_sub.hover.active:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #383F47;
  bottom: 0;
  z-index: 9;
  height: 100vh;
  opacity: 0;
  animation: show_menu_overlay 400ms;
  animation-fill-mode: forwards;
  pointer-events: none;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li {
  border: none;
  padding: 0 10px 30px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li a {
  color: #606C6A !important;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 54px; /* 337.5% */
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li a span {
  color: #606C6A;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 54px; /* 337.5% */
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul {
  border: none;
  padding-top: 0;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .go-back-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #F3F3F3;
  padding-left: 10px;
  padding-bottom: 10px;
  color: #383838;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px; /* 337.5% */
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .go-back-btn a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  column-gap: 10px;
  font-weight: 600;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .go-back-btn a::before {
  content: "";
  background-image: url("../../assets/img/filter-back.svg"); /* Replace with actual image path */
  width: 22px; /* Adjust based on the image size */
  height: 22px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
  background-size: 100% 100%;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li:has(.guides-image) {
  display: none;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content {
  padding-top: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  text-align: left;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content a:last-child {
  padding-bottom: 0;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content br {
  display: none;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content a {
  padding-bottom: 25px;
  color: #606C6A;
  font-size: 16px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content .ets_prmn_categories li:last-child {
  padding-bottom: 0;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content .ets_prmn_categories li {
  padding-bottom: 25px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content .footstools-menu-type .h2 {
  color: #606C6A;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px; /* 337.5% */
  text-align: left;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content .footstools-menu-type img {
  max-width: 18px;
  margin-right: 10px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content .footstools-menu-type .menu-container .menu-list li {
  text-align: left;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content .footstools-menu-type .menu-container .menu-list li a {
  color: #606C6A;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 50px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content .footstools-menu-type.remaining-colors h2 {
  display: none;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom.only-mobile.mobile-bottom .block-custom-content:has(.displayPhoneNumber) {
  background: #F8F6F4;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom.only-mobile.mobile-bottom .block-custom-content:has(.fabric-swatches) {
  padding-bottom: 35px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom.only-mobile.mobile-bottom .sign-up-contact-us-block {
  background: #F8F6F4;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li_custom.only-mobile.mobile-bottom .sign-up-contact-us-block .sign-up a:after {
  width: 24px;
  height: 24px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .ybc-menu-toggle.opened .ybc-menu-button-toggle_icon {
  margin-right: unset;
  background-image: url("../../assets/img/cross.svg");
  background-size: 100% 100%;
  display: block;
  width: 30px;
  height: 30px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .ybc-menu-toggle.opened .ybc-menu-button-toggle_icon .icon-bar {
  display: none;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .ybc-menu-toggle.opened .ybc-menu-button-toggle_icon .fa-bars {
  display: none;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .ybc-menu-toggle {
  width: -moz-fit-content;
  width: fit-content;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .ybc-menu-toggle .ybc-menu-button-toggle_icon {
  margin-right: unset;
  background-image: url("../../assets/img/mobile-three-bar.svg");
  background-size: 100% 100%;
  display: block;
  width: 30px;
  height: 30px;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .ybc-menu-toggle .ybc-menu-button-toggle_icon .icon-bar {
  display: none;
}
#mobile-header .mobile-main-bar .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .ybc-menu-toggle .ybc-menu-button-toggle_icon .fa-bars {
  display: none;
}
#mobile-header .mobile-main-bar #mobile-btn-search {
  padding-top: 10px;
}
#mobile-header .mobile-main-bar #mobile-btn-search.show .fa-search:before {
  background-image: url("../../assets/img/cross.svg");
}
#mobile-header .mobile-main-bar #mobile-btn-search .fa-search:before {
  content: "";
  background-image: url("/img/cms/search.svg");
  background-size: 100% 100%;
  display: block;
  width: 32px;
  height: 32px;
}
@media (max-width: 540px) {
  #mobile-header .mobile-main-bar #mobile-btn-search .fa-search:before {
    width: 24px;
    height: 24px;
    padding: 0;
  }
}
#mobile-header .mobile-main-bar .col-mobile-btn-account {
  padding-top: 10px;
}
#mobile-header .mobile-main-bar .col-mobile-btn-account .fa-user:before {
  content: "";
  background-image: url("../../assets/img/user-icon.svg");
  display: block;
  background-size: 100% 100%;
  width: 32px;
  height: 32px;
}
#mobile-header .mobile-main-bar .ps-shoppingcart {
  padding-top: 10px;
}
#mobile-header .mobile-main-bar .ps-shoppingcart .fa-shopping-bag:before {
  content: "";
  background-image: url("../../assets/img/footstool-cart-icon.svg");
  display: block;
  background-size: 100% 100%;
  width: 32px;
  height: 32px;
}
#mobile-header #search-widget-mobile {
  padding-bottom: 15px;
}
#mobile-header #search-widget-mobile .search-btn .fa-search:before {
  background-image: url("/img/cms/search.svg") !important;
}
#mobile-header #search-widget-mobile .input-group input:focus {
  border: 2px solid rgb(229, 151, 0);
}
#mobile-header #search-widget-mobile .popular-block {
  margin-top: 40px;
  margin-bottom: 100px;
}
#mobile-header #search-widget-mobile .popular-block span {
  color: #383838;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 54px; /* 385.714% */
}
#mobile-header #search-widget-mobile .popular-block .searches-items .block-custom-content p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}
#mobile-header #search-widget-mobile .popular-block .searches-items .block-custom-content p a {
  border-radius: 50px;
  background: #E5E8E7;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 250;
  color: #383838;
  font-family: "Geologica";
  font-style: normal;
  line-height: 30px; /* 385.714% */
}
#mobile-header #search-widget-mobile form .input-group {
  border-radius: 50px;
  background: #F5F5F5;
  -ms-flex-align: center;
      align-items: center;
}
#mobile-header #search-widget-mobile form .input-group input {
  border-radius: 50px;
  background: #F5F5F5;
  border: unset;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 54px; /* 337.5% */
  padding: 0 32px;
}
#mobile-header #search-widget-mobile form .input-group input:-ms-input-placeholder {
  color: #E5E8E7;
}
#mobile-header #search-widget-mobile form .input-group input::placeholder {
  color: #E5E8E7;
}
#mobile-header #search-widget-mobile form .input-group input:focus {
  border: unset;
}
#mobile-header #search-widget-mobile form .input-group .search-btn {
  position: relative;
  display: -ms-flexbox;
  display: flex;
}
#mobile-header #search-widget-mobile:after {
  animation: show_menu_overlay 0.4s;
  animation-fill-mode: forwards;
  background: #000;
  bottom: 0;
  content: "";
  height: 100vh;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 9;
}
#mobile-header .col-mobile-logo {
  padding-left: 50px;
}
#mobile-header .col-mobile-logo .logo {
  max-width: 128px;
}
#mobile-header .m-nav-btn {
  padding: 0 7px;
}
#mobile-header .prmn_menus_li > a {
  background: #ffffff !important;
  width: 50%;
}
@media screen and (max-width: 380px) {
  #mobile-header .prmn_menus_li > a {
    width: 70%;
  }
}
@media screen and (max-width: 540px) {
  #mobile-header .mobile-main-bar .row-mobile-header {
    height: 56px;
  }
  #mobile-header .mobile-main-bar .col-mobile-btn-account .fa-user:before {
    width: 24px;
    height: 24px;
  }
  #mobile-header .mobile-main-bar .ps-shoppingcart .fa-shopping-bag:before {
    width: 24px;
    height: 24px;
  }
  #mobile-header .ybc-menu-toggle {
    margin-top: 5px;
    padding: 10px;
  }
  #mobile-header .ybc-menu-toggle .ybc-menu-button-toggle_icon {
    width: 25px !important;
    height: 30px !important;
  }
}
#mobile-header .col-mobile-btn .cart-products-count {
  display: none;
}

#studiouspafter-top .usp-row {
  -ms-flex-pack: center;
      justify-content: center;
}
#studiouspafter-top .uspTop-swiper .swiper-button-next {
  display: none;
}
#studiouspafter-top .uspTop-swiper .swiper-button-prev {
  display: none;
}

#header #studiouspafter-top .usp-row {
  -ms-flex-pack: center;
      justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
#header #studiouspafter-top.configuration-styling-css {
  line-height: 33px;
  padding-top: 5px;
  padding-bottom: 4px;
}
#header #studiouspafter-top .container {
  max-width: 1400px;
  margin: auto;
}
#header #studiouspafter-top .container .uspTop-swiper .usp-image img {
  max-width: 65px;
  height: 30px;
}
#header #studiouspafter-top .container .usp-text {
  color: #464646;
  padding-top: 3px;
}
#header #studiouspafter-top .container .usp-text:hover {
  color: #606C6A;
}
#header .header-nav .center-nav {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
#header .header-nav .center-nav .top-usp-slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
#header .header-nav .center-nav .top-usp-slider .swiper-wrapper {
  -ms-flex-align: center;
      align-items: center;
}
#header .header-nav .center-nav .top-usp-slider .swiper-slide.top-usp-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  white-space: nowrap;
  padding: 0 16px;
  font-family: "Geologica";
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  transition: opacity ease-in-out 200ms;
}
#header .header-nav .center-nav .top-usp-slider .swiper-slide.top-usp-item .top-usp-emoji {
  margin-right: 7px;
  font-size: 15px;
}
#header .header-nav .center-nav .top-usp-slider a.top-usp-item:hover {
  opacity: 0.85;
  text-decoration: underline;
}
#header #desktop-header .ps-shoppingcart {
  padding-top: 10px;
}
#header #desktop-header .ps-shoppingcart .blockcart .header-cart-btn .fa-shopping-bag:before {
  content: "";
  background: url("../../assets/img/cart-dark-grey.svg");
  background-size: 100% 100%;
  display: block;
  height: 32px;
  width: 32px;
}
#header #desktop-header .ps-shoppingcart .blockcart .header-cart-btn .fa-shopping-bag:hover:before {
  filter: brightness(0) saturate(100%) invert(41%) sepia(12%) saturate(308%) hue-rotate(120deg) brightness(95%) contrast(83%);
}
#header #desktop-header .ps-shoppingcart .blockcart .header-cart-btn .title {
  display: none;
}
#header #desktop-header .ps-shoppingcart .blockcart .header-cart-btn .fa-shopping-bag {
  display: inline;
}
#header #desktop-header .ps-shoppingcart .blockcart #_desktop_blockcart-content #blockcart-content {
  color: #464646;
  z-index: 9999;
}
#header #desktop-header .ps-shoppingcart .blockcart #_desktop_blockcart-content #blockcart-content .cart-totals {
  border-top: 0;
}
#header #desktop-header .ps-shoppingcart #blockcart {
  display: inline;
}
#header #desktop-header #header-user-btn .header-user-btn .fa-user:before {
  content: "";
  background: url("../../assets/img/user-dark-grey.svg");
  background-size: 100% 100%;
  display: block;
  height: 32px;
  width: 32px;
}
#header #desktop-header #header-user-btn .header-user-btn .fa-user:hover:before {
  filter: brightness(0) saturate(100%) invert(41%) sepia(12%) saturate(308%) hue-rotate(120deg) brightness(95%) contrast(83%);
}
#header #desktop-header #header-user-btn .header-user-btn .title {
  display: none;
}
#header #desktop-header #header-user-btn {
  padding-top: 10px;
}
#header #desktop-header #header-user-btn .fa-user {
  display: inline;
}
#header #desktop-header #header-user-btn .fa-user:before {
  content: "";
  background: url("../../assets/img/user-icon.svg");
  background-size: 100% 100%;
  display: block;
  width: 24px;
  height: 24px;
}
#header #desktop-header .header-search-btn {
  padding-top: 10px;
}
#header #desktop-header .header-search-btn .fa-search {
  display: inline;
}
#header #desktop-header .header-search-btn .fa-search:hover {
  filter: brightness(0) saturate(100%) invert(61%) sepia(58%) saturate(5977%) hue-rotate(139deg) brightness(99%) contrast(80%);
}
#header #desktop-header .header-search-btn .fa-search:before {
  content: "";
  background: url(../../assets/img/footstool-search-icon.svg);
  background-size: 100% 100%;
  display: block;
  width: 30px;
  height: 24px;
  padding-bottom: 52px;
}
@media screen and (min-width: 1000px) {
  #header #desktop-header #desktop-header-container {
    padding-left: 65px;
    padding-right: 65px;
  }
}
#header #desktop-header .header-top {
  padding: 0;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (min-width: 1141px) {
  #header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left {
    padding: 0;
  }
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left #header-search-btn .header-search-btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  max-height: 32px;
  margin-right: 34px;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left #header-search-btn .header-search-btn:before {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/search-dark-grey.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 32px; /* Adjust based on the image size */
  height: 32px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left #header-search-btn .header-search-btn:hover:before {
  filter: brightness(0) saturate(100%) invert(41%) sepia(12%) saturate(308%) hue-rotate(120deg) brightness(95%) contrast(83%);
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left #header-search-btn .header-search-btn .fa {
  width: 32px;
  height: 32px;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left .block-custom-content .fabric-swatches {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 30px;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left .block-custom-content .fabric-swatches:hover a {
  color: #606C6A;
  text-decoration: underline;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left .block-custom-content .fabric-swatches:hover img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(16%) saturate(187%) hue-rotate(120deg) brightness(91%) contrast(99%);
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left .block-custom-content .fabric-swatches img {
  margin-right: 14px;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left .block-custom-content .fabric-swatches a {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-weight: 300;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  line-height: normal;
  transition: unset;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left .block-custom-content .fabric-swatches a:hover {
  color: #606C6A;
  text-decoration: underline;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-left #desktop_logo {
  max-width: 275px;
  max-height: 31px;
}
@media screen and (min-width: 1141px) {
  #header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right {
    padding: 0;
  }
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .header-top-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 24px;
  padding-top: 10px;
  color: #383838;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 141.176% */
  transition: unset;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .header-top-link:hover {
  color: #606C6A;
  text-decoration: underline;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .header-top-link.header-top-link--icon {
  font-size: 22px;
  padding-left: 6px;
  padding-right: 6px;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .header-top-link.header-top-link--icon:hover {
  color: #606C6A;
  text-decoration: none;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .row .block-custom-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .row .block-custom-content p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin: 0;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .row .block-custom-content .displayPhoneNumber {
  margin-right: 17px;
  padding-top: 10px;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .row .block-custom-content .displayPhoneNumber:hover a {
  text-decoration: underline;
  color: #606C6A;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .row .block-custom-content .displayPhoneNumber:hover img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(12%) saturate(281%) hue-rotate(120deg) brightness(87%) contrast(90%);
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .row .block-custom-content .displayPhoneNumber a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 141.176% */
  transition: unset;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .row .block-custom-content .displayPhoneNumber a img {
  margin-right: 10px;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-right .row .block-custom-content .displayPhoneNumber a:hover {
  text-decoration: underline;
  color: #606C6A;
}
#header #desktop-header .header-top #desktop-header-container .align-items-center .col-header-menu {
  padding: 0;
}
#header #desktop-header .ets_prmn_megamenu.prmn_enabled_sticky.stickied {
  top: auto;
}
#header #desktop-header .ets_prmn_megamenu {
  background: #606C6A;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .container {
  padding: 0;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content {
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 65px;
}
@media screen and (min-width: 992px) and (max-width: 1140px) {
  #header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content {
    padding: 0 25px;
  }
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul {
  display: -ms-flexbox;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-pack: center;
      justify-content: center;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul:last-child {
  display: none;
}
@media screen and (min-width: 992px) and (max-width: 1000px) {
  #header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .business-events {
    display: none;
  }
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_has_sub.hover.active:after {
  animation: show_menu_overlay 0.4s;
  animation-fill-mode: forwards;
  background: #383f47;
  bottom: 0;
  content: "";
  height: 100vh;
  left: 0;
  opacity: 0.6 !important;
  pointer-events: none;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 9;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li {
  padding: 0 20px;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li.business-event-left {
  padding: 0;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li:hover {
  background: #F2EFEB;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .expand-span {
  display: none;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li a {
  color: #fff;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li a:hover {
  color: #606C6A;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li a .prmn_menu_content_title {
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 250;
  line-height: 24px;
  font-family: "Geologica";
}
@media screen and (min-width: 769px) {
  #header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li a .prmn_menu_content_title {
    padding: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1140px) {
  #header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li a .prmn_menu_content_title {
    font-size: 15px;
  }
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_arrow {
  display: none;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul {
  width: 100% !important;
  left: 0;
  padding: 0;
  top: calc(100% - 0px);
  display: -ms-flexbox;
  display: flex;
  transition: unset;
  padding-left: 50px;
  padding-right: 50px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border: 0;
  background: #fff;
  border-radius: unset;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .ets-pretty-meun-inner {
  width: 100%;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .ets-pretty-meun-inner .container .prmn-menu-element {
  display: -ms-flexbox;
  display: flex;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .column_size_3 {
  width: unset;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .column_size_3:nth-child(3) {
  width: 150px;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li:last-child:has(.guides-image) {
  -ms-flex: 0 0 fit-content;
      flex: 0 0 fit-content;
  margin-left: auto;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li:not(:last-child) {
  max-width: 250px;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li {
  line-height: 41px;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .ets_prmn_block_content {
  padding: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .ets_prmn_block_content a {
  padding-bottom: 15px;
  color: #383838;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .ets_prmn_block_content > a:last-child {
  padding-bottom: 0;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .ets_prmn_block_content > a:last-child:hover {
  text-decoration: underline;
  color: #606C6A;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .ets_prmn_block_content br {
  display: none;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li {
  min-width: 300px;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .footstools-menu .footstools-menu-type .h2 {
  color: #383838;
  font-family: "Geologica";
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 126.316% */
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .footstools-menu .footstools-menu-type .menu-container .menu-list li img {
  max-width: 19px;
  margin-right: 14px;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .footstools-menu .footstools-menu-type .menu-container .menu-list li a {
  color: #383838;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px; /* 188.235% */
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .footstools-menu .footstools-menu-type .menu-container .menu-list li a:hover {
  color: #606C6A;
  text-decoration: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li .prmn_blocks_ul .prmn_blocks_li .footstools-menu .remaining-colors h2 {
  font-size: 0;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li.column_size_3 {
  margin-right: 15px;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li.column_size_3 .prmn_blocks_ul {
  max-width: 425px;
}
@media screen and (min-width: 992px) and (max-width: 1700px) {
  #header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li.column_size_3 .prmn_blocks_ul {
    max-width: 300px;
  }
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li.column_size_3 .prmn_blocks_ul .prmn_blocks_li {
  margin: 0;
  padding: 0;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li.column_size_3 .prmn_blocks_ul .prmn_blocks_li .ets_prmn_block .ets_prmn_block_content {
  padding: 0;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li.column_size_3 .prmn_blocks_ul .guides-and-advice {
  background: #F8F6F4;
  padding-top: 9.63%;
  padding-bottom: 10.9%;
  height: 100%;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li.column_size_3 .prmn_blocks_ul .guides-and-advice .h4 {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  line-height: 29px; /* 103.571% */
  max-width: 202px;
  margin-left: 55px;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li.column_size_3 .prmn_blocks_ul .guides-and-advice .ets_prmn_block_content {
  color: #383838;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px; /* 188.235% */
  max-width: 202px;
  margin-left: 55px;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul .prmn_columns_li.column_size_2 {
  padding-top: 30px;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .block-custom-content .displayB2bCubeSeating {
  display: none;
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .block-custom-content .displayB2bCubeSeating a {
  color: #fff;
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 141.176% */
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 66px;
  padding: 10px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #383838;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (min-width: 992px) and (max-width: 1140px) {
  #header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .block-custom-content .displayB2bCubeSeating a {
    font-size: 15px;
  }
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .block-custom-content .displayB2bCubeSeating a:hover {
  background: #F2EFEB;
  color: #606C6A;
}
@media screen and (max-width: 1530px) and (min-width: 1380px) {
  #header #desktop-header .col-header-menu .ets_prmn_megamenu_content .prmn_menus_ul .prmn_menus_li a span {
    padding: 14px;
    font-size: 20px;
    font-weight: 600;
  }
  #header #desktop-header .search-widget .input-group input {
    width: 200px;
  }
  #header #desktop-header #desktop_logo a img {
    width: 180px;
  }
}
@media (max-width: 1380px) and (min-width: 1140px) {
  #header #desktop-header .col-header-menu .ets_prmn_megamenu_content .prmn_menus_ul:last-child {
    display: none;
  }
  #header #desktop-header .col-header-menu .ets_prmn_megamenu_content .prmn_menus_ul .prmn_menus_li a span {
    font-size: 16px;
  }
  #header #desktop-header .prmn_menu_content_title {
    padding: 5px;
  }
  #header #desktop-header #desktop_logo a img {
    width: 180px;
  }
}
@media (max-width: 1140px) and (min-width: 999px) {
  #header #desktop-header .col-header-menu .ets_prmn_megamenu_content .prmn_menus_ul:last-child {
    display: none;
  }
  #header #desktop-header .col-header-menu .ets_prmn_megamenu_content .prmn_menus_ul .prmn_menus_li a span {
    font-size: 15px;
  }
  #header #desktop-header .prmn_menu_content_title {
    padding: 5px;
  }
  #header #desktop-header #desktop_logo a img {
    width: 180px;
  }
  #header #desktop-header #desktop-header-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 999px) and (min-width: 991px) {
  #header #desktop-header .col-header-menu .ets_prmn_megamenu_content .prmn_menus_ul:last-child {
    display: none;
  }
  #header #desktop-header .col-header-menu .ets_prmn_megamenu_content .prmn_menus_ul .prmn_menus_li a span {
    font-size: 14px;
  }
}
#header .search-widget {
  padding-top: 10px;
}
#header .search-widget .input-group .fa-search:before {
  content: "";
  background: url("../../assets/img/footstool-search-icon.svg");
  background-size: 100% 100%;
  display: block;
  width: 25px;
  height: 24px;
  padding-bottom: 52px;
}
#header .search-widget .input-group input {
  padding: 20px 65px;
  border: solid 2px #d3d3d3;
  border-radius: 5px;
  font-size: 19px;
}
@media (max-width: 768px) {
  #header .search-widget .input-group input {
    padding: 0 45px;
    height: 40px;
    margin-top: 2px;
  }
}
#header .search-widget .input-group input:-ms-input-placeholder {
  color: #E5E8E7 !important;
  font-family: "Geologica";
  font-weight: 300;
  line-height: 54px;
  opacity: 1;
}
#header .search-widget .input-group input::placeholder {
  color: #E5E8E7 !important;
  font-family: "Geologica";
  font-weight: 300;
  line-height: 54px;
  opacity: 1;
}
#header .search-widget .input-group input:focus {
  border-color: #383838;
  box-shadow: none;
}
#header .search-widget .search-btn {
  left: 0;
  right: unset;
}
@media screen and (min-width: 992px) {
  #header .search-widget .search-btn {
    filter: brightness(0) saturate(100%) invert(85%) sepia(12%) saturate(127%) hue-rotate(125deg) brightness(83%) contrast(90%);
  }
}
@media screen and (min-width: 992px) {
  #header .search-widget .autocomplete-suggestions {
    min-width: 380px;
    margin-top: 4px;
    border-radius: 10px;
    display: block;
  }
}
#header .justify-content-end {
  -ms-flex-align: center;
      align-items: center;
}
#header #header-user-btn .header-user-btn.user-button {
  display: -ms-flexbox;
  display: flex;
  column-gap: 25px;
}
#header #header-user-btn .header-user-btn.user-button .title.customer-name {
  display: block !important;
}
#header #header-user-btn .dropdown-menu {
  z-index: 9999;
}
#header #header-user-btn .dropdown-menu .dropdown-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  column-gap: 10px;
}

@media (max-width: 1199px) and (min-width: 768px) {
  .changestatus.ets_transition_mobile_floating .prmn_menus_ul, .changestatus.ets_transition_mobile_right .prmn_menus_ul {
    max-width: unset;
  }
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul {
  width: 100% !important;
}

#desktop-header .business-event-left {
  margin-left: unset;
}
#desktop-header .business-event-left a {
  color: #fff;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 141.176% */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: left;
      justify-content: left;
  text-align: left;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 5px;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (min-width: 992px) and (max-width: 1140px) {
  #desktop-header .business-event-left a {
    font-size: 15px;
  }
}
#desktop-header .business-event-left > a {
  width: 200px;
  height: 66px;
  padding: 10px;
  -ms-flex-pack: center;
      justify-content: center;
  background: #383838;
}
@media screen and (max-width: 991px) {
  #desktop-header .business-event-left > a {
    -ms-flex-pack: left;
        justify-content: left;
    padding: 0 15px;
  }
}
#desktop-header .business-event-left > a:hover {
  background: #F2EFEB;
  color: #606C6A !important;
}
#desktop-header .business-event-left .expand-span {
  display: none;
}
#desktop-header .business-event-left .prmn_columns_ul.dl-submenu {
  background: transparent !important;
  padding-right: 0 !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  left: unset !important;
  right: unset !important;
  padding-left: 0 !important;
}
#desktop-header .business-event-left .prmn_columns_ul .prmn-menu-element {
  -ms-flex-pack: end;
      justify-content: end;
}
#desktop-header .business-event-left .prmn-menu-element .prmn_columns_li {
  background: #fff;
}
#desktop-header .business-event-left .prmn-menu-element .column_size_3 {
  margin-right: 0 !important;
  padding: 16px;
  padding-top: 30px;
}
#desktop-header .business-event-left .prmn-menu-element .prmn_blocks_li {
  min-width: 100% !important;
}

#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li.business-event-left .prmn_columns_ul {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

@media screen and (min-width: 992px) {
  #footer #footer-container-main {
    padding-top: 61px;
  }
}
#footer #footer-container-main .container {
  width: 95%;
}
@media screen and (min-width: 991px) and (max-width: 1300px) {
  #footer #footer-container-main .block-scontactform {
    -ms-flex: 0 0 45%;
        flex: 0 0 45%;
    max-width: 45%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #footer #footer-container-main .block-scontactform {
    max-width: 100%;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    margin-bottom: 40px;
  }
}
#footer #footer-container-main .block-scontactform .block-content {
  font-size: 21px;
  line-height: 32px;
}
#footer #footer-container-main .block-scontactform .block-content hr {
  display: none;
}
#footer #footer-container-main .block-scontactform .block-content .contact-rich hr {
  display: none;
}
#footer #footer-container-main .block-scontactform .block-content .contact-rich strong {
  display: none;
}
#footer #footer-container-main .block-scontactform .block-content .contact-rich .part .icon {
  display: none;
}
#footer #footer-container-main .block-scontactform .block-content .contact-rich .part .data.email {
  display: none;
}
#footer #footer-container-main .block-scontactform .block-content .part p a {
  font-size: 17px;
}
#footer #footer-container-main .block-slinkblocks .block-content ul li a:before {
  content: "";
}
#footer #footer-container-main .block-slinkblocks .block-content ul > li {
  padding-bottom: 5px;
}
#footer #footer-container-main .block-slinkblocks .block-content ul > li a {
  line-height: 21px;
  padding-left: unset;
}
#footer #footer-container-main .block-slinkblocks .block-content ul > li a:hover {
  text-decoration: underline;
}
#footer #footer-container-main .block-newsletter .block-content .ps-emailsubscription-block .ps-emailsubscription-conditions {
  display: none;
}
#footer #footer-container-main .block-newsletter .block-content .ps-emailsubscription-block .newsletter-input-group {
  height: 53px;
  border: none;
  border-radius: 5px;
}
#footer #footer-container-main .block-newsletter .block-content .ps-emailsubscription-block .newsletter-input-group input {
  padding-left: 20px;
}
#footer #footer-container-main .block-newsletter .block-content .ps-emailsubscription-block .newsletter-input-group input:focus {
  border-color: #0a0a0a;
  box-shadow: none;
}
#footer #footer-container-main .block-newsletter .block-content .ps-emailsubscription-block .btn-subscribe {
  background: #606C6A;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 96px;
}
#footer #footer-container-main .block-newsletter .block-content .ps-emailsubscription-block .btn-subscribe .fa-envelope-o:before {
  content: "JOIN";
  font-family: source-sans-pro, "sans-serif";
}
#footer #footer-container-main .block-newsletter .block-content .ps-emailsubscription-block .btn-subscribe:hover {
  background: #F4896C;
}
#footer #footer-container-main .block-social-links .block-content {
  margin-top: 55px;
}
#footer #footer-container-main .block-social-links .block-content .block-custom-content .footer-extra-icon {
  text-align: end;
  padding-top: 10px;
}
#footer #footer-container-main .block-social-links .block-content .block-custom-content .footer-extra-icon img {
  max-width: 100px;
}
#footer #footer-container-main .block-social-links .social-links a i:hover {
  color: rgba(244, 137, 108, 0.7294117647) !important;
}
#footer #footer-container-main .block-social-links .social-links a:hover i {
  filter: brightness(0) saturate(100%) invert(88%) sepia(83%) saturate(5015%) hue-rotate(160deg) brightness(93%) contrast(76%);
}
#footer #footer-container-main .block-social-links .social-links .youtube a:hover i {
  filter: unset;
}
#footer #footer-container-main .block-title {
  margin-bottom: 24px;
  padding-bottom: unset;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #footer #footer-container-main .block-title {
    text-align: left;
  }
}
#footer #footer-container-main .block {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  #footer #footer-container-main {
    padding-top: 0;
    padding-bottom: unset;
  }
  #footer #footer-container-main .block {
    padding-bottom: 0;
  }
  #footer #footer-container-main .block-title {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 28px;
  }
  #footer #footer-container-main .block-slinkblocks {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
  #footer #footer-container-main .block-slinkblocks .block-content ul > li {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  #footer #footer-container-main .block-scontactform {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
  #footer #footer-container-main .block-scontactform .data {
    font-size: 17px;
    line-height: 30px;
  }
  #footer #footer-container-main .block-scontactform .contact-rich hr {
    display: none;
  }
  #footer #footer-container-main .block-scontactform .contact-rich strong {
    display: none;
  }
  #footer #footer-container-main .col-md-auto {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
  #footer #footer-container-main .block-newsletter .ps-emailsubscription-block .input-group {
    width: 50%;
  }
  #footer #footer-container-main .block-newsletter .ps-emailsubscription-block .btn-subscribe {
    width: 70px !important;
  }
  #footer #footer-container-main .block-social-links .block-content {
    margin-top: 30px !important;
  }
  #footer #footer-container-main .block-social-links .block-content ul > li {
    font-size: 30px;
  }
  #footer #footer-container-main .block-social-links .block-content .block-custom-content .footer-extra-icon {
    text-align: right;
  }
  #footer #footer-container-main .block-social-links .block-content .block-custom-content .footer-extra-icon img {
    max-width: 100px;
  }
  #footer #footer-container-main #studiouspafter-top .usp-row {
    -ms-flex-pack: center;
        justify-content: center;
  }
  #footer #footer-container-main #studiouspafter-top .swiper-button-next {
    display: none;
  }
  #footer #footer-container-main #studiouspafter-top .swiper-button-prev {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  #footer #footer-container-main .block-newsletter .ps-emailsubscription-block .input-group {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  #footer #footer-container-main {
    padding-top: 30px;
    padding-bottom: unset;
  }
}
#footer #footer-container-main .twitter .fa-twitter::before {
  content: "";
  background: url("../img/twitter-icon.svg") no-repeat;
  background-size: 100% 100%;
  display: block;
  width: 50px;
  height: 30px;
  position: relative;
  top: 3px;
  filter: brightness(0) saturate(100%) invert(69%) sepia(75%) saturate(1612%) hue-rotate(315deg) brightness(102%) contrast(91%);
}
#footer #footer-container-main .youtube .fa-youtube::before {
  content: "";
  background: url("../img/icons8-youtube.svg") no-repeat;
  display: block;
  width: 50px;
  height: 40px;
  position: relative;
  top: 5px;
}

#footer-copyrights {
  padding-bottom: 50px;
}
#footer-copyrights .container {
  width: 95%;
}
@media screen and (max-width: 768px) {
  #footer-copyrights .container {
    width: 100%;
  }
}
#footer-copyrights .copyright-img {
  color: #fff;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px; /* 200% */
}
@media screen and (min-width: 575px) and (max-width: 767px) {
  #footer-copyrights .copyright-img img {
    min-width: 70%;
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  #footer-copyrights .copyright-img img {
    max-width: 240px;
  }
}
@media screen and (min-width: 769px) {
  #footer-copyrights .copyright-img img {
    margin-left: 34px;
  }
}
@media screen and (max-width: 768px) {
  #footer-copyrights .copyright-img {
    margin-bottom: 19px;
    -ms-flex-order: 1;
        order: 1;
    font-size: 12px;
    font-weight: 400;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 5px;
  }
}
@media screen and (max-width: 768px) {
  #footer-copyrights .copyright-txt {
    border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
    max-width: 100%;
    text-align: center;
  }
}
#footer-copyrights .copyright-txt p {
  color: #fff;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 250;
  line-height: 32px; /* 200% */
  margin: 0;
}
#footer-copyrights .copyright-txt p a {
  color: #ffffff;
}
#footer-copyrights .copyright-txt p a:hover {
  color: #F4896C;
}
@media screen and (max-width: 768px) {
  #footer-copyrights {
    padding-bottom: 0;
  }
  #footer-copyrights .row {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
  #footer-copyrights .row .copyright-img {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    left: 0;
    color: #F2EFEB;
  }
  #footer-copyrights .row .copyright-img.text-right {
    text-align: left !important;
  }
  #footer-copyrights .row .copyright-txt {
    right: 0;
    padding-bottom: 13px;
    padding-top: 13px;
    color: #F2EFEB;
  }
  #footer-copyrights .row .copyright-txt p {
    font-size: 14px;
    line-height: 10px;
    color: #F2EFEB;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #footer-copyrights .row .copyright-txt p {
    font-family: "Geologica";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    color: #fff;
  }
}

#footer .footer-style-2.newsletter-footer .container {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #footer .footer-style-2 .container .row .block-scontactform {
    margin-bottom: 30px;
  }
}
#footer .footer-style-2 .container .row .block-scontactform .block-title {
  display: none;
}
@media screen and (max-width: 768px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part {
    padding-top: 44px;
  }
}
#footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch {
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch {
    column-gap: 30px;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
#footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch br {
  display: none;
}
@media screen and (min-width: 769px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .img {
    margin-right: 62px;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .img img {
    width: 100px;
    height: 100px;
    filter: brightness(0) saturate(100%) invert(96%) sepia(0%) saturate(6834%) hue-rotate(213deg) brightness(110%) contrast(87%);
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .img {
    margin-right: 0;
  }
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .img img {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .text {
    margin-top: 16px;
  }
}
#footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .text h2 {
  color: #fff;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
@media screen and (max-width: 768px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .text h2 {
    font-size: 24px;
    line-height: 28.2px;
    color: #F2EFEB;
    text-align: left;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .text h2 {
    font-size: 30px;
    line-height: 32.2px;
    text-align: left;
  }
}
#footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .text a {
  color: #fff;
  font-family: "Geologica";
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .text a {
    font-size: 15px;
    line-height: 28.6px;
    color: #F2EFEB;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .text a {
    font-size: 18px;
    line-height: 32.2px;
  }
}
#footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .text a:hover {
  color: #F2EFEB;
}
#footer .footer-style-2 .container .row .block-scontactform .block-content .part .get-in-touch .text .contact-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media screen and (min-width: 992px) {
  #footer .footer-style-2 .container .row .block-slinkblocks:last-child {
    -ms-flex: 0 0 fit-content;
        flex: 0 0 fit-content;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #footer .footer-style-2 .container .row .block-slinkblocks {
    max-width: 250px;
  }
}
#footer .footer-style-2 .container .row .block-slinkblocks .block-title span {
  color: #fff;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 200% */
}
@media screen and (max-width: 768px) {
  #footer .footer-style-2 .container .row .block-slinkblocks .block-title span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    font-size: calc(13px + 0.390625vw);
    line-height: 46px;
    color: #F2EFEB;
  }
}
@media screen and (max-width: 768px) {
  #footer .footer-style-2 .container .row .block-slinkblocks .block-title {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
}
#footer .footer-style-2 .container .row .block-slinkblocks .block-content ul li a {
  color: #fff;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 250;
  line-height: 36px; /* 225% */
}
@media screen and (max-width: 768px) {
  #footer .footer-style-2 .container .row .block-slinkblocks .block-content ul li a {
    font-size: calc(12px + 0.390625vw) !important;
    color: #F2EFEB;
    font-weight: 300;
  }
}
#footer .block-social-links .container {
  width: 95%;
  padding-top: 40px;
  padding-bottom: 40px;
  -ms-flex-pack: end;
      justify-content: end;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #footer .block-social-links .container {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
#footer .block-social-links .container .social-links {
  margin-right: 42px;
}
#footer .block-social-links .container .social-links .facebook .fa-facebook:hover:before {
  background: url("../../assets/img/facebook-dark-green.svg");
}
#footer .block-social-links .container .social-links .facebook .fa-facebook:before {
  content: "";
  background: url("../../assets/img/facebook.svg");
  background-size: 100% 100%;
  display: block;
  height: 41px;
  width: 41px;
}
@media screen and (max-width: 768px) {
  #footer .block-social-links .container .social-links .facebook .fa-facebook:before {
    height: 34px;
    width: 34px;
  }
}
#footer .block-social-links .container .social-links .instagram .fa-instagram:hover:before {
  background: url("../../assets/img/instagram-dark-green.svg");
}
#footer .block-social-links .container .social-links .instagram .fa-instagram:before {
  content: "";
  background: url("../../assets/img/instagram.svg");
  background-size: 100% 100%;
  display: block;
  height: 41px;
  width: 41px;
}
@media screen and (max-width: 768px) {
  #footer .block-social-links .container .social-links .instagram .fa-instagram:before {
    height: 34px;
    width: 34px;
  }
}
#footer .block-social-links .container .social-links .twitter .fa-twitter:hover:before {
  background: url("../../assets/img/twitter-dark-green.svg");
}
#footer .block-social-links .container .social-links .twitter .fa-twitter:before {
  content: "";
  background: url("../../assets/img/twitter.svg");
  background-size: 100% 100%;
  display: block;
  height: 41px;
  width: 41px;
}
@media screen and (max-width: 768px) {
  #footer .block-social-links .container .social-links .twitter .fa-twitter:before {
    height: 34px;
    width: 34px;
  }
}
#footer .block-social-links .container .block-custom-content .footer-extra-icon img {
  max-width: 70px;
}
@media screen and (max-width: 768px) {
  #footer .block-social-links .container .block-custom-content .footer-extra-icon img {
    max-width: 48px;
  }
}
#footer .newsletter-footer {
  background: #F2EFEB;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #footer .newsletter-footer .container .block-newsletter {
    margin-bottom: 0;
  }
}
#footer .newsletter-footer .container .block-newsletter .col-md-7 {
  padding-left: 3.5%;
  padding-top: 3.5vmax;
  padding-bottom: 3.5vmax;
}
@media screen and (max-width: 768px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-7 {
    padding: 28px 15px;
    text-align: center;
    -ms-flex-order: 1;
        order: 1;
    max-width: 100%;
    -ms-flex: 100%;
        flex: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-7 {
    max-width: 50%;
    -ms-flex: 50%;
        flex: 50%;
    padding-top: 3.5vmax;
    padding-bottom: 3.5vmax;
  }
}
@media screen and (min-width: 992px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-7 {
    max-width: 57.2%;
    -ms-flex: 0 0 57.2%;
        flex: 0 0 57.2%;
  }
}
#footer .newsletter-footer .container .block-newsletter .col-md-7 h2 {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-7 h2 {
    font-size: 24px;
    line-height: 28.2px;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-7 h2 {
    font-size: 24px;
    line-height: 30.2px;
    text-align: center;
    margin-bottom: 5px !important;
  }
}
#footer .newsletter-footer .container .block-newsletter .col-md-7 .ps-emailsubscription-block {
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-7 .ps-emailsubscription-block {
    margin-left: 0;
  }
}
#footer .newsletter-footer .container .block-newsletter .col-md-7 .ps-emailsubscription-block form .newsletter-input-group {
  max-width: 695px;
  border: none;
}
#footer .newsletter-footer .container .block-newsletter .col-md-7 .ps-emailsubscription-block form .newsletter-input-group .btn-subscribe {
  background: #383838;
  padding: 0 34px;
  color: #fff;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-7 .ps-emailsubscription-block form .newsletter-input-group .btn-subscribe {
    padding: 0 10px;
  }
}
#footer .newsletter-footer .container .block-newsletter .col-md-7 .ps-emailsubscription-block form .newsletter-input-group .btn-subscribe:hover {
  background: #606C6A;
}
#footer .newsletter-footer .container .block-newsletter .col-md-7 .ps-emailsubscription-block form .newsletter-input-group .input-subscription {
  color: #ABB5B4;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
  box-shadow: none;
  padding: 15px;
}
@media screen and (min-width: 769px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-7 .ps-emailsubscription-block form .newsletter-input-group .input-subscription {
    height: 60px;
  }
}
#footer .newsletter-footer .container .block-newsletter .col-md-7 .ps-emailsubscription-block form .ps-emailsubscription-conditions {
  display: none;
}
#footer .newsletter-footer .container .block-newsletter .col-md-5 {
  padding: 0;
}
@media screen and (max-width: 768px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-5 {
    max-width: 100%;
    -ms-flex: 100%;
        flex: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-5 {
    max-width: 50%;
    -ms-flex: 50%;
        flex: 50%;
  }
}
@media screen and (min-width: 992px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-5 {
    max-width: 42.8%;
    -ms-flex: 0 0 42.8%;
        flex: 0 0 42.8%;
  }
}
#footer .newsletter-footer .container .block-newsletter .col-md-5 .block-custom-content p {
  margin: 0;
}
#footer .newsletter-footer .container .block-newsletter .col-md-5 .block-custom-content img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-5 .block-custom-content img {
    min-height: 220px;
  }
}
#footer .block-scontactform .contact-rich {
  display: none;
}

@media screen and (max-width: 768px) {
  #footer .block-toggle > .block-title span::after {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f107";
    margin-left: 10px;
    font: normal normal normal 14px/1 FontAwesome;
    transition: tranform ease-in-out 300ms;
  }
  #footer .block-toggle._toggled .block-title span::after {
    content: "\f106";
  }
  #footer .block-toggle > .block-title {
    cursor: pointer;
  }
  #footer .block-toggle {
    width: 100%;
  }
  #footer .block-toggle > .block-content {
    display: none;
  }
  #footer .block-toggle._toggled > .block-content {
    display: block;
    margin-bottom: 15px;
  }
  #footer #footer-container-main .block-scontactform {
    max-width: 100%;
  }
}
#contact .breadcrumb {
  display: none;
}
@media screen and (max-width: 575px) {
  #contact .main-row {
    display: block;
  }
}
#contact .page-title {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 42px;
  margin-top: 90px;
  margin-bottom: 0;
  padding-bottom: 15px;
}
@media screen and (max-width: 992px) {
  #contact .page-title {
    font-size: 32px;
    margin-top: 30px;
  }
}
#contact .contact-top-section {
  max-width: 78%;
  margin: auto;
  margin-bottom: 78px;
}
@media screen and (max-width: 738px) {
  #contact .contact-top-section .custom-swiper {
    margin-right: -15px;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  #contact .contact-top-section .col-md-4 {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact-top-section .col-md-4 {
    padding: 0;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  #contact .contact-top-section {
    max-width: 95%;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact-top-section {
    max-width: 100%;
    margin-bottom: 20px;
  }
  #contact .contact-top-section .row {
    row-gap: 25px;
  }
}
#contact .contact-top-section .short-description {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 19px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #contact .contact-top-section .short-description {
    margin-bottom: 30px;
    font-size: 15px;
  }
}
#contact .contact-top-section .info {
  background: #606C6A;
  color: #fff;
  border-top: 11px solid #ABB5B4;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  padding: 30px 0 47px;
  height: 100%;
}
#contact .contact-top-section .info a {
  color: #fff;
  font-family: "Geologica";
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  #contact .contact-top-section .info a {
    font-size: 15px;
  }
}
#contact .contact-top-section .info p {
  margin-bottom: 0;
  font-family: "Geologica";
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  max-width: 44%;
}
@media screen and (max-width: 992px) {
  #contact .contact-top-section .info p {
    font-size: 15px;
  }
}
#contact .contact-top-section .info span {
  color: #fff;
  font-family: "Geologica";
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}
@media screen and (max-width: 992px) {
  #contact .contact-top-section .info span {
    font-size: 15px;
    line-height: normal;
  }
}
#contact .contact-top-section .info img {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #contact .contact-top-section .info img {
    margin-bottom: 20px;
  }
}
#contact #module-sd_customform-display {
  margin: 0;
  background: transparent;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  #contact #module-sd_customform-display .container {
    padding: 0;
  }
}
#contact #module-sd_customform-display .form-header {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #contact #module-sd_customform-display .form-header {
    margin-bottom: 25px;
  }
}
#contact #module-sd_customform-display .form-header h2 {
  padding-top: 0;
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px;
  margin-bottom: 18px;
}
@media screen and (max-width: 992px) {
  #contact #module-sd_customform-display .form-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
#contact #module-sd_customform-display .form-header p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 19px;
  font-style: normal;
  font-weight: 250;
  line-height: 25.5px;
  padding: 0;
}
@media screen and (max-width: 526px) {
  #contact #module-sd_customform-display .form-header p {
    font-size: 15px;
  }
}
#contact #module-sd_customform-display .form-container .sd_form-group {
  background: #F5F5F5;
  border-radius: 0;
  padding: 72px 120px 0;
}
@media screen and (min-width: 992px) and (max-width: 1500px) {
  #contact #module-sd_customform-display .form-container .sd_form-group {
    padding: 50px;
    max-width: 80%;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #contact #module-sd_customform-display .form-container .sd_form-group {
    padding: 40px;
  }
}
@media screen and (min-width: 575px) and (max-width: 768px) {
  #contact #module-sd_customform-display .form-container .sd_form-group {
    padding: 40px;
  }
}
@media screen and (max-width: 575px) {
  #contact #module-sd_customform-display .form-container .sd_form-group {
    padding: 25px;
  }
}
#contact #module-sd_customform-display .form-container .sd_form-group .form-control-select {
  border-radius: 0;
  border: 1px solid #DEDEDE;
  color: #383838;
}
#contact #module-sd_customform-display .form-container .sd_form-group .form-control {
  color: #383838;
}
@media screen and (max-width: 575px) {
  #contact #module-sd_customform-display .form-container .sd_form-group .form-control {
    padding: 8px 20px !important;
  }
}
#contact #module-sd_customform-display .form-container .sd_form-group input {
  border-radius: 0;
  border: 1px solid #DEDEDE;
  color: #383838;
}
#contact #module-sd_customform-display .form-container .sd_form-group input:-ms-input-placeholder {
  color: #B5B5B5;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}
#contact #module-sd_customform-display .form-container .sd_form-group input::placeholder {
  color: #B5B5B5;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}
@media screen and (max-width: 575px) {
  #contact #module-sd_customform-display .form-container .sd_form-group input:-ms-input-placeholder {
    font-size: 13px;
  }
  #contact #module-sd_customform-display .form-container .sd_form-group input::placeholder {
    font-size: 13px;
  }
}
#contact #module-sd_customform-display .form-container .sd_form-group textarea:-ms-input-placeholder {
  color: #B5B5B5;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}
#contact #module-sd_customform-display .form-container .sd_form-group textarea::placeholder {
  color: #B5B5B5;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}
@media screen and (max-width: 575px) {
  #contact #module-sd_customform-display .form-container .sd_form-group textarea:-ms-input-placeholder {
    font-size: 13px;
  }
  #contact #module-sd_customform-display .form-container .sd_form-group textarea::placeholder {
    font-size: 13px;
  }
}
#contact #module-sd_customform-display .form-container .sd_form-group .sd_form_submit {
  padding: 17px 130px;
  border-radius: 0;
  text-transform: capitalize;
  color: #fff;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px;
  background: #606C6A;
  margin: 38px 0 70px;
}
#contact #module-sd_customform-display .form-container .sd_form-group .sd_form_submit:hover {
  background: #383838;
}
@media screen and (max-width: 768px) {
  #contact #module-sd_customform-display .form-container .sd_form-group .sd_form_submit {
    margin: 50px 0 0;
  }
}
#contact #module-sd_customform-display .form-container .form-field {
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  #contact #module-sd_customform-display .form-container .form-field {
    padding: 0;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  #contact #module-sd_customform-display .form-container .form-field.check-box-heading label {
    font-family: "Geologica";
    font-weight: 300;
  }
}
#contact #module-sd_customform-display .form-container .form-field label {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
@media screen and (max-width: 575px) {
  #contact #module-sd_customform-display .form-container .form-field label {
    font-size: 15px;
    line-height: normal;
  }
}
#contact #module-sd_customform-display .form-container .form-field .row label {
  font-family: "Geologica";
  font-weight: 300;
  line-height: 24px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #contact #module-sd_customform-display .form-container .form-field .row label {
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  #contact #module-sd_customform-display .form-container .form-footer {
    padding: 0;
  }
}

#cms {
  color: #343434;
}
#cms.cms-id-34 .page-cms-34 .sd_form#module-sd_customform-display {
  display: none;
}
#cms .products-variants {
  margin-bottom: 0;
}
#cms.cms-id-35 .page-header, #cms.cms-id-34 .page-header, #cms.cms-id-36 .page-header, #cms.cms-id-36 .page-header, #cms.cms-id-37 .page-header {
  display: none;
}
#cms.cms-id-35 .get-personalised-button, #cms.cms-id-34 .get-personalised-button, #cms.cms-id-36 .get-personalised-button, #cms.cms-id-36 .get-personalised-button, #cms.cms-id-37 .get-personalised-button {
  padding-top: 20px;
}
#cms.cms-id-35 .get-personalised-button .show-on-hover, #cms.cms-id-34 .get-personalised-button .show-on-hover, #cms.cms-id-36 .get-personalised-button .show-on-hover, #cms.cms-id-36 .get-personalised-button .show-on-hover, #cms.cms-id-37 .get-personalised-button .show-on-hover {
  display: none;
}
#cms.cms-id-35 .get-personalised-button a:hover .default-show, #cms.cms-id-34 .get-personalised-button a:hover .default-show, #cms.cms-id-36 .get-personalised-button a:hover .default-show, #cms.cms-id-36 .get-personalised-button a:hover .default-show, #cms.cms-id-37 .get-personalised-button a:hover .default-show {
  display: none;
}
#cms.cms-id-35 .get-personalised-button a:hover .show-on-hover, #cms.cms-id-34 .get-personalised-button a:hover .show-on-hover, #cms.cms-id-36 .get-personalised-button a:hover .show-on-hover, #cms.cms-id-36 .get-personalised-button a:hover .show-on-hover, #cms.cms-id-37 .get-personalised-button a:hover .show-on-hover {
  display: block;
}
#cms.cms-id-35 .rte-content p, #cms.cms-id-34 .rte-content p, #cms.cms-id-36 .rte-content p, #cms.cms-id-36 .rte-content p, #cms.cms-id-37 .rte-content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
}
#cms.cms-id-35 p a.common-color, #cms.cms-id-34 p a.common-color, #cms.cms-id-36 p a.common-color, #cms.cms-id-36 p a.common-color, #cms.cms-id-37 p a.common-color {
  border-radius: 7px;
  background-color: #383838;
  text-transform: capitalize;
  font-weight: 600;
}
#cms.cms-id-35 p a.common-color:hover, #cms.cms-id-34 p a.common-color:hover, #cms.cms-id-36 p a.common-color:hover, #cms.cms-id-36 p a.common-color:hover, #cms.cms-id-37 p a.common-color:hover {
  background-color: #007B68;
}
#cms.cms-id-35 p .btn, #cms.cms-id-34 p .btn, #cms.cms-id-36 p .btn, #cms.cms-id-36 p .btn, #cms.cms-id-37 p .btn {
  color: #fff;
  font-size: 17px;
  text-transform: capitalize;
  line-height: 29px;
  padding: 8px 35px;
}
#cms .rte-content p {
  font-size: 22px;
  line-height: 38px;
}
#cms .page-header h1 {
  text-align: center;
  font-size: 51px;
  margin-top: 50px;
  color: #383838;
}
@media (max-width: 768px) {
  #cms .page-header h1 {
    font-size: 26px;
    margin: 15px;
  }
}
#cms h2.main-page-heading {
  font-size: 42px;
}
#cms h2 {
  font-size: 32px;
}
#cms p {
  font-size: 17px;
}
#cms .exhibition-top-banner {
  height: 300px;
}
#cms .exhibition-top-banner .elementor-widget-text-editor {
  height: 100%;
}
#cms .exhibition-top-banner .elementor-column-gap-default {
  height: 100%;
}
#cms .exhibition-top-banner h2.main-page-heading {
  padding-top: 0;
  position: absolute;
  top: calc(50% - 25px);
  width: 100%;
}
@media (max-width: 768px) {
  #cms .exhibition-top-banner h2.main-page-heading {
    font-size: 28px;
  }
}
#cms .brand-top-section:before {
  content: "";
  display: block;
  background-color: #1C2627;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 67%;
  top: 0;
  left: 0;
}
#cms .read-genuine-customer {
  padding-top: 40px;
  padding-bottom: 35px;
}
#cms .read-genuine-customer .elementor-row {
  column-gap: 140px;
}
#cms .read-genuine-customer .read-genuine-banner {
  padding-left: 85px;
}
#cms .common-column-width .elementor-text-editor h2 {
  line-height: 45px;
  margin-bottom: 30px;
}
#cms .common-column-width .elementor-text-editor p {
  width: 92%;
  padding-bottom: 10px;
}
#cms .common-column-width .elementor-text-editor .beautiful-heading {
  width: 90%;
  padding-top: 25px;
  text-align: center;
}
#cms .common-column-width .elementor-text-editor .large-order-heading {
  padding-top: 30px;
}
@media (max-width: 768px) {
  #cms .common-column-width .elementor-text-editor .beautiful-heading {
    width: 100%;
  }
  #cms .common-column-width .elementor-text-editor p {
    width: 100%;
    padding-bottom: 0;
    text-align: center;
  }
  #cms .common-column-width .elementor-text-editor h2 {
    line-height: 30px;
    padding-top: 20px;
    margin-bottom: 15px;
  }
}
#cms .brand-seating-heading {
  position: absolute;
  top: calc(50% - 25px);
  width: 100%;
}
#cms .brand-seating-heading .main-page-heading {
  font-size: 42px;
}
@media (max-width: 768px) {
  #cms .brand-seating-heading .main-page-heading {
    font-size: 28px;
  }
}
#cms .with-over-genuine p {
  font-size: 21px;
  line-height: 37px;
}
#cms .bespoke-headerbranded .elementor-widget .elementor-widget-container .elementor-text-editor .get-quote-button {
  padding-top: 20px;
}
#cms .bespoke-headerbranded .elementor-widget .elementor-widget-container .elementor-text-editor .get-quote-button a.get-quote {
  padding: 2px 45px;
  font-weight: 400;
  line-height: 38px;
  background: #383838;
}
#cms .bespoke-headerbranded .elementor-widget .elementor-widget-container .elementor-text-editor .get-quote-button a.get-quote:hover {
  background: #007B68;
}
@media (max-width: 768px) {
  #cms .bespoke-headerbranded .elementor-widget .elementor-widget-container .elementor-text-editor .get-quote-button {
    padding-top: 10px;
  }
}
#cms .bespoke-headerbranded .elementor-widget .elementor-widget-container .elementor-text-editor p {
  width: 88%;
  text-align: left;
}
@media screen and (max-width: 991px) {
  #cms .bespoke-headerbranded .elementor-widget .elementor-widget-container .elementor-text-editor p {
    width: 100%;
    text-align: center;
  }
}
#cms .bespoke-headerbranded .elementor-widget .elementor-widget-container .elementor-text-editor h2 {
  padding-bottom: 10px;
  line-height: 38px;
  padding-top: 30px;
}
@media (max-width: 768px) {
  #cms .bespoke-headerbranded .elementor-widget .elementor-widget-container .elementor-text-editor h2 {
    padding-top: 0;
    line-height: 30px;
  }
}
#cms .bespoke-section .bespoke-swiper {
  overflow: hidden;
}
#cms .bespoke-section .bespoke-swiper.corporate-seating .swiper-button-next {
  top: 37%;
}
#cms .bespoke-section .bespoke-swiper.corporate-seating .swiper-button-prev {
  top: 37%;
}
#cms .bespoke-section .bespoke-swiper .swiper-button-next, #cms .bespoke-section .bespoke-swiper .swiper-button-prev {
  background: #0C5660;
  width: 42px;
  height: 42px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
#cms .bespoke-section .bespoke-swiper .swiper-button-next.swiper-button-disabled, #cms .bespoke-section .bespoke-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
#cms .bespoke-section .bespoke-swiper .swiper-button-prev:after, #cms .bespoke-section .bespoke-swiper .swiper-button-next:after {
  font-size: 25px !important;
  font-weight: 600;
}
#cms .bespoke-section .bespoke-swiper .swiper-button-next {
  right: 0;
  left: auto;
  top: 43%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#cms .bespoke-section .bespoke-swiper .swiper-button-prev {
  left: 0;
  right: auto;
  top: 43%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#cms .bespoke-section .bespoke-swiper .swiper-pagination-bullet {
  background: #343434;
  opacity: 25%;
  width: 13px;
  height: 13px;
}
#cms .bespoke-section .bespoke-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1AAA8E;
  opacity: 100%;
}
#cms .bespoke-section .bespoke-swiper .swiper-pagination {
  position: unset;
  margin-top: 22px;
}
#cms .bespoke-section .bespoke-swiper .swiper-slider-caption {
  background: #f2f2f2;
  border-radius: 7px;
  padding: 10px 100px;
  margin-top: 22px;
}
#cms .bespoke-section .bespoke-swiper .swiper-slider-caption .swiper-commercial-caption {
  text-align: center !important;
  width: 100% !important;
}
@media (max-width: 991px) {
  #cms .bespoke-section .bespoke-swiper .swiper-slider-caption .swiper-commercial-caption {
    font-size: 17px;
    padding: 10px;
    line-height: 20px;
  }
}
#cms .bespoke-section .bespoke-swiper .swiper-slider-caption p {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
}
#cms .practical-luxurious-section .practical-luxurious {
  padding-right: 85px;
}
#cms .brand-seating-brands-wave {
  margin-top: 35px;
}
#cms .brand-seating-brands-wave h2 {
  font-size: 32px;
}
#cms .brand-seating-brands-wave img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 13.2%;
  height: 150px;
}
#cms .five-star-rating-block {
  background: url("/img/cms/client_bg.webp") #1aaa8e 0px -540.184px/100% 292.237% no-repeat !important;
  padding-bottom: 30px;
}
#cms .five-star-rating-block .elementor-column-wrap {
  padding: 0;
}
#cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
#cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container .elementor-text-editor {
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 1rem;
}
#cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container .elementor-text-editor h2 {
  font-size: 44px;
  font-style: normal;
  font-weight: 900;
  line-height: 59px;
}
@media (max-height: 1190px) {
  #cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container .elementor-text-editor h2 {
    font-size: 34px !important;
  }
}
#cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container .elementor-text-editor p {
  max-width: 45%;
  margin: auto;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
}
@media (max-width: 1190px) {
  #cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container .elementor-text-editor p {
    max-width: 65%;
    font-size: 20px;
    line-height: 30px;
  }
}
#cms .testimonial-swiper {
  padding-bottom: 5rem;
  padding-left: 10%;
  margin-top: 35px;
}
@media (max-width: 768px) {
  #cms .testimonial-swiper {
    margin-top: 0;
    padding-left: 20px;
  }
}
#cms .testimonial-swiper .elementor-testimonial-name {
  display: none !important;
}
#cms .testimonial-swiper .job-title {
  border-radius: 40px 40px 40px 0px;
  background: #FFF;
  box-shadow: 10px 14px 34px 0px rgba(0, 0, 0, 0.08);
}
#cms .testimonial-swiper .job-title .job-content {
  display: -ms-flexbox;
  display: flex;
  column-gap: 40px;
  padding: 50px 80px;
}
@media (max-width: 768px) {
  #cms .testimonial-swiper .job-title .job-content {
    padding: 25px 20px;
    column-gap: 15px;
    gap: 20px;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
  }
}
#cms .testimonial-swiper .job-title .job-content .block-right {
  text-align: left;
  max-width: 80%;
}
@media (max-width: 768px) {
  #cms .testimonial-swiper .job-title .job-content .block-right {
    text-align: center;
  }
}
#cms .testimonial-swiper .job-title .job-content .block-right p {
  color: #343434;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 40px;
}
@media (max-width: 1190px) {
  #cms .testimonial-swiper .job-title .job-content .block-right p {
    font-size: 24px;
    line-height: 35px;
  }
}
@media (max-width: 768px) {
  #cms .testimonial-swiper .job-title .job-content .block-right p {
    font-size: 18px !important;
    line-height: 23px !important;
  }
}
#cms .testimonial-swiper .job-title .job-content .block-right .job-name {
  color: #20AB90;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  display: block;
}
@media (max-width: 1190px) {
  #cms .testimonial-swiper .job-title .job-content .block-right .job-name {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  #cms .testimonial-swiper .job-title .job-content .block-right .job-name {
    font-size: 16px;
    line-height: 20px;
  }
}
#cms .testimonial-swiper .job-title .job-content .block-right .job-title {
  color: #343434;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  box-shadow: unset;
}
@media (max-width: 1190px) {
  #cms .testimonial-swiper .job-title .job-content .block-right .job-title {
    font-size: 14px;
    line-height: 20px;
  }
}
#cms .testimonial-swiper .swiper-button-next, #cms .testimonial-swiper .swiper-rtl .swiper-button-prev {
  top: unset;
  right: 42%;
  bottom: 21px;
}
#cms .testimonial-swiper .swiper-button-prev {
  top: unset;
  bottom: 21px;
  left: 42%;
}
#cms .testimonial-swiper .swiper-button-prev:after, #cms .testimonial-swiper .swiper-button-next:after {
  font-weight: 900;
  font-size: 20px !important;
}
@media (max-width: 768px) {
  #cms .testimonial-swiper .swiper-button-prev:after, #cms .testimonial-swiper .swiper-button-next:after {
    font-size: 18px !important;
  }
}
#cms .testimonial-swiper .swiper-pagination {
  bottom: 30px;
}
#cms .testimonial-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 25%;
  width: 13px;
  height: 13px;
}
@media (max-width: 768px) {
  #cms .testimonial-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
#cms .testimonial-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 100%;
}
#cms .case-study-block-swiper .swiper-slide {
  overflow: hidden;
  height: auto;
}
#cms .case-study-block-swiper .swiper-slide:has(.bg-black) {
  background: #000000;
}
#cms .case-study-block-swiper .swiper-slide:has(.bg-blue) {
  background: #019EDB;
}
#cms .case-study-block-swiper .swiper-slide:has(.bg-white) {
  background: #FFFFFF;
}
#cms .case-study-block-swiper .swiper-slide-block {
  display: -ms-flexbox;
  display: flex;
  padding: 8% 0;
  position: relative;
}
@media (max-width: 997px) {
  #cms .case-study-block-swiper .swiper-slide-block {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    gap: 45px;
  }
}
@media (max-width: 768px) {
  #cms .case-study-block-swiper .swiper-slide-block {
    padding: 16% 0;
  }
}
#cms .case-study-block-swiper .swiper-slide-block .right-content {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 997px) {
  #cms .case-study-block-swiper .swiper-slide-block .right-content {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}
#cms .case-study-block-swiper .swiper-slide-block .right-content .bg-logo {
  position: absolute;
  top: -50px;
  left: -25px;
}
#cms .case-study-block-swiper .swiper-slide-block .right-content .main-image {
  max-width: 665px;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 997px) {
  #cms .case-study-block-swiper .swiper-slide-block .right-content .main-image {
    max-width: 75%;
    margin-right: auto;
    margin-left: auto;
  }
}
#cms .case-study-block-swiper .swiper-slide-block .right-content .main-image img {
  width: 100%;
  position: relative;
  z-index: 11;
}
#cms .case-study-block-swiper .swiper-slide-block.saucony .bg-logo {
  top: 80px;
  right: 16%;
  left: auto;
}
@media (max-width: 997px) {
  #cms .case-study-block-swiper .swiper-slide-block.saucony .bg-logo {
    top: 32px;
    right: 51%;
    left: auto;
    width: 45%;
  }
}
@media (max-width: 768px) {
  #cms .case-study-block-swiper .swiper-slide-block.saucony .bg-logo {
    top: 25px;
    right: 44%;
    left: auto;
    width: 52%;
  }
}
#cms .case-study-block-swiper .swiper-slide-block.saucony .bg-logo_2 {
  position: absolute;
  right: -20%;
  bottom: 4%;
  z-index: 0;
}
@media (max-width: 997px) {
  #cms .case-study-block-swiper .swiper-slide-block.saucony .bg-logo_2 {
    display: none;
  }
}
#cms .case-study-block-swiper .swiper-slide-block.welsh-water .bg-logo {
  position: absolute;
  top: 40px;
  left: auto;
  right: 0;
  width: 34.6%;
}
@media (max-width: 997px) {
  #cms .case-study-block-swiper .swiper-slide-block.welsh-water .bg-logo {
    top: 26px;
    left: auto;
    width: 100%;
    aspect-ratio: 1.37/1;
  }
}
#cms .case-study-block-swiper .swiper-slide-block.atari .left-content h3 {
  color: #000;
}
#cms .case-study-block-swiper .swiper-slide-block.atari .left-content p {
  color: #000;
}
@media (max-width: 768px) {
  #cms .case-study-block-swiper .swiper-slide-block.atari .left-content img {
    width: unset;
  }
}
#cms .case-study-block-swiper .swiper-slide-block.atari .right-content .bg-logo {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 55%;
}
#cms .case-study-block-swiper .swiper-slide-block .left-content {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
  padding-left: 10%;
}
@media (max-width: 1350px) {
  #cms .case-study-block-swiper .swiper-slide-block .left-content {
    padding-left: 5%;
  }
}
@media (max-width: 997px) {
  #cms .case-study-block-swiper .swiper-slide-block .left-content {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
  }
  #cms .case-study-block-swiper .swiper-slide-block .left-content h3, #cms .case-study-block-swiper .swiper-slide-block .left-content p {
    text-align: center;
  }
  #cms .case-study-block-swiper .swiper-slide-block .left-content img {
    width: 70%;
  }
}
#cms .case-study-block-swiper .swiper-slide-block .left-content h3 {
  color: #FFF;
  font-size: 44px;
  font-style: normal;
  font-weight: 900;
  line-height: 59px;
  margin-top: 40px;
}
@media (max-width: 1190px) {
  #cms .case-study-block-swiper .swiper-slide-block .left-content h3 {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  #cms .case-study-block-swiper .swiper-slide-block .left-content h3 {
    font-size: 28px;
    line-height: 42px;
    margin-top: 25px;
  }
}
#cms .case-study-block-swiper .swiper-slide-block .left-content p {
  color: #FFF;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
@media (max-width: 1190px) {
  #cms .case-study-block-swiper .swiper-slide-block .left-content p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 768px) {
  #cms .case-study-block-swiper .swiper-slide-block .left-content p {
    font-size: 16px;
    line-height: 19px;
  }
}
#cms .case-study-block-swiper .swiper-buttons {
  display: -ms-flexbox;
  display: flex;
  max-width: 12%;
  margin: auto;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 45%;
}
@media (max-width: 1248px) {
  #cms .case-study-block-swiper .swiper-buttons {
    max-width: 25%;
  }
}
@media (max-width: 997px) {
  #cms .case-study-block-swiper .swiper-buttons {
    bottom: 20px;
    left: 37%;
  }
}
@media (max-width: 768px) {
  #cms .case-study-block-swiper .swiper-buttons {
    max-width: 50%;
    left: 22%;
    bottom: 12px;
  }
}
#cms .case-study-block-swiper .swiper-buttons .swiper-pagination,
#cms .case-study-block-swiper .swiper-buttons .swiper-button-prev,
#cms .case-study-block-swiper .swiper-buttons .swiper-button-next {
  position: relative;
}
#cms .case-study-block-swiper .swiper-buttons .swiper-button-prev,
#cms .case-study-block-swiper .swiper-buttons .swiper-button-next {
  background: transparent !important;
}
#cms .case-study-block-swiper .swiper-buttons .swiper-button-prev:after,
#cms .case-study-block-swiper .swiper-buttons .swiper-button-next:after {
  content: "";
  background: url("../img/brand-arrow.svg");
  width: 36px;
  height: 36px;
  background-size: 100% 100%;
}
#cms .case-study-block-swiper .swiper-buttons .swiper-button-prev:after {
  transform: rotate(180deg);
}
#cms .case-study-block-swiper .swiper-buttons .swiper-pagination .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  background: #fff;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  #cms .case-study-block-swiper .swiper-buttons .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
#cms .case-study-block-swiper .swiper-buttons.white-bg .swiper-button-prev:after,
#cms .case-study-block-swiper .swiper-buttons.white-bg .swiper-button-next:after {
  filter: brightness(0) saturate(100%);
}
#cms .saucony-running-wear {
  padding: 65px 0;
}
#cms .saucony-running-wear .saucony-image .elementor-image img {
  width: 125px;
  height: auto;
}
#cms .saucony-running-wear .saucony-content h2 {
  margin: 30px 0 20px;
}
@media screen and (max-width: 768px) {
  #cms .saucony-running-wear {
    padding: 0;
    padding-bottom: 30px;
  }
  #cms .saucony-running-wear .saucony-image .elementor-image img {
    width: 100%;
  }
  #cms .saucony-running-wear .saucony-content h2 {
    text-align: center;
  }
  #cms .saucony-running-wear .saucony-content-text {
    text-align: center;
  }
}
#cms .breadcrumb {
  display: none;
}
#cms .running-wear-video {
  padding-left: 40px;
}
#cms .running-wear-video p video {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  margin-left: 70px;
}
@media screen and (max-width: 991px) {
  #cms .running-wear-video {
    padding-left: 0;
  }
  #cms .running-wear-video p video {
    border-radius: unset;
    margin-left: 45px;
  }
}
#cms .brand-seating-success-section h3 {
  font-size: 24px;
}
#cms .brand-seating-success-section .blog-button {
  margin: 25px;
}
#cms .brand-seating-success-section .brand-seating-success {
  -ms-flex: 1;
      flex: 1;
}
#cms .brand-seating-success-section .elementor-widget-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
#cms .brand-seating-success-section .elementor-widget-wrap .elementor-widget {
  background-color: #f7f4f0;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
#cms .brand-seating-success .elementor-widget-container {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
#cms .brand-seating-success .elementor-widget-container .elementor-text-editor {
  padding: 25px;
  border-bottom: 5px;
}
#cms .about-footstools-direct .elementor-text-editor {
  padding-left: 80px;
}
#cms .about-footstools-direct .elementor-text-editor h2 {
  margin-top: 20px;
  margin-bottom: 17px;
}
#cms .elementor-element.elementor-element-b88mhig {
  margin-top: unset;
  margin-bottom: unset;
  padding: unset;
}
#cms .jet-bottom-content .elementor-widget-container {
  padding: 15px 60px;
  margin-top: 30px;
}
#cms .jet-bottom-content .elementor-widget-container .commercial-seating-image-bottom {
  font-size: 16px;
  line-height: 21px;
}
#cms .jet-bottom-content .elementor-widget-container p {
  font-size: 16px;
  font-weight: 600;
}
#cms .genuine-customer h2 {
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  padding-bottom: 25px;
  width: 85%;
}
#cms .genuine-customer h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 20px;
}
#cms .genuine-customer p {
  font-size: 21px !important;
  line-height: 37px !important;
}
#cms .genuine-customer .with-over p {
  font-size: 24px !important;
  line-height: 32px !important;
  padding-bottom: 25px;
}
#cms .genuine-customer .genuine-customer-content p {
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 41px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #cms .genuine-customer .genuine-customer-content p {
    width: 100%;
  }
}
#cms .genuine-customer .furniture-hire {
  margin-top: 15px;
}
#cms .genuine-customer .furniture-hire p {
  font-size: 19px !important;
  line-height: 37px !important;
  color: #fff;
  text-align: left !important;
}
#cms .genuine-customer .furniture-hire img {
  border-radius: 10px;
  margin-left: 27px;
  max-width: 100px;
}
@media (max-width: 768px) {
  #cms .genuine-customer p {
    font-size: 16px !important;
    line-height: 26px !important;
  }
  #cms .genuine-customer .with-over p {
    font-size: 21px !important;
    line-height: 30px !important;
  }
}
#cms .common-notification-section .elementor-row {
  column-gap: 110px;
}
#cms .why-choose-block h2 {
  padding-top: 50px;
}
#cms .why-choose-block .why-choose-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-bottom: 45px;
}
#cms .why-choose-block .why-choose-content p {
  width: 38%;
}
@media (max-width: 1440px) {
  #cms .why-choose-block .why-choose-content p {
    width: 60%;
  }
}
#cms .why-use-usp .all-commercial-usp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
  padding-bottom: 85px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 50px;
}
#cms .why-use-usp .all-commercial-usp .commercial-usp {
  -ms-flex: 0 0 33%;
      flex: 0 0 33%;
}
#cms .why-use-usp .all-commercial-usp .commercial-usp img {
  padding-bottom: 25px;
}
#cms .commercial-seating-success-stories h2 {
  padding-top: 51px;
}
#cms .commercial-seating-success-stories .commercial-seating-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
#cms .commercial-seating-success-stories .commercial-seating-content p {
  width: 45%;
}
#cms .section-top-gap {
  margin-top: 50px;
}
#cms .gaming-events .elementor-text-editor p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 20px;
}
#cms .gaming-events .elementor-text-editor img {
  max-width: 60px;
  height: -moz-fit-content;
  height: fit-content;
}
#cms .large-order-exhibition {
  padding: 60px 15px;
}
@media (max-width: 768px) {
  #cms .large-order-exhibition {
    padding: 25px;
  }
}
#cms .what-we-can .elementor-row {
  column-gap: 15px;
}
#cms .what-we-can .large-exhibition-content {
  max-width: 70%;
  margin: auto;
}
#cms .what-we-can .large-exhibition-content h3 {
  font-size: 23px;
  margin-top: 20px;
}
#cms .what-we-can-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
#cms .what-we-can-content p {
  width: 48%;
}
#cms .events-exhibition-centres h2 {
  padding-bottom: 22px;
}
#cms .about-footstool-direct {
  margin-bottom: 30px;
}
#cms .about-footstool-direct .elementor-row {
  column-gap: 141px;
}
#cms .about-footstool-direct .elementor-row .elementor-column.elementor-element.elementor-top-column {
  padding: 70px 0 145px;
}
#cms .about-footstool-direct .elementor-column-gap-default .elementor-element-populated {
  padding: unset;
}
#cms .alert {
  font-size: 16px;
}
#cms .about-footstool-direct .elementor-widget-container .elementor-image img {
  width: 100%;
}
#cms .about-footstool-direct .elementor-text-editor {
  padding-left: unset;
}
#cms .saucony-image .elementor-image {
  text-align: left;
}
#cms .saucony-image .elementor-image img {
  width: 50%;
}
#cms .commercial-seating-tagline-block .get-quote {
  padding: 10px 45px 11px 45px;
}
#cms .read-genuine-block .read-genuine {
  padding-bottom: 25px;
}
#cms .read-genuine-block .read-genuine p {
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
}
#cms .read-genuine-block .read-genuine-content p {
  font-size: 21px;
  font-weight: 400;
  line-height: 37px;
  padding-bottom: 41px;
}
#cms .read-genuine-block p {
  font-size: 19px;
  font-weight: 700;
  line-height: 37px;
}
#cms .corporate-seating-content .elementor-text-editor p {
  width: 89%;
}
@media screen and (max-width: 768px) {
  #cms h2 {
    text-align: center;
  }
  #cms p {
    line-height: 27px;
  }
  #cms .bespoke-section .bespoke-swiper .swiper-button-next {
    top: 38%;
  }
  #cms .bespoke-section .bespoke-swiper .swiper-button-prev {
    top: 38%;
  }
  #cms .bespoke-section .bespoke-swiper .swiper-slider-caption {
    padding: 5px;
  }
  #cms .why-use-usp .all-commercial-usp {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 50px;
    padding-bottom: 30px;
  }
  #cms .why-use-usp .all-commercial-usp .commercial-usp {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
  }
  #cms .brand-seating-banner .elementor-image img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #cms .brand-seating-heading {
    left: 28%;
  }
  #cms .bespoke-headerbranded {
    padding-bottom: 0;
  }
  #cms .bespoke-headerbranded .elementor-widget-container .rte-content p {
    line-height: 27px;
    text-align: center;
    font-weight: 400;
  }
  #cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container .elementor-text-editor {
    width: 80%;
    padding-bottom: 2rem;
  }
  #cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container .elementor-text-editor h2 {
    font-weight: 700;
    line-height: 31px;
    font-size: 23px !important;
  }
  #cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container .elementor-text-editor p {
    max-width: 100%;
    font-size: 16px;
    line-height: 23px;
  }
  #cms .testimonial-swiper .swiper-pagination.elementor-swiper-pagination {
    bottom: 35px;
  }
  #cms .testimonial-swiper .elementor-testimonial-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
  #cms .testimonial-swiper .swiper-button-next {
    top: unset;
    bottom: 25px;
    right: 36%;
  }
  #cms .testimonial-swiper .swiper-button-prev {
    left: 36%;
    top: unset;
    bottom: 25px;
  }
  #cms .saucony-running-block {
    padding: 30px;
  }
  #cms .saucony-running-block h2 {
    text-align: left;
  }
  #cms .saucony-running-block .saucony-running-content .saucony-content-text p {
    width: 100%;
    line-height: 27px;
  }
  #cms .make-it-personal {
    padding-top: 20px;
  }
  #cms .jet-bottom-content .elementor-widget-container {
    margin-top: 20px;
    padding: 0;
  }
  #cms .jet-bottom-content .elementor-widget-container p {
    font-size: 15px;
    line-height: 21px;
    font-weight: 700;
    padding: 10px 10px;
  }
  #cms .cymru-bottom-content {
    padding-bottom: 30px;
  }
  #cms .get-presonalised {
    padding: 28px !important;
  }
  #cms .brand-seating-success-section .elementor-row {
    row-gap: 30px;
  }
  #cms .brand-seating-success-section .elementor-widget-wrap .elementor-widget {
    background-color: #f7f4f0;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
  }
  #cms .brand-seating-success-section .elementor-widget-container {
    border-radius: 7px;
  }
  #cms .blog-banner img {
    width: 100%;
    height: auto;
  }
  #cms .about-footstool-direct .elementor-row .elementor-column.elementor-element.elementor-top-column {
    padding: 35px 15px;
    margin: 0;
  }
  #cms .about-footstool-direct .elementor-text-editor {
    padding-left: unset;
  }
  #cms .about-footstool-direct .elementor-text-editor h2 {
    text-align: left;
  }
  #cms .brand-seating-brands-wave .brands-logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    column-gap: 20px;
    -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    margin-top: 35px;
  }
  #cms .brand-seating-brands-wave .brands-logo img {
    max-width: 25%;
    height: 120px;
  }
  #cms .exhibition-top-banner {
    height: 200px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  #cms .corporate-seating-block .elementor-row {
    row-gap: 30px;
  }
  #cms .read-genuine-customer {
    padding-left: 15px;
    padding-right: 15px;
  }
  #cms .read-genuine-customer .elementor-row {
    row-gap: 30px;
  }
  #cms .read-genuine-customer .genuine-customer-content p {
    padding-bottom: 0;
  }
  #cms .read-genuine-customer .genuine-customer .elementor-widget-container .elementor-text-editor h2 {
    font-size: 23px;
    text-align: left;
    width: 100%;
    line-height: 33px;
  }
  #cms .read-genuine-customer .genuine-customer .elementor-widget-container .elementor-text-editor h3 {
    font-size: 19px;
  }
  #cms .read-genuine-customer .genuine-customer .elementor-widget-container .elementor-text-editor p {
    font-size: 18px;
    line-height: 26px;
  }
  #cms .read-genuine-customer .genuine-customer .elementor-text-editor {
    max-width: 100%;
  }
  #cms .read-genuine-customer .read-genuine-banner {
    padding-left: 0;
  }
  #cms .read-genuine-customer .read-genuine-banner .elementor-image img {
    width: 100%;
  }
  #cms .what-we-can-content {
    padding-bottom: 20px;
  }
  #cms .what-we-can-content p {
    width: 100%;
  }
  #cms .what-we-can .elementor-row {
    row-gap: 20px;
  }
  #cms .what-we-can .large-exhibition-content {
    max-width: 100%;
    margin: unset;
    text-align: center;
  }
  #cms .why-choose-block .why-choose-content p {
    width: 80%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #cms .why-choose-block h2 {
    padding-top: 30px;
  }
  #cms .why-choose-block .why-choose-content {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #cms .commercial-seating-success-stories .commercial-seating-content {
    padding-bottom: 15px;
  }
  #cms .commercial-seating-success-stories .commercial-seating-content p {
    width: 90%;
  }
  #cms .no-padding .text-center {
    -ms-flex: 0 0 33%;
        flex: 0 0 33%;
  }
}
@media screen and (max-width: 540px) {
  #cms h1 {
    font-size: 32px;
  }
  #cms h2 {
    font-size: 24px;
  }
  #cms .brand-seating-heading {
    width: 100%;
    text-align: center;
    left: 0;
  }
  #cms p {
    font-size: 15px;
  }
  #cms .testimonial-swiper .swiper-button-next {
    right: 25%;
    top: unset;
  }
  #cms .testimonial-swiper .swiper-button-prev {
    left: 25%;
    top: unset;
  }
  #cms .tablet-reverse-section .elementor-row {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
  #cms .commercial-testimonial h2 {
    padding-top: 30px;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  #cms .common-tablet-section .elementor-row {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  #cms .common-tablet-section .elementor-row .elementor-column.elementor-col-50 {
    width: 100%;
  }
  #cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container .elementor-text-editor {
    width: 80%;
  }
  #cms .five-star-rating-block .five-star-rating-heading .elementor-widget-container .elementor-text-editor h2 {
    font-size: 24px;
  }
  #cms .testimonial-swiper .swiper-button-next {
    right: 35%;
  }
  #cms .testimonial-swiper .swiper-button-prev {
    left: 35%;
  }
  #cms .common-tablet-banner .elementor-image img {
    width: 100%;
  }
  #cms .tablet-reverse-section .elementor-row {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}
#cms .bespoke-cube-seating-top {
  margin-top: 30px;
}
#cms .bespoke-cube-seating-top h2.main-page-heading {
  font-size: 51px;
  font-weight: 700;
}
#cms .bespoke-cube-seating-top .bespoke-cube-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
#cms .bespoke-cube-seating-top .bespoke-cube-content p {
  width: 70%;
  line-height: 27px;
  margin: 10px 0 30px;
}
#cms .bespoke-cube-common-heading {
  font-weight: 700;
  font-size: 32px;
}
#cms .bespoke-block-gap {
  margin: 4rem 0 5rem;
}
#cms .swiper-common-hidden {
  overflow: hidden;
}
#cms .own-fabric-make-it-personal {
  padding: 60px 0 60px;
}
#cms .own-fabric-make-it-personal .bespoke-seating-common-img {
  margin: 30px 0 30px;
}
#cms .our-factory-opening-times .elementor-column-wrap {
  min-height: 600px;
  padding-top: 135px;
  background-size: cover;
}
#cms .our-factory-opening-times h2 {
  font-weight: 700;
  font-size: 73px;
  line-height: 78px;
}
#cms .our-factory-opening-times p {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}
#cms .our-factory-opening-times .get-directions a {
  margin: 0 auto;
  margin-top: 35px;
  font-size: 22px;
  line-height: 22px;
  text-transform: uppercase;
  text-align: center;
  padding: 25px 75px 25px;
  border-radius: unset;
  font-weight: 600;
}
#cms .our-factory-opening-times .get-directions.opening-time-contact-us a {
  padding: 25px 162px 25px;
}
#cms .our-factory-opening-times .get-directions.opening-time-contact-us a:hover {
  background: #f0633d;
}
#cms .our-factory-opening-times .our-factory-opening-times-content p {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}
#cms .contact-us-image-slider {
  padding: 80px;
}
#cms .contact-us-image-slider .contact-us-form-section {
  background: #D6E3E5;
  padding: 30px;
  border-radius: 7px;
}
#cms .contact-us-image-slider .contact-us-form-section .contact-us-form .sd_form#module-sd_customform-display {
  background: unset;
  padding-top: unset;
  padding-bottom: unset;
  margin-bottom: unset;
  margin-left: unset;
  margin-right: unset;
  display: block;
}
#cms .contact-us-image-slider .contact-us-form-section .contact-us-form .sd_form#module-sd_customform-display .form-header p {
  display: none;
}
#cms .contact-us-image-slider .contact-us-form-section .contact-us-form .sd_form#module-sd_customform-display .form-container .sd_form-group {
  background: unset;
  padding: unset;
  border-radius: unset;
  margin: unset;
  max-width: unset;
}
#cms .contact-us-image-slider .contact-us-form-section .contact-us-form .sd_form#module-sd_customform-display .form-container .sd_form-group label {
  text-align: left;
}
#cms .contact-us-image-slider .contact-us-left-swiper .product-info-img-slider:hover .swiper-button-next, #cms .contact-us-image-slider .contact-us-left-swiper .product-info-img-slider:hover .swiper-button-prev {
  opacity: 1;
}
#cms .contact-us-image-slider .contact-us-left-swiper .product-info-img-slider img {
  width: 100%;
  height: auto;
  aspect-ratio: 600/400;
}
#cms .contact-us-image-slider .contact-us-left-swiper .swiper-button-next, #cms .contact-us-image-slider .contact-us-left-swiper .swiper-button-prev {
  background: unset;
  opacity: 0;
}
#cms .contact-us-image-slider .contact-us-left-swiper .swiper-button-next:after, #cms .contact-us-image-slider .contact-us-left-swiper .swiper-button-prev:after {
  color: #000000;
  font-weight: bolder;
  font-size: 40px;
}
#cms .contact-us-image-slider .contact-us-left-swiper .swiper-pagination-bullets {
  position: relative;
  bottom: 0;
  font-size: 70px;
  display: block !important;
}
#cms .contact-us-image-slider .contact-us-left-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  height: 11px;
  width: 11px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
#cms .contact-us-image-slider .contact-us-left-swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 768px) {
  #cms .bespoke-block-gap {
    margin: 1.4rem 0 15px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #cms .brand-image-carousel .swiper-wrapper {
    animation: marqueeScroll-swipper 5s linear infinite;
  }
}
@media screen and (max-width: 768px) {
  #cms .bespoke-cube-seating-top h2.main-page-heading {
    font-size: 36px;
    line-height: 46px;
  }
  #cms .bespoke-cube-seating-top .bespoke-cube-content p {
    line-height: 27px;
  }
  #cms .contact-us-image-slider .contact-us-left-swiper .swiper-pagination-bullets {
    padding-right: 0;
  }
  #cms .own-fabric-make-it-personal .bespoke-seating-common-img {
    margin: 25px 0;
  }
  #cms .own-fabric-make-it-personal .bespoke-seating-common-img img {
    width: 100px;
  }
  #cms .own-fabric-make-it-personal .rte-content {
    padding: 0 15px;
  }
  #cms .own-fabric-make-it-personal .elementor-column:last-child .rte-content {
    margin-bottom: 35px;
  }
  #cms .contact-us-image-slider {
    padding: 50px 15px;
  }
  #cms .contact-us-image-slider .contact-us-left-swiper {
    padding-bottom: 5rem;
  }
  #cms .contact-us-image-slider .contact-us-left-swiper .swiper-button-next, #cms .contact-us-image-slider .contact-us-left-swiper .swiper-button-prev {
    opacity: 1;
  }
  #cms .own-fabric-make-it-personal {
    padding: 0;
  }
  #cms .own-fabric-make-it-personal h2 {
    padding-top: 50px;
  }
  #cms .our-factory-opening-times .elementor-row {
    row-gap: 30px;
  }
  #cms .our-factory-opening-times h2 {
    font-size: 46px;
    padding: 12px;
    line-height: 55px;
  }
  #cms .our-factory-opening-times .our-factory-opening-times-content p {
    font-size: 14px;
    line-height: 24px;
  }
  #cms .our-factory-opening-times .get-directions {
    padding-bottom: 30px;
  }
  #cms .our-factory-opening-times .get-directions.opening-time-contact-us a {
    padding: 20px 60px;
  }
  #cms .our-factory-opening-times .elementor-column-wrap {
    min-height: auto;
    padding-top: 25px;
  }
}
#cms .get-presonalised {
  padding: 35px;
}
#cms .get-presonalised .get-personalised-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
#cms .get-presonalised .get-personalised-content p {
  width: 43%;
}
@media screen and (max-width: 991px) {
  #cms .get-presonalised .get-personalised-content p {
    width: 100%;
  }
}
#cms .sd-anchor-list {
  margin-top: 30px;
}
#cms .sd-anchor-list h2.text-center {
  display: none;
}
#cms .sd-anchor-list .layout2 .tab-accordion {
  padding-bottom: 15px;
  border: none;
}
#cms .sd-anchor-list .layout2 .tab-accordion .title {
  background: #383838;
  border-radius: 5px;
}
#cms .sd-anchor-list .layout2 .tab-accordion .title:hover {
  background: #009BA4;
}
#cms .sd-anchor-list .layout2 .tab-accordion .title .section-title {
  color: #ffffff;
  padding: 18px;
  font-size: 19px;
  margin-bottom: 10px !important;
  font-weight: 700;
}
@media (max-width: 768px) {
  #cms .sd-anchor-list .layout2 .tab-accordion .title .section-title {
    font-size: 16px;
  }
}
#cms .sd-anchor-list .layout2 .tab-accordion .faq-content {
  max-width: 1018px;
}
#cms .sd-anchor-list .layout2 .tab-accordion .faq-content div div {
  padding-left: 0;
}
#cms .sd-anchor-list .layout2 .tab-accordion .faq-content p {
  font-size: 17px;
}
@media (max-width: 768px) {
  #cms .sd-anchor-list .layout2 .tab-accordion .faq-content p {
    font-size: 15px;
  }
}
#cms .sd-anchor-list .select-acc.collapsed:after {
  content: "";
}
#cms .sd-anchor-list .select-acc:after {
  content: "";
}
#cms .bespoke-seating-business {
  padding-bottom: 20px;
  border-bottom: 1px solid #D6D6D6;
}
#cms .saucony-running-block {
  padding-left: 9rem;
}
#cms .saucony-running-block .saucony-content-text {
  width: 90%;
}
@media screen and (max-width: 991px) {
  #cms .saucony-running-block {
    padding-left: 15px;
  }
  #cms .saucony-running-block .saucony-content-text {
    width: 100%;
  }
}
#cms .saucony-video-column {
  padding-left: 45px;
}
@media screen and (max-width: 768px) {
  #cms .saucony-video-column {
    padding-left: 0;
  }
}
#cms .make-it-personal {
  padding-left: 75px;
}
#cms .make-it-personal h2 {
  margin-bottom: 20px;
  margin-top: 6px;
}
#cms .make-it-personal p {
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  #cms .make-it-personal {
    padding-left: 0;
    text-align: center;
  }
}
#cms .branded-seating-column {
  padding-right: 85px;
}
#cms .branded-seating-column h2 {
  margin-top: 6px;
  margin-bottom: 20px;
}
#cms .branded-seating-column p {
  margin-bottom: 25px;
}
@media screen and (max-width: 991px) {
  #cms .branded-seating-column {
    padding-right: 0;
    text-align: center;
    padding-bottom: 0;
  }
  #cms .branded-seating-column p {
    margin-bottom: 0;
  }
}
#cms .from-gamimg-column {
  padding-left: 75px;
}
#cms .branded-success-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
#cms .branded-success-heading p {
  width: 45%;
}
@media screen and (max-width: 991px) {
  #cms .branded-success-heading p {
    width: 100%;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  #cms h2 {
    text-align: center;
  }
  #cms .about-banner-section {
    padding: 0 30px;
  }
  #cms .saucony-running-wear {
    padding: 0;
    padding-bottom: 30px;
  }
  #cms .saucony-running-wear .saucony-image .elementor-image img {
    width: 100%;
  }
  #cms .saucony-running-wear .saucony-content h2 {
    text-align: left;
  }
  #cms .saucony-video-column {
    padding-top: 120px;
  }
  #cms .about-footstool-direct {
    padding: 0 15px;
  }
  #cms .what-we-can .large-exhibition-content {
    max-width: 100%;
  }
  #cms .read-genuine-customer .read-genuine-banner {
    padding-left: 0;
  }
  #cms .bespoke-headerbranded .commercial-seating-swiper img {
    min-width: 100%;
  }
  #cms .bespoke-section .bespoke-swiper .swiper-button-next {
    top: 43%;
  }
  #cms .bespoke-section .bespoke-swiper .swiper-button-prev {
    top: 43%;
  }
  #cms .bespoke-block-gap {
    margin: 1.4rem 0 15px;
  }
  #cms .no-padding .text-center {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  #cms .our-factory-opening-times .elementor-row {
    -ms-flex-direction: column;
        flex-direction: column;
    row-gap: 30px;
  }
  #cms .our-factory-opening-times .elementor-row .elementor-top-column {
    width: 100%;
  }
  #cms .contact-us-image-slider {
    padding: 50px 0;
  }
  #cms .contact-us-image-slider .sd_form#module-sd_customform-display .form-container .form-field {
    margin-bottom: 10px;
  }
  #cms .contact-us-image-slider .sd_form#module-sd_customform-display .row {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  #cms .contact-us-image-slider .sd_form#module-sd_customform-display .row .col-md-6 {
    max-width: 100%;
  }
  #cms .contact-us-image-slider .contact-us-left-swiper .swiper-pagination-bullets {
    padding-right: 0;
  }
}
#cms .title .select-acc:after {
  filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(25%) hue-rotate(22deg) brightness(107%) contrast(106%);
}
#cms .commercial-seating-hire {
  padding: 35px;
}
#cms .commercial-seating-hire .elementor-row {
  column-gap: 110px;
}
#cms .commercial-seating-hire .commercial-seating-hire-heading {
  line-height: 45px;
  padding-bottom: 15px;
}
#cms .commercial-seating-hire p {
  padding-bottom: 15px;
}
#cms .commercial-seating-hire .commercial-seating-hire-button {
  padding-top: 25px;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  #cms .commercial-seating-hire {
    padding: 35px 15px;
  }
  #cms .commercial-seating-hire .elementor-text-editor {
    text-align: center;
  }
  #cms .commercial-seating-hire .commercial-seating-hire-heading {
    line-height: 30px;
    padding-bottom: 10px;
  }
  #cms .commercial-seating-hire .commercial-seating-hire-button {
    padding-top: 10px;
    padding-bottom: 0;
  }
}
#cms.cms-id-39 .page-header {
  display: none;
}
#cms .how-to-guide-care {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  #cms .how-to-guide-care {
    background-size: 100% 100%;
    background-position: center;
    margin-bottom: 20px;
  }
}
#cms .how-to-guide-care .elementor-widget-container {
  position: relative;
  transform: translate(30%);
  width: 50%;
}
@media screen and (max-width: 768px) {
  #cms .how-to-guide-care .elementor-widget-container {
    transform: unset;
    width: 100%;
    top: 50%;
    min-height: 300px;
    padding: 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  #cms .how-to-guide-care .elementor-widget-container p {
    font-size: 18px;
    line-height: 150%;
  }
}
#cms .our-guide-collection .elementor-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #cms .our-guide-collection .elementor-row {
    gap: 20px;
  }
}
#cms .our-guide-collection .elementor-row .elementor-column.elementor-top-column {
  width: 50%;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
}
@media screen and (max-width: 768px) {
  #cms .our-guide-collection .elementor-row .elementor-column.elementor-top-column {
    width: 100%;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
}
#cms .our-guide-collection .elementor-row .btn.btn-primary {
  width: 100%;
}
#cms .own-fabric-make-it-personal.how-to-care-guide .elementor-image img {
  width: 150px;
}
#cms .own-fabric-make-it-personal.how-to-care-guide .elementor-heading-title {
  width: 75%;
  margin: auto;
}
#cms .own-fabric-make-it-personal.how-to-care-guide p {
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 575px) {
  #cms .how-to-care-all-stools .how-to-care-all-stools-banner img {
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#cms .all-guide-desc {
  padding: 60px;
}
@media screen and (max-width: 575px) {
  #cms .all-guide-desc {
    padding: 0;
  }
}
#cms .all-guide-desc h2 {
  font-size: 24px;
}
#cms .all-guide-desc p {
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 575px) {
  #cms .all-guide-desc p {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  #cms .find-perfect-place .elementor-row, #cms .built-to-use-everday-use .elementor-row {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}
#cms .quote-request-section {
  padding: 68px;
}
@media screen and (max-width: 1500px) and (min-width: 991px) {
  #cms .quote-request-section {
    padding: 30px;
  }
}
@media screen and (max-width: 991px) {
  #cms .quote-request-section {
    padding: 0;
  }
}
#cms .quote-request-section .quote-content {
  display: block;
}
#cms .quote-request-section .quote-content.heading-content {
  display: none;
}
@media screen and (max-width: 991px) {
  #cms .quote-request-section .quote-request-column {
    padding: 0 30px 50px;
    text-align: center;
  }
}
#cms .quote-request-section .quote-request-column .modal-header {
  background: #f5f5f5;
}
#cms .quote-request-section .quote-request-column .modal-header .modal-title {
  text-align: center;
  -ms-flex: 1;
      flex: 1;
  font-size: 31px;
  font-family: "mixta-pro";
}
#cms .quote-request-section .quote-request-column .modal-body {
  background: #f5f5f5;
}
#cms .quote-request-section .quote-request-column .modal-dialog {
  max-width: 780px;
  margin: 40px auto;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display {
  margin: 0;
  display: none;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display.get-request-form {
  display: block;
  background: #f5f5f5;
  padding-bottom: 30px;
}
@media screen and (min-width: 1100px) {
  #cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display.get-request-form {
    padding: 30px 60px;
  }
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group {
  max-width: 100%;
  padding: 0;
  background: #f5f5f5;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group label {
  color: #383838;
  font-size: 18px;
  font-weight: 500;
  font-family: "mixta-pro";
  line-height: 26px;
}
@media screen and (max-width: 991px) {
  #cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group label {
    font-size: 16px;
  }
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group label.required_label:after {
  color: #EA5F55;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  top: 1px;
  margin-left: 3px;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group input, #cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group .form-control {
  border-radius: 0;
  border: 1px solid #DEDEDE;
  color: #383838;
  padding: 7px 20px !important;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group input:-ms-input-placeholder, #cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group .form-control:-ms-input-placeholder {
  color: #B5B5B5;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group input::placeholder, #cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group .form-control::placeholder {
  color: #B5B5B5;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}
@media screen and (max-width: 575px) {
  #cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group input:-ms-input-placeholder, #cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group .form-control:-ms-input-placeholder {
    font-size: 13px;
  }
  #cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group input::placeholder, #cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group .form-control::placeholder {
    font-size: 13px;
  }
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group input[type=date] {
  color: #B5B5B5; /* placeholder color */
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group input[type=date]:valid {
  color: #383838;
  font-size: 15px;
  font-weight: 400;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group .form-control-select {
  border: 1px solid #DEDEDE;
  font-weight: 300;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../img/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: 92% center;
  background-size: 10%;
  border-radius: 0;
  height: 47px;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form-group .form-control-select option:checked {
  border: 1px solid #DEDEDE;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .sd_form_submit {
  margin-top: 10px;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .form-field {
  margin-bottom: 15px;
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .form-footer .sd_form_submit {
  padding: 19px 135px;
  border-radius: 0;
  text-transform: capitalize;
  color: #fff;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px;
  background: #606c6a;
  margin-top: 30px;
}
@media screen and (min-width: 1551px) {
  #cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .form-footer .sd_form_submit {
    margin: 40px 0 30px;
  }
}
#cms .quote-request-section .quote-request-column .sd_form#module-sd_customform-display .form-footer .sd_form_submit:hover {
  background: #383838;
}
#cms .quote-request-section .quote-request-column .elementor-heading-title {
  font-size: 46px;
  font-family: "mixta-pro";
  color: #fff;
  line-height: 128%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1500px) and (min-width: 991px) {
  #cms .quote-request-section .quote-request-column .elementor-heading-title {
    font-size: 41px;
    line-height: 110%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  #cms .quote-request-section .quote-request-column .elementor-heading-title {
    font-size: 40px;
  }
}
#cms .quote-request-section .quote-request-column .rte-content p {
  font-size: 19px;
  color: #fff;
  line-height: 160%;
  font-weight: 250;
}
#cms .quote-request-section .quote-request-column .elementor-widget-button {
  margin-top: 49px;
}
@media screen and (max-width: 1500px) and (min-width: 991px) {
  #cms .quote-request-section .quote-request-column .elementor-widget-button {
    margin-top: 35px;
  }
}
#cms .quote-request-section .quote-request-column .elementor-widget-button .elementor-button-link {
  background: #383838;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  padding: 18px 57px;
  border-radius: 0;
}
#cms .quote-request-section .quote-request-column .elementor-widget-button .elementor-button-link:hover {
  background: #fff;
  color: #383838;
}
#cms .quote-request-section .elementor-container {
  max-width: 1504px;
}
#cms .quote-request-section .elementor-container .elementor-row {
  gap: 80px;
}
@media screen and (max-width: 1500px) and (min-width: 991px) {
  #cms .quote-request-section .elementor-container .elementor-row {
    gap: 40px;
  }
}
@media screen and (max-width: 991px) {
  #cms .quote-request-section .elementor-container .elementor-row {
    gap: 50px;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  #cms .quote-request-section .elementor-container .elementor-row .elementor-column {
    width: 100%;
  }
}
@media screen and (max-width: 1500px) and (min-width: 991px) {
  #cms .quote-request-section .elementor-container .elementor-row .elementor-column {
    width: 50%;
  }
  #cms .quote-request-section .elementor-container .elementor-row .elementor-column:first-child {
    width: 55%;
  }
}
#cms .quote-request-section .elementor-widget-image img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  #cms .quote-request-section .elementor-widget-image img {
    height: 370px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#cms .quote-request-section .rated-excellent {
  margin-top: 48px;
}
@media screen and (max-width: 1500px) and (min-width: 991px) {
  #cms .quote-request-section .rated-excellent {
    margin-top: 25px;
  }
}
#cms .quote-request-section .rated-excellent .rte-content p {
  font-size: 20px;
  font-weight: 500;
}
#cms .quote-request-section .rated-excellent .rte-content p strong {
  font-weight: 800;
}
#cms .anti-microbial-fabric-section {
  padding: 100px 0;
}
@media screen and (min-width: 1551px) {
  #cms .anti-microbial-fabric-section {
    padding: 145px 0;
  }
}
@media screen and (max-width: 991px) {
  #cms .anti-microbial-fabric-section {
    padding: 0;
  }
}
#cms .anti-microbial-fabric-section .elementor-container {
  max-width: 1445px;
  width: 95%;
}
@media screen and (max-width: 991px) {
  #cms .anti-microbial-fabric-section .elementor-container {
    width: 100%;
  }
}
#cms .anti-microbial-fabric-section .elementor-container .elementor-row {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 991px) {
  #cms .anti-microbial-fabric-section .elementor-container .elementor-row {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  #cms .anti-microbial-fabric-section .elementor-container .elementor-row .elementor-column {
    width: 100%;
  }
}
#cms .anti-microbial-fabric-section .content-block {
  max-width: 520px;
  padding: 0 15px;
}
@media screen and (min-width: 1551px) {
  #cms .anti-microbial-fabric-section .content-block {
    max-width: 650px;
  }
}
@media screen and (max-width: 991px) {
  #cms .anti-microbial-fabric-section .content-block {
    margin-top: 40px;
    margin-bottom: 75px;
    max-width: 100%;
  }
}
#cms .anti-microbial-fabric-section h2 {
  font-size: 38px;
  line-height: 55px;
  font-weight: 800;
  font-family: "mixta-pro";
}
@media screen and (min-width: 1551px) {
  #cms .anti-microbial-fabric-section h2 {
    font-size: 53px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  #cms .anti-microbial-fabric-section h2 {
    font-size: 32px;
    margin-bottom: 0;
    text-align: justify;
    line-height: 47px;
  }
}
#cms .anti-microbial-fabric-section .top-para p {
  font-size: 24px;
  line-height: 37.5px;
  font-weight: 400;
  margin-bottom: 0px;
}
@media screen and (min-width: 1551px) {
  #cms .anti-microbial-fabric-section .top-para p {
    font-size: 27px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  #cms .anti-microbial-fabric-section .top-para p {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 575px) {
  #cms .anti-microbial-fabric-section .top-para p {
    width: 300px;
  }
}
@media screen and (max-width: 575px) {
  #cms .anti-microbial-fabric-section .elementor-image img {
    height: 345px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 991px) and (min-width: 575px) {
  #cms .anti-microbial-fabric-section .elementor-image img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-item {
  border: none;
  border-bottom: 1px solid #ccc;
}
#cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.5px;
  padding: 20px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
#cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title.active .elementor-accordion-icon:after {
  background-image: url("../../assets/img/white-minus.svg");
  height: 3px;
}
@media screen and (min-width: 1551px) {
  #cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title {
    padding: 25px 0;
    font-size: 21px;
  }
}
@media screen and (max-width: 991px) {
  #cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title {
    font-size: 16px;
    line-height: 27px;
    padding: 15px 0;
  }
}
#cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title .elementor-accordion-icon {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: #2D2D2D;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (max-width: 991px) {
  #cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title .elementor-accordion-icon {
    height: 30px;
    width: 30px;
  }
}
#cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title .elementor-accordion-icon:after {
  content: "";
  display: block;
  background-image: url("../../assets/img/white-plus.svg");
  height: 12px;
  width: 12px;
  background-repeat: no-repeat;
}
#cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title .elementor-accordion-icon .fa {
  display: none;
}
#cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-content {
  border-top: none;
  padding: 0;
  padding-bottom: 15px;
}
@media screen and (min-width: 991px) {
  #cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-content {
    max-width: 570px;
    padding-bottom: 25px;
  }
}
#cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-content p {
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 25.5px;
}
@media screen and (min-width: 1551px) {
  #cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-content p {
    font-size: 18px;
    line-height: 27.5px;
  }
}
@media screen and (max-width: 991px) {
  #cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-content p {
    font-size: 13px;
    line-height: 20px;
  }
}
#cms .anti-microbial-fabric-section .elementor-widget-accordion .elementor-accordion-content p a {
  text-decoration: underline !important;
  color: #383838;
}

#contact .captcha_contact label, #cms .captcha_contact label {
  display: none;
}
#contact .pa-captcha-infs, #cms .pa-captcha-infs {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media (min-width: 768px) {
  .cms-id-39 .elementor-column-gap-default .elementor-element-populated {
    padding: 0;
  }
}
#cms.cms-id-38 .elementor-element.elementor-element-nj3fygq {
  background-size: 100% auto;
}

#cms .own-fabric-make-it-personal.how-to-care-guide p {
  width: 90%;
  margin: auto;
}

@media (max-width: 768px) {
  #cms .own-fabric-make-it-personal.how-to-care-guide p {
    width: 100%;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .cms-id-38 .elementor-column-gap-default .elementor-element-populated {
    padding: 0;
  }
}
#cms.cms-id-38 .page-header {
  display: none;
}

#cms .contact-us-section.business-page {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section.business-page {
    margin-bottom: 50px;
  }
}
#cms .contact-us-section.business-page .contact-us-column .contact-us-form .sd_form .form-container .sd_form-group {
  background: #F5F5F5;
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section.business-page .contact-us-column .contact-us-form .sd_form .form-container .sd_form-group .captcha_contact .realperson-text, #cms .contact-us-section.business-page .contact-us-column .contact-us-form .sd_form .form-container .sd_form-group .captcha_contact .realperson-regen {
    color: #383838 !important;
  }
}
#cms .contact-us-section.cube-seating-page .contact-us-column .contact-us-form .sd_form .form-container .sd_form-group {
  background: #F5F5F5;
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section.cube-seating-page .contact-us-column .contact-us-form .sd_form .form-container .sd_form-group {
    background: #606C6A;
  }
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section .get-a-quote-column .elementor-element-populated {
    max-height: 460px;
    background-position: center;
    background-size: unset;
  }
}
@media screen and (max-width: 991px) {
  #cms .contact-us-section {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media screen and (min-width: 992px) {
  #cms .contact-us-section {
    max-width: 1437px;
    margin: auto;
  }
}
#cms .contact-us-section .get-a-quote-column .elementor-widget-wrap {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section .get-a-quote-column .elementor-widget-wrap .heading .elementor-widget-container {
    padding-top: 50px;
    padding-bottom: 12px;
  }
}
#cms .contact-us-section .get-a-quote-column .elementor-widget-wrap .heading .elementor-widget-container .elementor-heading-title span {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 83.077% */
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section .get-a-quote-column .elementor-widget-wrap .heading .elementor-widget-container .elementor-heading-title span {
    font-size: calc(41px + 0.390625vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .contact-us-section .get-a-quote-column .elementor-widget-wrap .heading .elementor-widget-container .elementor-heading-title span {
    font-size: 48px;
  }
}
#cms .contact-us-section .get-a-quote-column .elementor-widget-wrap .text .elementor-widget-container .elementor-text-editor {
  max-width: 485px;
  margin: auto;
}
#cms .contact-us-section .get-a-quote-column .elementor-widget-wrap .text .elementor-widget-container .elementor-text-editor p {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 31.5px; /* 121.154% */
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section .get-a-quote-column .elementor-widget-wrap .text .elementor-widget-container .elementor-text-editor p {
    font-size: calc(18px + 0.390625vw);
    line-height: 118.421%;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .contact-us-section .get-a-quote-column .elementor-widget-wrap .text .elementor-widget-container .elementor-text-editor p {
    font-size: 22px;
    line-height: 26.5px;
    text-align: left;
  }
}
#cms .contact-us-section .contact-us-column .contact-us-form.contact-us-form-white-label label {
  color: #383838 !important;
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display {
  display: block;
  margin: 0;
  padding: 0;
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container {
  width: 100%;
  margin: 0;
  padding: 0;
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .form-header {
  display: none;
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group {
  max-width: 100%;
  border-radius: unset;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group {
    padding: 25px;
  }
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form {
  max-width: 528px;
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .realperson-text {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .realperson-regen {
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-field {
    padding: 0;
  }
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-field label {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 144.444% */
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-field label {
    color: white;
    font-size: calc(14px + 0.390625vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-field label {
    font-size: 16px;
  }
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-field label:after {
  color: #EA5F55;
  font-family: "mixta-pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-field input {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 26px; /* 173.333% */
  border: 1px solid #DEDEDE;
  border-radius: unset;
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-field input:-ms-input-placeholder {
  color: #B5B5B5;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-field input::placeholder {
  color: #B5B5B5;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-field select {
  border-radius: unset;
  border: 1px solid #DEDEDE;
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-footer {
  margin-top: 50px;
}
@media screen and (max-width: 575px) {
  #cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-footer {
    padding: 0 7px;
    margin-top: 25px;
  }
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-footer .sd_form_submit {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 330px;
  padding: 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #383838;
  text-transform: capitalize;
  border-radius: unset;
  font-family: "Geologica";
  font-weight: 600;
  line-height: 22.5px; /* 132.353% */
  margin: auto;
  min-height: 60px;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
#cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-footer .sd_form_submit:hover {
  background: transparent;
  border: 1px solid #383838;
  color: #383838;
}
@media screen and (max-width: 768px) {
  #cms .contact-us-section .contact-us-column .contact-us-form #module-sd_customform-display .container .form-container .sd_form-group form .row .form-footer .sd_form_submit {
    max-width: 100%;
  }
}
#cms .faq-list-section .faq-list-column .faq-heading {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #cms .faq-list-section .faq-list-column .faq-heading .elementor-widget-container .elementor-heading-title {
    text-align: start;
  }
}
#cms .faq-list-section .faq-list-column .faq-heading .elementor-widget-container .elementor-heading-title span {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
@media screen and (max-width: 768px) {
  #cms .faq-list-section .faq-list-column .faq-heading .elementor-widget-container .elementor-heading-title span {
    font-size: calc(23px + 0.390625vw);
    line-height: 28.2px;
  }
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row {
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 {
    padding: 0;
  }
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .anchor-desc {
  padding-top: 69px;
  display: none !important;
}
@media screen and (max-width: 991px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .anchor-desc {
    padding-top: 38px;
    padding-bottom: 30px;
    display: none !important;
  }
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .anchor-desc .text-center {
  color: #383838;
  text-align: left !important;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .anchor-desc .text-center {
    font-size: calc(23px + 0.390625vw);
    line-height: 28.2px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .anchor-desc .text-center {
    font-size: 26px;
    line-height: 30.2px;
  }
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion {
  border-bottom: 1px solid #D8D8D8;
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .title {
  background: unset;
  border-radius: unset;
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .title:hover {
  background: unset;
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .title .section-title span {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 33.2px; /* 132.8% */
}
@media screen and (max-width: 768px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .title .section-title span {
    font-size: calc(18px + 0.390625vw);
    line-height: 23.2px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .title .section-title span {
    font-size: 21px;
    line-height: 25.2px;
  }
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content {
  max-width: 1018px;
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p {
    font-size: calc(12px + 0.390625vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p {
    font-size: 14px;
  }
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p span {
  font-weight: 250 !important;
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p a {
  font-weight: 250 !important;
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team {
  display: -ms-flexbox;
  display: flex;
  color: #606C6A;
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 250;
  line-height: 33.2px; /* 184.444% */
  margin-top: 57px;
  margin-bottom: 67px;
}
@media screen and (max-width: 768px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team {
    font-size: calc(12px + 0.390625vw);
    line-height: 20px;
    display: block;
    margin-top: 31px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team {
    font-size: 15px;
    line-height: 24px;
    margin-top: 31px;
    margin-bottom: 30px;
  }
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content {
  margin-left: 5px;
}
#cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content p a {
  text-decoration: underline;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content p a {
    font-size: calc(12px + 0.390625vw);
    line-height: 20px;
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .faq-list-section .faq-list-column .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content p a {
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) {
  #cms .more-to-explore {
    margin-top: 73px;
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 480px) {
  #cms .more-to-explore {
    -ms-grid-column-align: center;
        justify-items: center;
  }
}
#cms .more-to-explore .heading {
  margin-bottom: 37px;
}
@media screen and (max-width: 768px) {
  #cms .more-to-explore .heading {
    margin-bottom: 15px;
  }
}
#cms .more-to-explore .heading h2 {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px; /* 144% */
}
@media screen and (max-width: 768px) {
  #cms .more-to-explore .heading h2 {
    font-size: 20px;
    line-height: normal;
  }
}
#cms .more-to-explore .text {
  row-gap: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  column-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  #cms .more-to-explore .text {
    -ms-flex-pack: start;
        justify-content: start;
  }
}
#cms .more-to-explore .text .explore {
  border-radius: 70px;
  border: 1px solid #383838;
}
@media screen and (max-width: 575px) {
  #cms .more-to-explore .text .explore {
    -ms-flex: auto;
        flex: auto;
  }
}
#cms .more-to-explore .text .explore a {
  border-radius: 70px;
  padding: 10px 30px;
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px; /* 240% */
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 575px) {
  #cms .more-to-explore .text .explore a {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #cms .more-to-explore .text .explore a {
    font-size: calc(14px + 0.390625vw);
    padding: 0 15px;
    height: 43px;
  }
}
@media screen and (max-width: 575px) {
  #cms .more-to-explore .text .explore a {
    height: 38px;
  }
}
#cms .more-to-explore .text .explore a:hover {
  background: #383838;
  color: #fff;
}
#cms .explore-more-heading-section .explore-more-heading-column .heading .elementor-widget-container .elementor-heading-title span {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px; /* 144% */
}
@media screen and (max-width: 768px) {
  #cms .explore-more-heading-section .explore-more-heading-column .heading .elementor-widget-container .elementor-heading-title span {
    font-size: calc(19px + 0.390625vw);
  }
}
#cms .explore-more-heading-section .explore-more-heading-column .text .elementor-widget-container .elementor-text-editor {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  column-gap: 15px;
}
@media screen and (max-width: 768px) {
  #cms .explore-more-heading-section .explore-more-heading-column .text .elementor-widget-container .elementor-text-editor {
    display: block;
    margin-top: 10px;
  }
}
#cms .explore-more-heading-section .explore-more-heading-column .text .elementor-widget-container .elementor-text-editor .seatings {
  border-radius: 70px;
  border: 1px solid #383838;
}
#cms .explore-more-heading-section .explore-more-heading-column .text .elementor-widget-container .elementor-text-editor .seatings a {
  padding: 25px;
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px; /* 240% */
}
@media screen and (max-width: 768px) {
  #cms .explore-more-heading-section .explore-more-heading-column .text .elementor-widget-container .elementor-text-editor .seatings a {
    font-size: calc(15px + 0.390625vw);
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  #cms .explore-more-heading-section .explore-more-heading-column .explore-more-heading-section .elementor-row {
    column-gap: 10px;
    -ms-flex-wrap: unset;
        flex-wrap: unset;
  }
  #cms .explore-more-heading-section .explore-more-heading-column .explore-more-heading-section .elementor-row .elementor-column .elementor-text-editor .seatings {
    padding: 0 15px;
    text-align: center;
    width: 100%;
  }
  #cms .explore-more-heading-section .explore-more-heading-column .explore-more-heading-section .elementor-row .elementor-column .elementor-text-editor .seatings a {
    padding: 0;
  }
}
#cms #main-page-content #wrapper #content-wrapper .page-content > .sd-anchor-list {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .world-class-seating-section {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section {
  max-width: 778px;
  margin: auto;
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .tag-line {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .tag-line {
    margin-bottom: 20px;
  }
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .tag-line p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 13px;
  font-style: normal;
  font-weight: 250;
  line-height: 184.615%;
  letter-spacing: 1.17px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .tag-line p {
    font-size: calc(11px + 0.390625vw);
  }
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .heading {
  margin-bottom: 20px;
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .heading h2 {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 83.077%;
}
@media screen and (max-width: 768px) {
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .heading h2 {
    font-size: calc(23px + 0.390625vw);
  }
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .text {
  margin-bottom: 37px;
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .text p {
  color: black;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 160.526%;
}
@media screen and (max-width: 768px) {
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .text p {
    font-size: calc(13px + 0.390625vw);
    line-height: 18.5px;
  }
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .text .category-description-outer .learn-more-description {
  display: none;
}
@media screen and (max-width: 768px) {
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .text .category-description-outer .learn-more-description {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .text .category-description-outer .category-description {
    overflow: hidden;
    margin-bottom: 5px;
  }
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .text .category-description-outer .learn-more-description {
  text-decoration: underline;
  font-size: calc(13px + 0.390625vw);
  line-height: 18.5px;
  font-family: "mixta-pro";
  color: black;
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote {
  display: -ms-flexbox;
  display: flex;
  max-width: 275px;
  height: 68px;
  padding: 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: auto;
  border: 1px solid #383838;
  margin-top: 160px;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote {
    max-width: 100%;
    height: 46px;
    margin-top: 0px;
  }
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote a {
    font-size: 16px;
    font-weight: 700;
  }
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote a {
  color: #383838;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 132.353% */
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote:hover {
  background: #383838;
}
@media screen and (max-width: 768px) {
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote:hover {
    background: #fff;
  }
}
#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote:hover a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote:hover a {
    background: #383838;
  }
}
#cms .personalised-quote-section .personalised-quote-column .heading .elementor-widget-container .elementor-heading-title span {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: 47px; /* 180.769% */
}
@media screen and (max-width: 768px) {
  #cms .personalised-quote-section .personalised-quote-column .heading .elementor-widget-container .elementor-heading-title span {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #cms .personalised-quote-section .personalised-quote-column .heading .elementor-widget-container .elementor-heading-title span {
    font-size: 22px;
    line-height: 28px;
  }
}
#cms .personalised-quote-section .personalised-quote-column .text .elementor-widget-container .elementor-text-editor p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 22.5px; /* 102.273% */
}
@media screen and (max-width: 768px) {
  #cms .personalised-quote-section .personalised-quote-column .text .elementor-widget-container .elementor-text-editor p {
    font-size: calc(12px + 0.390625vw);
    max-width: 80%;
    margin: auto;
    line-height: normal;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .personalised-quote-section .personalised-quote-column .text .elementor-widget-container .elementor-text-editor p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .personalised-quote-section .personalised-quote-column .text .elementor-widget-container .elementor-text-editor p {
    font-size: 21px;
    line-height: 28px;
  }
}
#cms .personalised-quote-section .personalised-quote-column .text .elementor-widget-container .elementor-text-editor p span {
  color: #606C6A;
  font-family: "Geologica";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #cms .personalised-quote-section .personalised-quote-column .text .elementor-widget-container .elementor-text-editor p span {
    font-size: calc(12px + 0.390625vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .personalised-quote-section .personalised-quote-column .text .elementor-widget-container .elementor-text-editor p span {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .personalised-quote-section .personalised-quote-column .text .elementor-widget-container .elementor-text-editor p span {
    font-size: 21px;
    line-height: 28px;
  }
}
#cms .personalised-quote-section .personalised-quote-column .text .elementor-widget-container .elementor-text-editor p span:hover {
  color: #383838;
}
#cms .six-column-section .elementor-container {
  max-width: 100%;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap:has(.testimonials) {
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper {
  margin: 140px 0;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper {
    margin-top: 25px;
    margin-bottom: 37px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper {
    margin-top: 40px;
    margin-bottom: 50px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-img {
  margin-bottom: 37px;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-img {
    margin-bottom: 16px;
  }
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-img img {
    max-width: 42px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-img {
    margin-bottom: 22px;
  }
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-img img {
    max-width: 52px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-img {
    margin-bottom: 26px;
  }
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-img img {
    max-width: 62px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
  text-align: center;
  font-family: "mixta-pro";
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 90% */
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: calc(23px + 0.390625vw);
    line-height: 28px;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: 28px;
    line-height: 32px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description {
  max-width: 586px;
  margin: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description {
    max-width: 80%;
    margin-bottom: 0;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
  color: #fff;
  text-align: center;
  font-family: "Geologica";
  font-size: 24px;
  font-style: normal;
  font-weight: 250;
  line-height: 36.2px; /* 150.833% */
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p a {
  color: #fff;
  font-family: "Geologica";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36.2px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p a {
    font-size: calc(12px + 0.390625vw);
    line-height: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p a {
    font-size: 15px;
    line-height: 20px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p a {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: calc(12px + 0.390625vw);
    line-height: normal;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: 15px;
    line-height: 20px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .clients-say .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: 20px;
    line-height: 28px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials {
  position: unset;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials {
    padding: 30px 0px 70px 0px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel {
  overflow: hidden;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper {
  max-width: 610px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content .testimonial-content {
    max-width: 245px;
    margin: auto;
  }
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content .testimonial-content img {
    max-height: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content .testimonial-content {
    padding-left: 35px;
    padding-right: 35px;
  }
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content .testimonial-content img {
    max-height: 18px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content .testimonial-content {
    padding-left: 80px;
    padding-right: 80px;
  }
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content .testimonial-content img {
    max-height: 20px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content .testimonial-content p {
  color: #fff;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 37px;
  font-style: italic;
  font-weight: 400;
  line-height: 40.5px; /* 109.459% */
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content .testimonial-content p {
    font-size: 20px;
    line-height: 25px;
    margin-top: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content .testimonial-content p {
    font-size: 22px;
    line-height: 25px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-content .testimonial-content p {
    font-size: 26px;
    line-height: 32px;
    margin-top: 34px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details .elementor-testimonial-name {
  color: #fff;
  text-align: center;
  font-family: "Geologica";
  font-size: 19px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 118.421% */
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details .elementor-testimonial-name {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details .elementor-testimonial-name {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner .elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details .elementor-testimonial-name {
    font-size: calc(12px + 0.390625vw);
    line-height: normal;
    margin-bottom: 0;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-pagination {
  position: absolute;
  bottom: 35px;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .elementor-testimonial-carousel .swiper-pagination {
    bottom: 10px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-prev {
  left: 30px;
}
@media screen and (min-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-prev:after {
    content: "";
    background-image: url("../../assets/img/white-bg-arrow-left.svg"); /* Replace with actual image path */
    background-size: contain; /* Ensure the image scales properly */
    background-repeat: no-repeat;
    background-position: center;
    width: 46px; /* Adjust based on the image size */
    height: 46px; /* Adjust based on the image size */
    z-index: 2; /* Ensure it's above other elements */
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-prev {
    left: 20px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-next {
  right: 30px;
}
@media screen and (min-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-next:after {
    content: "";
    background-image: url("../../assets/img/white-bg-arrow-right.svg"); /* Replace with actual image path */
    background-size: contain; /* Ensure the image scales properly */
    background-repeat: no-repeat;
    background-position: center;
    width: 46px; /* Adjust based on the image size */
    height: 46px; /* Adjust based on the image size */
    z-index: 2; /* Ensure it's above other elements */
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-next {
    right: 20px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-prev, #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-prev, #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-next {
    width: 12px;
    height: 12px;
    background: transparent;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-prev, #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-next {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-prev, #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button:after {
    width: 12px;
    height: 12px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button.swiper-button-next:after {
  background-image: url("../../assets/img/swiper-white-arrow.svg");
  filter: brightness(0) saturate(100%) invert(17%) sepia(1%) saturate(303%) hue-rotate(314deg) brightness(95%) contrast(84%);
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button.swiper-button-next:after {
    filter: unset;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button.swiper-button-prev:after {
  background-image: url("../../assets/img/swiper-white-arrow.svg");
  rotate: 180deg;
  filter: brightness(0) saturate(100%) invert(17%) sepia(1%) saturate(303%) hue-rotate(314deg) brightness(95%) contrast(84%);
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .first-section .elementor-container .elementor-row .first-section-column .elementor-column-wrap .elementor-widget-wrap .testimonials .elementor-testimonial-carousel-wrapper .swiper-button.swiper-button-prev:after {
    filter: unset;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap {
  -ms-flex-line-pack: center;
      align-content: center;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .img-box {
  height: 100%;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .img-box .elementor-widget-container {
  height: 100%;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .img-box .elementor-widget-container .elementor-image {
  height: 100%;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .img-box .elementor-widget-container .elementor-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube {
  padding-left: 15px;
  padding-right: 15px;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-img {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-img {
    margin-bottom: 15px;
  }
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-img img {
    max-width: 42px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-img {
    margin-bottom: 20px;
  }
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-img img {
    max-width: 52px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-img {
    margin-bottom: 30px;
  }
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-img img {
    max-width: 58px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content {
  max-width: 662px;
  margin: auto;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 53.2px; /* 110.833% */
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: 26px;
    line-height: 30px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: 28px;
    line-height: 34px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 24px;
  font-style: normal;
  font-weight: 250;
  line-height: 36.2px; /* 150.833% */
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: calc(12px + 0.390625vw);
    line-height: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: 15px;
    line-height: 20px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: 18px;
    line-height: 24px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p a {
  color: #606C6A;
  font-family: "Geologica";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36.2px;
  text-decoration: underline;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p a:hover {
  color: #383838;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p a {
    font-size: calc(12px + 0.390625vw);
    line-height: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p a {
    font-size: 15px;
    line-height: 20px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .second-section .elementor-container .elementor-row .second-section-column .elementor-widget-wrap .hire-cube .elementor-widget-container .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p a {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section.third-section-copy .elementor-widget-wrap {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand {
    -ms-flex-order: 1;
        order: 1;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap {
  max-width: 641px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap {
    padding: 36px 52px;
  }
}
@media screen and (min-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .heading {
  margin-bottom: 21px;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .heading {
    margin-bottom: 10px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .heading .elementor-heading-title {
  color: #fff;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 53.2px; /* 110.833% */
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .heading .elementor-heading-title {
    line-height: 0;
  }
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .heading .elementor-heading-title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .heading .elementor-heading-title {
    font-size: 26px;
    line-height: 30px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .heading .elementor-heading-title {
    font-size: 36px;
    line-height: 40px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .text {
  max-width: 586px;
  margin: auto;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .text {
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .text {
    padding-bottom: 25px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .text .elementor-text-editor p {
  color: #fff;
  text-align: center;
  font-family: "Geologica";
  font-size: 24px;
  font-style: normal;
  font-weight: 250;
  line-height: 36.2px; /* 150.833% */
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .text .elementor-text-editor p {
    font-size: calc(12px + 0.390625vw);
    line-height: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .text .elementor-text-editor p {
    font-size: 15px;
    line-height: 20px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .text .elementor-text-editor p {
    font-size: 18px;
    line-height: 24px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .get-quote-btn {
  max-width: 275px;
  margin: auto;
}
@media screen and (max-width: 992px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .get-quote-btn {
    max-width: 205px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .get-quote-btn .elementor-widget-container .elementor-button-wrapper a {
  border-radius: unset;
  padding: 22px 20px;
  -ms-flex-line-pack: center;
      align-content: center;
  background: #606C6A;
  color: #fff;
  border: 1px solid #fff;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .get-quote-btn .elementor-widget-container .elementor-button-wrapper a:hover {
  background: #fff !important;
  color: #606C6A !important;
}
@media screen and (max-width: 992px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .get-quote-btn .elementor-widget-container .elementor-button-wrapper a {
    padding: 11px 20px;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .get-quote-btn .elementor-widget-container .elementor-button-wrapper a .elementor-button-content-wrapper .elementor-button-text {
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px; /* 132.353% */
}
@media screen and (max-width: 768px) {
  #cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .get-quote-btn .elementor-widget-container .elementor-button-wrapper a .elementor-button-content-wrapper .elementor-button-text {
    font-size: 16px;
    font-weight: 700;
  }
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .get-quote-btn .elementor-widget-container .elementor-button-wrapper .elementor-button-link:hover {
  border: 1px solid #fff;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column.premium-brand .elementor-widget-wrap .get-quote-btn .elementor-widget-container .elementor-button-wrapper .elementor-button-link:hover .elementor-button-text {
  color: #606C6A;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column .elementor-widget-image {
  height: 100%;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column .elementor-widget-image .elementor-widget-container {
  height: 100%;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column .elementor-widget-image .elementor-widget-container .elementor-image {
  height: 100%;
}
#cms .six-column-section .elementor-container .elementor-column-wrap .elementor-widget-wrap .third-section .elementor-container .elementor-row .third-section-column .elementor-widget-image .elementor-widget-container .elementor-image img {
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#cms .care-guide-main-heading-section .care-guide-main-heading-column .elementor-widget-wrap {
  max-width: 780px;
  margin: auto;
}
#cms .care-guide-main-heading-section .care-guide-main-heading-column .elementor-widget-wrap .heading .elementor-heading-title span {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 83.077% */
  margin-bottom: 21px;
  display: block;
}
@media screen and (max-width: 768px) {
  #cms .care-guide-main-heading-section .care-guide-main-heading-column .elementor-widget-wrap .heading .elementor-heading-title span {
    font-size: 36px;
    line-height: normal;
    margin-bottom: 15px;
  }
}
#cms .care-guide-main-heading-section .care-guide-main-heading-column .elementor-widget-wrap .text .elementor-text-editor p {
  color: #000;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.5px; /* 160.526% */
}
@media screen and (max-width: 768px) {
  #cms .care-guide-main-heading-section .care-guide-main-heading-column .elementor-widget-wrap .text .elementor-text-editor p {
    font-size: 15px;
    line-height: 160%;
  }
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row {
  column-gap: 24px;
}
@media screen and (max-width: 768px) {
  #cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column {
    margin-bottom: 20px;
  }
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column:hover .image-box-block .elementor-image-box-content .elementor-image-box-titleh3 {
  color: #606C6A !important;
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column:hover .image-box-block .elementor-image-box-content .elementor-image-box-title a {
  color: #606C6A !important;
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column:hover .elementor-image-box-description .btn-primary {
  background: #606C6A !important;
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column .image-box-block .elementor-image-box-img {
  margin-bottom: 38px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column .image-box-block .elementor-image-box-img {
    margin-bottom: 24px;
  }
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column .image-box-block .elementor-image-box-img img {
  transition: transform 1s ease-in-out;
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column .image-box-block .elementor-image-box-img img:hover {
  transform: scale(1.05);
  transition: 1s ease-in-out;
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column .image-box-block .elementor-image-box-content .elementor-image-box-title {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 36.9px; /* 141.923% */
  margin-bottom: 32px;
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column .image-box-block .elementor-image-box-content .elementor-image-box-title a {
  color: #383838 !important;
}
@media screen and (max-width: 768px) {
  #cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column .image-box-block .elementor-image-box-content .elementor-image-box-title {
    font-size: 23px;
    line-height: 26px;
  }
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column .image-box-block .elementor-image-box-content .elementor-image-box-description p a {
  display: -ms-flexbox;
  display: flex;
  width: 199px;
  height: 60px;
  padding: 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: auto;
  color: #fff;
  font-family: "Geologica";
  font-size: 14px;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
  background: #383838;
  transition: background-color ease-in-out 300ms;
}
#cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column .image-box-block .elementor-image-box-content .elementor-image-box-description p a:hover {
  background: #606C6A;
}
@media screen and (max-width: 768px) {
  #cms .four-pages-section .four-pages-column .elementor-section .elementor-row .image-box-block-column .image-box-block .elementor-image-box-content .elementor-image-box-description p a {
    height: 46px;
    width: 100%;
  }
}
#cms .caring-stool-section .text-col .elementor-widget-wrap {
  max-width: 572px;
  margin: auto;
}
#cms .caring-stool-section .text-col .elementor-widget-wrap .heading {
  max-width: 457px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #cms .caring-stool-section .text-col .elementor-widget-wrap .heading {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  #cms .caring-stool-section .text-col .elementor-widget-wrap .heading .elementor-heading-title {
    text-align: left;
  }
}
#cms .caring-stool-section .text-col .elementor-widget-wrap .heading .elementor-heading-title span {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 47px; /* 130.556% */
}
@media screen and (max-width: 768px) {
  #cms .caring-stool-section .text-col .elementor-widget-wrap .heading .elementor-heading-title span {
    font-size: 26px;
    line-height: 130%;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .caring-stool-section .text-col .elementor-widget-wrap .heading .elementor-heading-title span {
    font-size: 28px;
    line-height: 130%;
  }
}
#cms .caring-stool-section .text-col .elementor-widget-wrap .text .elementor-text-editor p {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .caring-stool-section .image-col .elementor-element-populated {
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
}
#cms .simple-para-section .simple-para-column .elementor-widget-wrap .text {
  max-width: 908px;
  margin: auto;
}
#cms .simple-para-section .simple-para-column .elementor-widget-wrap .text .elementor-text-editor p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 31.5px; /* 143.182% */
}
@media screen and (max-width: 768px) {
  #cms .simple-para-section .simple-para-column .elementor-widget-wrap .text .elementor-text-editor p {
    font-size: 18px;
    line-height: 143%;
  }
}
#cms .rating-section .rating-column .elementor-widget-wrap .elementor-image-box-wrapper {
  max-width: 700px;
  margin: auto;
  -ms-flex-align: center;
      align-items: center;
  padding: 18px;
}
@media screen and (max-width: 768px) {
  #cms .rating-section .rating-column .elementor-widget-wrap .elementor-image-box-wrapper {
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  #cms .rating-section .rating-column .elementor-widget-wrap .elementor-image-box-wrapper .elementor-image-box-img {
    margin: 0;
    width: 50%;
  }
}
#cms .rating-section .rating-column .elementor-widget-wrap .elementor-image-box-wrapper .elementor-image-box-description p {
  color: #fff;
  font-family: "Geologica";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 49.123px; /* 223.286% */
  margin: 0;
}
@media screen and (max-width: 768px) {
  #cms .rating-section .rating-column .elementor-widget-wrap .elementor-image-box-wrapper .elementor-image-box-description p {
    font-size: 18px;
    line-height: 29px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .rating-section .rating-column .elementor-widget-wrap .elementor-image-box-wrapper .elementor-image-box-description p {
    font-size: 20px;
    line-height: 32px;
  }
}
#cms .rating-section .rating-column .elementor-widget-wrap .elementor-image-box-wrapper .elementor-image-box-description p .rated {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #cms .rating-section .rating-column .elementor-widget-wrap .elementor-image-box-wrapper .elementor-image-box-content {
    width: 50%;
  }
}
#cms .bg-image-right-text-overlay-section {
  padding: 0 65px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 575px) {
  #cms .bg-image-right-text-overlay-section {
    padding: 0 15px;
  }
}
#cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column {
  padding: 100px 0;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column {
    padding: 50px 0;
  }
}
#cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap {
  background: #fff;
}
#cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap {
  max-width: 570px;
  margin: 100px auto 40px auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap {
    margin: 30px auto 0 auto;
  }
}
#cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap .image-box {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap .image-box {
    margin-bottom: 20px;
  }
}
#cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap .image-box .elementor-image-box-wrapper .elementor-image-box-img {
  width: 10%;
  margin-right: 35px;
}
#cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap .image-box .elementor-image-box-wrapper .elementor-image-box-content {
  max-width: 474px;
}
#cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap .image-box .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
  color: #383838;
  font-family: "Geologica";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 17.903px; /* 213.195% */
  margin: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap .image-box .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap .image-box .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: 20px;
    line-height: 32px;
  }
}
#cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap .image-box .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap .image-box .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: 13px;
    line-height: 18px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .bg-image-right-text-overlay-section .bg-image-right-text-overlay-column .text-section .text-column .elementor-column-wrap .elementor-widget-wrap .image-box .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: 14px;
    line-height: 20px;
  }
}

#cms .bespoke-cube-seating-desktop-banner .elementor-image img, #category .bespoke-cube-seating-desktop-banner .elementor-image img {
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#cms .sector-we-target-section .elementor-container, #category .sector-we-target-section .elementor-container {
  max-width: 1464px;
  margin: auto;
}
#cms .sector-we-target-section .sector-heading-section .heading .elementor-heading-title span, #category .sector-we-target-section .sector-heading-section .heading .elementor-heading-title span {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 47px; /* 102.174% */
}
@media screen and (max-width: 768px) {
  #cms .sector-we-target-section .sector-heading-section .heading .elementor-heading-title span, #category .sector-we-target-section .sector-heading-section .heading .elementor-heading-title span {
    font-size: 26px;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  #cms .sector-we-target-section .top-section, #cms .sector-we-target-section .middle-section, #cms .sector-we-target-section .bottom-section, #cms .sector-we-target-section .second-last-section, #cms .sector-we-target-section .last-section, #category .sector-we-target-section .top-section, #category .sector-we-target-section .middle-section, #category .sector-we-target-section .bottom-section, #category .sector-we-target-section .second-last-section, #category .sector-we-target-section .last-section {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #cms .sector-we-target-section .middle-section .text-col, #cms .sector-we-target-section .second-last-section .text-col, #category .sector-we-target-section .middle-section .text-col, #category .sector-we-target-section .second-last-section .text-col {
    -ms-flex-order: 1;
        order: 1;
  }
}
@media screen and (max-width: 767px) {
  #cms .sector-we-target-section .text-col, #category .sector-we-target-section .text-col {
    padding: 0 15px;
  }
}
#cms .sector-we-target-section .text-col .elementor-column-wrap, #category .sector-we-target-section .text-col .elementor-column-wrap {
  padding: 25px 15px 35px 15px;
}
@media screen and (min-width: 768px) {
  #cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap {
    padding: 35px;
    max-width: 423px;
    margin: auto;
  }
}
#cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-heading, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-heading {
  margin-bottom: 14px;
}
#cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title {
  text-align: left;
}
#cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title span, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title span {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 42px; /* 116.667% */
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title span, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title span {
    font-size: 22px;
    line-height: normal;
  }
}
@media screen and (max-width: 768px) {
  #cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title span, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title span {
    font-size: 22px;
    line-height: 28px;
  }
}
#cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-text-editor .elementor-text-editor, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-text-editor .elementor-text-editor {
  text-align: left;
}
#cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-text-editor .elementor-text-editor p, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-text-editor .elementor-text-editor p {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-text-editor .elementor-text-editor p, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .elementor-widget-text-editor .elementor-text-editor p {
    font-size: 13px;
    line-height: 18px;
  }
}
#cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .grey-bg .elementor-heading-title span, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .grey-bg .elementor-heading-title span {
  color: #fff;
}
#cms .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .grey-bg .elementor-text-editor p, #category .sector-we-target-section .text-col .elementor-column-wrap .elementor-widget-wrap .grey-bg .elementor-text-editor p {
  color: #fff;
}
#cms .sector-we-target-section.guide-step .image-col, #category .sector-we-target-section.guide-step .image-col {
  aspect-ratio: unset;
}
#cms .sector-we-target-section .image-col, #category .sector-we-target-section .image-col {
  aspect-ratio: 468/260;
}
@media screen and (max-width: 767px) {
  #cms .sector-we-target-section .image-col, #category .sector-we-target-section .image-col {
    padding: 0 15px;
  }
}
#cms .sector-we-target-section .image-col .elementor-widget, #category .sector-we-target-section .image-col .elementor-widget {
  height: 100%;
}
#cms .sector-we-target-section .image-col .elementor-widget .elementor-widget-container, #category .sector-we-target-section .image-col .elementor-widget .elementor-widget-container {
  height: 100%;
}
#cms .sector-we-target-section .image-col .elementor-widget .elementor-widget-container .elementor-image, #category .sector-we-target-section .image-col .elementor-widget .elementor-widget-container .elementor-image {
  height: 100%;
}
#cms .sector-we-target-section .image-col .elementor-widget .elementor-widget-container .elementor-image img, #category .sector-we-target-section .image-col .elementor-widget .elementor-widget-container .elementor-image img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#cms .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .heading .elementor-heading-title span, #category .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .heading .elementor-heading-title span {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px; /* 145.833% */
}
@media screen and (max-width: 768px) {
  #cms .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .heading .elementor-heading-title span, #category .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .heading .elementor-heading-title span {
    font-size: 20px;
    line-height: 28px;
  }
}
#cms .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .text, #category .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .text {
  margin-bottom: 20px;
}
#cms .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .text .elementor-text-editor p, #category .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .text .elementor-text-editor p {
  color: #383838;
  font-family: "Geologica";
  font-size: 24px;
  font-style: normal;
  font-weight: 250;
  line-height: 35px;
}
@media screen and (max-width: 768px) {
  #cms .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .text .elementor-text-editor p, #category .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .text .elementor-text-editor p {
    font-size: 20px;
    line-height: 28px;
  }
}
#cms .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .get-quote-btn, #category .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .get-quote-btn {
  max-width: 275px;
  margin: auto;
}
#cms .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .get-quote-btn .btn-traditional, #category .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .get-quote-btn .btn-traditional {
  padding: 0;
  margin-top: 10px;
}
#cms .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .get-quote-btn .btn-traditional .elementor-button-text, #category .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .get-quote-btn .btn-traditional .elementor-button-text {
  color: #fff;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px; /* 160.714% */
  display: -ms-flexbox;
  display: flex;
  height: 68px;
  padding: 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  transition: background-color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  #cms .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .get-quote-btn .btn-traditional .elementor-button-text, #category .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .get-quote-btn .btn-traditional .elementor-button-text {
    height: 46px;
    font-size: 15px;
  }
}
#cms .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .get-quote-btn .btn-traditional .elementor-button-text:hover, #category .sector-we-target-section .ready-to-transform-section .ready-to-transform-column .get-quote-btn .btn-traditional .elementor-button-text:hover {
  background: #383838;
}
#cms .best-seller-heading-section.best-with-border, #category .best-seller-heading-section.best-with-border {
  border-top: 1px solid #E3E3E3;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  #cms .best-seller-heading-section.best-with-border, #category .best-seller-heading-section.best-with-border {
    border-top: unset;
    padding-top: 0;
  }
}
#cms .best-seller-heading-section .best-seller-heading-column .elementor-widget-wrap, #category .best-seller-heading-section .best-seller-heading-column .elementor-widget-wrap {
  max-width: 520px;
  margin: auto;
}
#cms .best-seller-heading-section .best-seller-heading-column .elementor-widget-wrap .heading .elementor-heading-title span, #category .best-seller-heading-section .best-seller-heading-column .elementor-widget-wrap .heading .elementor-heading-title span {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 93.913% */
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 768px) {
  #cms .best-seller-heading-section .best-seller-heading-column .elementor-widget-wrap .heading .elementor-heading-title span, #category .best-seller-heading-section .best-seller-heading-column .elementor-widget-wrap .heading .elementor-heading-title span {
    font-size: 26px;
    line-height: 32px;
  }
}
#cms .best-seller-heading-section .best-seller-heading-column .elementor-widget-wrap .text .elementor-text-editor p, #category .best-seller-heading-section .best-seller-heading-column .elementor-widget-wrap .text .elementor-text-editor p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .best-seller-heading-section .best-seller-heading-column .elementor-widget-wrap .text .elementor-text-editor p, #category .best-seller-heading-section .best-seller-heading-column .elementor-widget-wrap .text .elementor-text-editor p {
    font-size: 13px;
    line-height: 18px;
  }
}
@media screen and (max-width: 768px) {
  #cms .best-seller-products-section .best-seller-products-column .products-blocks .elementor-products, #category .best-seller-products-section .best-seller-products-column .products-blocks .elementor-products {
    margin-right: -15px;
  }
}
#cms .best-seller-products-section .best-seller-products-column .products-blocks .products, #category .best-seller-products-section .best-seller-products-column .products-blocks .products {
  display: -ms-flexbox !important;
  display: flex !important;
  width: auto !important;
}
@media screen and (max-width: 991px) {
  #cms .best-seller-products-section .best-seller-products-column .products-blocks .products, #category .best-seller-products-section .best-seller-products-column .products-blocks .products {
    -ms-flex-wrap: unset;
        flex-wrap: unset;
  }
}
#cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper {
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 768px) {
  #cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper {
    padding: 0;
    max-width: 100%;
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
  }
}
#cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .thumbnail-container, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .thumbnail-container {
  border: unset;
  border-radius: unset;
}
#cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .thumbnail-container img, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .thumbnail-container img {
  aspect-ratio: 425/425;
}
#cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description {
  padding: 0;
  padding-top: 17px;
}
#cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-title a, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-title a {
  color: #383838 !important;
  font-family: "Geologica";
  font-size: 20px;
  font-style: normal;
  font-weight: 250;
  line-height: 24px; /* 120% */
}
@media screen and (max-width: 768px) {
  #cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-title a, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-title a {
    font-size: 16px;
    line-height: 20.104px;
  }
}
@media screen and (max-width: 768px) {
  #cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-title, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-title {
    text-align: left !important;
    margin-top: 5px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-price-and-shipping, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-price-and-shipping {
    text-align: left !important;
  }
}
#cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-price-and-shipping .product-price strong, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-price-and-shipping .product-price strong {
  color: #383838;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  #cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-price-and-shipping .product-price strong, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-price-and-shipping .product-price strong {
    font-size: 13px;
  }
}
#cms .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-shop-now, #category .best-seller-products-section .best-seller-products-column .products-blocks .products .js-product-miniature-wrapper .product-description .product-shop-now {
  display: none;
}
@media screen and (max-width: 768px) {
  #cms .best-seller-products-section .best-seller-products-column .products-blocks .swiper-pagination, #category .best-seller-products-section .best-seller-products-column .products-blocks .swiper-pagination {
    bottom: auto;
    margin-top: 10px;
  }
}
#cms .let-us-help-section.help-with-border > .elementor-container, #category .let-us-help-section.help-with-border > .elementor-container {
  border-top: 1px solid #E3E3E3;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  #cms .let-us-help-section.help-with-border > .elementor-container, #category .let-us-help-section.help-with-border > .elementor-container {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #cms .let-us-help-section .elementor-row, #category .let-us-help-section .elementor-row {
    gap: 20px;
  }
}
#cms .let-us-help-section .let-us-help-column .elementor-widget-wrap, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap {
  max-width: 690px;
  margin: auto;
  padding: 0px;
}
#cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .heading, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .heading {
  margin-bottom: 10px;
}
#cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .heading .elementor-heading-title span, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .heading .elementor-heading-title span {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 42px; /* 116.667% */
}
@media screen and (max-width: 768px) {
  #cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .heading .elementor-heading-title span, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .heading .elementor-heading-title span {
    font-size: 26px;
    line-height: 32px;
  }
}
#cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .text .elementor-text-editor p, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .text .elementor-text-editor p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .text .elementor-text-editor p, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .text .elementor-text-editor p {
    font-size: 13px;
    line-height: 18px;
    width: 75%;
    margin: auto;
  }
}
#cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  #cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row {
    column-gap: 70px;
  }
}
#cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-title, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-title {
  margin: 0;
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px; /* 178.947% */
}
@media screen and (max-width: 768px) {
  #cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-title, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-title {
    font-size: 15px;
    line-height: 26px;
  }
}
#cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-description p, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-description p {
  margin-bottom: 0;
}
#cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-description p a, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-description p a {
  color: #606C6A;
  font-family: "Geologica";
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: 34px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-description p a, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-description p a {
    font-size: 15px;
    line-height: 26px;
  }
}
#cms .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-description p a:hover, #category .let-us-help-section .let-us-help-column .elementor-widget-wrap .image-box-section .elementor-row .image-box-column .elementor-widget-wrap .elementor-widget-container .elementor-image-box-content .elementor-image-box-description p a:hover {
  color: #383838;
}
#cms .bespoke-cube-seating-mobile-banner, #category .bespoke-cube-seating-mobile-banner {
  display: block;
}
#cms .bespoke-cube-seating-mobile-banner .elementor-image img, #category .bespoke-cube-seating-mobile-banner .elementor-image img {
  width: 100%;
  max-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#cms .bespoke-cube-seating-top .bespoke-cube-content p, #category .bespoke-cube-seating-top .bespoke-cube-content p {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #cms .desktop-main-usp > .elementor-container, #category .desktop-main-usp > .elementor-container {
    overflow: hidden;
  }
  #cms .desktop-main-usp > .elementor-container .elementor-row, #category .desktop-main-usp > .elementor-container .elementor-row {
    -ms-flex-wrap: unset !important;
        flex-wrap: unset !important;
  }
}
#cms .desktop-main-usp .elementor-container .elementor-element-populated, #category .desktop-main-usp .elementor-container .elementor-element-populated {
  margin: 29px 0px 29px 0px;
}
#cms .desktop-main-usp .elementor-container .elementor-row, #category .desktop-main-usp .elementor-container .elementor-row {
  padding: 0 15px;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
#cms .desktop-main-usp .elementor-container .elementor-row .reviews-column .elementor-widget-wrap, #category .desktop-main-usp .elementor-container .elementor-row .reviews-column .elementor-widget-wrap {
  -ms-flex-line-pack: center;
      align-content: center;
}
#cms .desktop-main-usp .elementor-container .elementor-row .elementor-column, #category .desktop-main-usp .elementor-container .elementor-row .elementor-column {
  width: -moz-fit-content;
  width: fit-content;
}
#cms .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper, #category .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
#cms .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-hotspot-image img, #category .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-hotspot-image img {
  max-width: 32px;
  height: 32px;
  display: block;
  margin-right: 10px;
}
@media screen and (min-width: 1024px) and (max-width: 1450px) {
  #cms .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-hotspot-image img, #category .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-hotspot-image img {
    max-width: 24px;
    height: 24px;
  }
}
#cms .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot, #category .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot {
  padding: 0;
  position: unset;
}
#cms .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot .elementor-hotspot-text, #category .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot .elementor-hotspot-text {
  text-decoration: underline;
}
@media screen and (min-width: 1024px) and (max-width: 1450px) {
  #cms .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot .elementor-hotspot-text, #category .desktop-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot .elementor-hotspot-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-height: 992px) {
  #cms .mobile-main-usp .swiper, #category .mobile-main-usp .swiper {
    overflow: unset !important;
  }
  #cms .mobile-main-usp .swiper .swiper-slide, #category .mobile-main-usp .swiper .swiper-slide {
    width: 50% !important;
  }
}
@media screen and (max-width: 1023px) {
  #cms .mobile-main-usp .swiper-wrapper, #category .mobile-main-usp .swiper-wrapper {
    transition-timing-function: linear;
  }
}
@media (max-width: 768px) {
  #cms .mobile-main-usp .swiper-wrapper .swiper-slide, #category .mobile-main-usp .swiper-wrapper .swiper-slide {
    width: auto;
    margin-right: 80px !important;
  }
}
@media (max-width: 380px) {
  #cms .mobile-main-usp .swiper-wrapper .elementor-element-populated, #category .mobile-main-usp .swiper-wrapper .elementor-element-populated {
    margin: 12px;
  }
}
@media screen and (max-width: 768px) {
  #cms .mobile-main-usp > .elementor-container, #category .mobile-main-usp > .elementor-container {
    overflow: hidden;
  }
  #cms .mobile-main-usp > .elementor-container .elementor-row, #category .mobile-main-usp > .elementor-container .elementor-row {
    -ms-flex-wrap: unset !important;
        flex-wrap: unset !important;
  }
}
#cms .mobile-main-usp .elementor-container .elementor-row, #category .mobile-main-usp .elementor-container .elementor-row {
  padding: 0 15px;
}
#cms .mobile-main-usp .elementor-container .elementor-row .reviews-column .elementor-widget-wrap, #category .mobile-main-usp .elementor-container .elementor-row .reviews-column .elementor-widget-wrap {
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column {
    width: 100%;
    max-width: 350px;
  }
}
@media screen and (max-width: 768px) {
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column:not(.swiper-slide), #category .mobile-main-usp .elementor-container .elementor-row .elementor-column:not(.swiper-slide) {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
}
@media screen and (max-width: 768px) {
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap {
    margin: 12px !important;
  }
}
@media screen and (min-width: 1024px) {
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container {
    max-width: 300px;
    margin: auto;
  }
}
#cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper {
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper {
    column-gap: 20px;
  }
}
#cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-hotspot-image img, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-hotspot-image img {
  max-width: 32px;
  height: 32px;
}
@media screen and (min-width: 769px) {
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots {
    width: 100%;
  }
}
#cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot {
  top: 0 !important;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot {
    position: unset;
  }
}
#cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot span, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot span {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-weight: 400;
  line-height: 28.154px; /* 245.614% */
}
@media screen and (max-width: 768px) {
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot span, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot span {
    font-size: calc(15px + 0.390625vw);
  }
}
#cms .elementor-widget-wrap:has(.bespoke-cube-seating-desktop-text):after, #category .elementor-widget-wrap:has(.bespoke-cube-seating-desktop-text):after {
  content: "";
  position: absolute;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  bottom: 0;
}
#cms .elementor-widget-wrap:has(.bespoke-cube-seating-mobile-banner):after, #category .elementor-widget-wrap:has(.bespoke-cube-seating-mobile-banner):after {
  content: "";
  position: absolute;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  bottom: 0;
}
#cms .bespoke-cube-seating-desktop-text, #category .bespoke-cube-seating-desktop-text {
  position: absolute;
  bottom: 80px;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .bespoke-cube-seating-desktop-text, #category .bespoke-cube-seating-desktop-text {
    bottom: 40px;
  }
}
#cms .bespoke-cube-seating-desktop-text .banner-heading, #category .bespoke-cube-seating-desktop-text .banner-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
#cms .bespoke-cube-seating-desktop-text .banner-heading .text h2, #category .bespoke-cube-seating-desktop-text .banner-heading .text h2 {
  color: #fff;
  font-family: "mixta-pro";
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 83.077% */
}
@media screen and (max-width: 768px) {
  #cms .bespoke-cube-seating-desktop-text .banner-heading .text h2, #category .bespoke-cube-seating-desktop-text .banner-heading .text h2 {
    font-size: 32px;
    line-height: 34px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .bespoke-cube-seating-desktop-text .banner-heading .text h2, #category .bespoke-cube-seating-desktop-text .banner-heading .text h2 {
    font-size: 38px;
    text-align: left;
  }
}
#cms .bespoke-cube-seating-desktop-text .banner-heading .text p, #category .bespoke-cube-seating-desktop-text .banner-heading .text p {
  color: #fff;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .bespoke-cube-seating-desktop-text .banner-heading .text p, #category .bespoke-cube-seating-desktop-text .banner-heading .text p {
    font-size: 14px;
    line-height: 20px;
  }
}
#cms .bespoke-cube-seating-desktop-text .banner-heading .btn, #category .bespoke-cube-seating-desktop-text .banner-heading .btn {
  padding: 0;
}
#cms .bespoke-cube-seating-desktop-text .banner-heading .btn a, #category .bespoke-cube-seating-desktop-text .banner-heading .btn a {
  display: -ms-flexbox;
  display: flex;
  width: 276px;
  height: 60px;
  padding: 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #383838;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px; /* 132.353% */
  background: #fff;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
#cms .bespoke-cube-seating-desktop-text .banner-heading .btn a:hover, #category .bespoke-cube-seating-desktop-text .banner-heading .btn a:hover {
  background: #606C6A;
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .bespoke-cube-seating-desktop-text .banner-heading .btn a, #category .bespoke-cube-seating-desktop-text .banner-heading .btn a {
    height: 46px;
    font-size: 15px;
    width: 200px;
  }
}
#cms .b2b-cube-heading-section .b2b-cube-heading-column .heading .elementor-heading-title, #category .b2b-cube-heading-section .b2b-cube-heading-column .heading .elementor-heading-title {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-style: normal;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  #cms .b2b-cube-heading-section .b2b-cube-heading-column .heading .elementor-heading-title, #category .b2b-cube-heading-section .b2b-cube-heading-column .heading .elementor-heading-title {
    font-size: calc(25px + 0.390625vw);
    line-height: 120%; /* 150% */
  }
}
#cms .b2b-cube-heading-section .b2b-cube-heading-column .text .elementor-widget-container .elementor-text-editor, #category .b2b-cube-heading-section .b2b-cube-heading-column .text .elementor-widget-container .elementor-text-editor {
  max-width: 300px;
  margin: auto;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .b2b-cube-heading-section .b2b-cube-heading-column .text .elementor-widget-container .elementor-text-editor, #category .b2b-cube-heading-section .b2b-cube-heading-column .text .elementor-widget-container .elementor-text-editor {
    max-width: 500px;
  }
}
#cms .b2b-cube-heading-section .b2b-cube-heading-column .text .elementor-widget-container .elementor-text-editor p, #category .b2b-cube-heading-section .b2b-cube-heading-column .text .elementor-widget-container .elementor-text-editor p {
  font-family: "Geologica";
  text-align: center;
  font-style: normal;
  font-weight: 250;
}
@media screen and (max-width: 992px) {
  #cms .b2b-cube-heading-section .b2b-cube-heading-column .text .elementor-widget-container .elementor-text-editor p, #category .b2b-cube-heading-section .b2b-cube-heading-column .text .elementor-widget-container .elementor-text-editor p {
    font-size: calc(12px + 0.390625vw);
    line-height: 19px; /* 150% */
  }
}
@media screen and (min-width: 769px) {
  #cms .get-a-quote-btn-section, #category .get-a-quote-btn-section {
    display: none;
  }
}
#cms .get-a-quote-btn-section .get-quote-btn-column .get-quote-btn, #category .get-a-quote-btn-section .get-quote-btn-column .get-quote-btn {
  max-width: 357 pxpx;
  margin: auto;
}
#cms .get-a-quote-btn-section .get-quote-btn-column .get-quote-btn .elementor-button, #category .get-a-quote-btn-section .get-quote-btn-column .get-quote-btn .elementor-button {
  padding: 0;
}
#cms .get-a-quote-btn-section .get-quote-btn-column .get-quote-btn .elementor-button-text, #category .get-a-quote-btn-section .get-quote-btn-column .get-quote-btn .elementor-button-text {
  color: #fff;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px; /* 140.625% */
  display: -ms-flexbox;
  display: flex;
  height: 46px;
  padding: 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .brands-header-section, #category .brands-header-section {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
#cms .brands-header-section .heading .elementor-widget-container .elementor-text-editor p, #category .brands-header-section .heading .elementor-widget-container .elementor-text-editor p {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 29.5px; /* 113.462% */
}
#cms .brands-header-section .heading .elementor-widget-container .elementor-text-editor p span, #category .brands-header-section .heading .elementor-widget-container .elementor-text-editor p span {
  font-style: italic;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #cms .brands-header-section .heading .elementor-widget-container .elementor-text-editor p, #category .brands-header-section .heading .elementor-widget-container .elementor-text-editor p {
    font-size: calc(17px + 0.390625vw);
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .brand-image-carousel-swiper, #category .brand-image-carousel-swiper {
    margin-bottom: 0;
  }
}
#cms .brand-image-carousel-swiper .elementor-image-carousel .swiper-wrapper, #category .brand-image-carousel-swiper .elementor-image-carousel .swiper-wrapper {
  transition-timing-function: linear !important;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .brand-image-carousel-swiper .elementor-container .elementor-row .swiper-button, #category .brand-image-carousel-swiper .elementor-container .elementor-row .swiper-button {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #cms .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper, #category .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper {
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  #cms .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel, #category .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  #cms .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner, #category .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-wrapper .swiper-slide .swiper-slide-inner {
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  #cms .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-button-prev, #category .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-button-prev {
    top: 50%;
    left: -15px;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    transform: translateY(-50%);
  }
}
#cms .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-button-prev::after, #category .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-button-prev::after {
  content: "";
  background-image: url("../../assets/img/arrow-right-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px; /* Adjust based on the image size */
  height: 12px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  #cms .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-button-next, #category .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-button-next {
    top: 50%;
    right: -15px;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    transform: translateY(-50%);
  }
}
#cms .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-button-next::after, #category .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-button-next::after {
  content: "";
  background-image: url("../../assets/img/arrow-right-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px; /* Adjust based on the image size */
  height: 12px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
}
#cms .cube-seating-heading-section .cube-seating-heading-column .heading .elementor-heading-title span, #category .cube-seating-heading-section .cube-seating-heading-column .heading .elementor-heading-title span {
  font-family: "mixta-pro";
  font-weight: 800;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  line-height: 43.2px; /* 120% */
}
@media screen and (max-width: 768px) {
  #cms .cube-seating-heading-section .cube-seating-heading-column .heading .elementor-heading-title span, #category .cube-seating-heading-section .cube-seating-heading-column .heading .elementor-heading-title span {
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px; /* 123.077% */
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #cms .cube-seating-heading-section .cube-seating-heading-column .heading, #category .cube-seating-heading-section .cube-seating-heading-column .heading {
    max-width: 75%;
    margin: auto;
  }
}
@media screen and (max-width: 380px) {
  #cms .cube-seating-heading-section .cube-seating-heading-column .heading, #category .cube-seating-heading-section .cube-seating-heading-column .heading {
    max-width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1019px) {
  #cms .cube-seating-solutions-section .swiper, #category .cube-seating-solutions-section .swiper {
    max-width: 680px;
  }
}
@media screen and (max-width: 1023px) {
  #cms .cube-seating-solutions-section > .elementor-container, #category .cube-seating-solutions-section > .elementor-container {
    overflow: hidden;
    position: unset;
  }
  #cms .cube-seating-solutions-section > .elementor-container .swiper, #category .cube-seating-solutions-section > .elementor-container .swiper {
    position: unset;
  }
  #cms .cube-seating-solutions-section > .elementor-container .swiper .swiper-pagination, #category .cube-seating-solutions-section > .elementor-container .swiper .swiper-pagination {
    display: block;
    bottom: 30px;
    margin-top: 25px;
  }
  #cms .cube-seating-solutions-section > .elementor-container .swiper .swiper-pagination .swiper-pagination-bullet, #category .cube-seating-solutions-section > .elementor-container .swiper .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
  }
  #cms .cube-seating-solutions-section > .elementor-container .swiper .swiper-button-next, #cms .cube-seating-solutions-section > .elementor-container .swiper .swiper-button-prev, #category .cube-seating-solutions-section > .elementor-container .swiper .swiper-button-next, #category .cube-seating-solutions-section > .elementor-container .swiper .swiper-button-prev {
    top: 30%;
  }
  #cms .cube-seating-solutions-section > .elementor-container .swiper-container, #category .cube-seating-solutions-section > .elementor-container .swiper-container {
    width: 100% !important;
  }
  #cms .cube-seating-solutions-section > .elementor-container .elementor-row, #category .cube-seating-solutions-section > .elementor-container .elementor-row {
    -ms-flex-wrap: unset !important;
        flex-wrap: unset !important;
    -ms-flex-pack: unset !important;
        justify-content: unset !important;
    column-gap: unset !important;
  }
  #cms .cube-seating-solutions-section > .elementor-container .elementor-row .swiper-slide, #category .cube-seating-solutions-section > .elementor-container .elementor-row .swiper-slide {
    max-width: 100% !important;
  }
  #cms .cube-seating-solutions-section > .elementor-container .swiper-button-prev, #category .cube-seating-solutions-section > .elementor-container .swiper-button-prev {
    background: transparent;
  }
  #cms .cube-seating-solutions-section > .elementor-container .swiper-button-prev::after, #category .cube-seating-solutions-section > .elementor-container .swiper-button-prev::after {
    content: "";
    background-image: url("../../assets/img/white-bg-arrow-left.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 32px; /* Adjust based on the image size */
    height: 32px; /* Adjust based on the image size */
    z-index: 2; /* Ensure it's above other elements */
  }
  #cms .cube-seating-solutions-section > .elementor-container .swiper-button-next, #category .cube-seating-solutions-section > .elementor-container .swiper-button-next {
    background: transparent;
  }
  #cms .cube-seating-solutions-section > .elementor-container .swiper-button-next::after, #category .cube-seating-solutions-section > .elementor-container .swiper-button-next::after {
    content: "";
    background-image: url("../../assets/img/white-bg-arrow-right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 32px; /* Adjust based on the image size */
    height: 32px; /* Adjust based on the image size */
    z-index: 2; /* Ensure it's above other elements */
  }
  #cms .cube-seating-solutions-section > .elementor-container .swiper-pagination, #category .cube-seating-solutions-section > .elementor-container .swiper-pagination {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper {
    -ms-flex-align: center !important;
        align-items: center !important;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper .elementor-image-box-content, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper .elementor-image-box-content {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1024px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row, #category .cube-seating-solutions-section .elementor-container .elementor-row {
    -ms-flex-pack: center;
        justify-content: center;
    column-gap: 100px;
  }
}
@media screen and (min-width: 1024px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column.large, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column.large {
    max-width: 25%;
  }
}
@media screen and (min-width: 1024px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column {
    max-width: 23%;
  }
}
#cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper {
  -ms-flex-align: normal;
      align-items: normal;
}
@media screen and (min-width: 769px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper {
    column-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper {
    text-align: center !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper .elementor-image-box-img, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper .elementor-image-box-img {
  margin-top: 5px;
}
@media screen and (min-width: 769px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper .elementor-image-box-img img, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper .elementor-image-box-img img {
    width: 69px;
    height: 69px;
    max-width: none;
  }
}
@media screen and (min-width: 992px) and (max-width: 1500px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper .elementor-image-box-img img, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper .elementor-image-box-img img {
    width: 52px;
    height: 52px;
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper .elementor-image-box-img img, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-wrapper .elementor-image-box-img img {
    width: 59px;
    height: 59px;
  }
}
#cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-content .elementor-image-box-title, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-content .elementor-image-box-title {
  font-family: "mixta-pro";
  font-size: 28px;
  font-weight: 600;
  line-height: 22.5px; /* 80.357% */
  font-style: italic;
}
@media screen and (max-width: 768px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-content .elementor-image-box-title, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-content .elementor-image-box-title {
    font-size: 18px;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-content .elementor-image-box-description, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-content .elementor-image-box-description {
    max-width: 240px;
    margin: auto;
  }
}
#cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-content .elementor-image-box-description p, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-content .elementor-image-box-description p {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-content .elementor-image-box-description p, #category .cube-seating-solutions-section .elementor-container .elementor-row .cube-seating-solutions-column .elementor-image-box-content .elementor-image-box-description p {
    text-align: center;
    font-size: 13px;
    line-height: normal;
    margin-bottom: 0;
  }
}
#cms .cube-seating-solutions-section.cube-collection, #category .cube-seating-solutions-section.cube-collection {
  padding-bottom: 105px;
}
#cms .cube-seating-solutions-section.cube-collection .swiper, #category .cube-seating-solutions-section.cube-collection .swiper {
  position: unset;
}
@media screen and (max-width: 1023px) {
  #cms .cube-seating-solutions-section.cube-collection .swiper, #category .cube-seating-solutions-section.cube-collection .swiper {
    width: 100%;
    max-width: 100%;
  }
}
#cms .cube-seating-solutions-section.cube-collection .swiper .swiper-pagination, #category .cube-seating-solutions-section.cube-collection .swiper .swiper-pagination {
  display: block;
  bottom: 30px;
  margin-top: 25px;
  margin-bottom: 10px;
}
#cms .cube-seating-solutions-section.cube-collection .swiper .swiper-pagination .swiper-pagination-bullet, #category .cube-seating-solutions-section.cube-collection .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}
#cms .cube-seating-solutions-section.cube-collection .swiper .swiper-button-next, #cms .cube-seating-solutions-section.cube-collection .swiper .swiper-button-prev, #category .cube-seating-solutions-section.cube-collection .swiper .swiper-button-next, #category .cube-seating-solutions-section.cube-collection .swiper .swiper-button-prev {
  top: 50%;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .bespoke-suit-heading-section, #category .bespoke-suit-heading-section {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  #cms .bespoke-suit-heading-section .bespoke-suit-heading-column .heading .elementor-heading-title, #category .bespoke-suit-heading-section .bespoke-suit-heading-column .heading .elementor-heading-title {
    max-width: 74%;
    margin: auto;
  }
}
@media screen and (max-width: 380px) {
  #cms .bespoke-suit-heading-section .bespoke-suit-heading-column .heading .elementor-heading-title, #category .bespoke-suit-heading-section .bespoke-suit-heading-column .heading .elementor-heading-title {
    max-width: 90%;
  }
}
#cms .bespoke-suit-heading-section .bespoke-suit-heading-column .heading .elementor-heading-title span, #category .bespoke-suit-heading-section .bespoke-suit-heading-column .heading .elementor-heading-title span {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
@media screen and (max-width: 768px) {
  #cms .bespoke-suit-heading-section .bespoke-suit-heading-column .heading .elementor-heading-title span, #category .bespoke-suit-heading-section .bespoke-suit-heading-column .heading .elementor-heading-title span {
    font-size: 26px;
    line-height: 32px;
    display: block;
  }
}
@media screen and (min-width: 992px) {
  #cms .bespoke-suit-image-section .elementor-row, #category .bespoke-suit-image-section .elementor-row {
    gap: 18px;
  }
  #cms .bespoke-suit-image-section .elementor-element-populated, #category .bespoke-suit-image-section .elementor-element-populated {
    margin: 0;
    padding: 0;
  }
  #cms .bespoke-suit-image-section .elementor-element-populated .elementor-widget-container, #category .bespoke-suit-image-section .elementor-element-populated .elementor-widget-container {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #cms .bespoke-suit-image-section, #category .bespoke-suit-image-section {
    margin-right: calc(50% - 50vw);
    padding: 0 15px;
    margin-left: calc(50% - 50vw);
  }
  #cms .bespoke-suit-image-section > .elementor-container .swiper-container, #category .bespoke-suit-image-section > .elementor-container .swiper-container {
    width: 100% !important;
  }
  #cms .bespoke-suit-image-section > .elementor-container .elementor-row, #category .bespoke-suit-image-section > .elementor-container .elementor-row {
    -ms-flex-wrap: unset !important;
        flex-wrap: unset !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .bespoke-suit-image-section .elementor-row, #category .bespoke-suit-image-section .elementor-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .bespoke-suit-image-section .bespoke-suit-image-column, #category .bespoke-suit-image-section .bespoke-suit-image-column {
    width: 50%;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
  }
}
#cms .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title, #category .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 33.2px; /* 166.154% */
}
@media screen and (max-width: 768px) {
  #cms .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title, #category .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: calc(19px + 0.390625vw);
    line-height: 23.2px; /* 166.154% */
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title, #category .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: 24px;
    line-height: 28.2px; /* 166.154% */
  }
}
#cms .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p, #category .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #cms .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p, #category .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: calc(12px + 0.390625vw);
    line-height: 18.2px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p, #category .bespoke-suit-image-section .bespoke-suit-image-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: 14px;
    line-height: 20.2px;
  }
}
#cms .bespoke-suit-image-section .swiper-container, #category .bespoke-suit-image-section .swiper-container {
  padding-bottom: 80px;
}
#cms .bespoke-suit-image-section .swiper-container .swiper-pagination, #category .bespoke-suit-image-section .swiper-container .swiper-pagination {
  bottom: 30px;
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  #cms .bespoke-suit-image-section .swiper-container .swiper-pagination, #category .bespoke-suit-image-section .swiper-container .swiper-pagination {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #cms .get-quote-btn-section, #category .get-quote-btn-section {
    display: none;
  }
  #cms .get-quote-btn-section.get-quote-btn-heading, #category .get-quote-btn-section.get-quote-btn-heading {
    display: block;
  }
  #cms .get-quote-btn-section.get-quote-btn-heading .get-quote-btn-column .get-quote-btn, #category .get-quote-btn-section.get-quote-btn-heading .get-quote-btn-column .get-quote-btn {
    max-width: 100%;
  }
  #cms .get-quote-btn-section.get-quote-btn-heading .get-quote-btn-column .get-quote-btn .btn-traditional .elementor-button-text, #category .get-quote-btn-section.get-quote-btn-heading .get-quote-btn-column .get-quote-btn .btn-traditional .elementor-button-text {
    height: 46px;
  }
}
#cms .get-quote-btn-section .get-quote-btn-column .get-quote-btn, #category .get-quote-btn-section .get-quote-btn-column .get-quote-btn {
  max-width: 275px;
  margin: auto;
}
#cms .get-quote-btn-section .get-quote-btn-column .get-quote-btn .btn-traditional, #category .get-quote-btn-section .get-quote-btn-column .get-quote-btn .btn-traditional {
  padding: 0;
}
#cms .get-quote-btn-section .get-quote-btn-column .get-quote-btn .btn-traditional .elementor-button-text, #category .get-quote-btn-section .get-quote-btn-column .get-quote-btn .btn-traditional .elementor-button-text {
  color: #fff;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px; /* 160.714% */
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  padding: 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #cms .in-stock-heading-section .in-stock-heading-column .heading .elementor-widget-container, #category .in-stock-heading-section .in-stock-heading-column .heading .elementor-widget-container {
    padding: 11px 0px 11px 0px;
  }
}
#cms .in-stock-heading-section .in-stock-heading-column .heading .elementor-widget-container .elementor-text-editor p, #category .in-stock-heading-section .in-stock-heading-column .heading .elementor-widget-container .elementor-text-editor p {
  text-align: center;
  font-family: "Geologica";
  font-size: 30px;
  font-style: normal;
  font-weight: 250;
  line-height: 43.2px; /* 144% */
}
@media screen and (max-width: 768px) {
  #cms .in-stock-heading-section .in-stock-heading-column .heading .elementor-widget-container .elementor-text-editor p, #category .in-stock-heading-section .in-stock-heading-column .heading .elementor-widget-container .elementor-text-editor p {
    font-size: 22px;
  }
}
#cms .in-stock-heading-section .in-stock-heading-column .heading .elementor-widget-container .elementor-text-editor p span, #category .in-stock-heading-section .in-stock-heading-column .heading .elementor-widget-container .elementor-text-editor p span {
  font-size: 32px;
  font-style: italic;
  font-weight: 800;
  font-family: "mixta-pro";
}
@media screen and (max-width: 768px) {
  #cms .in-stock-heading-section .in-stock-heading-column .heading .elementor-widget-container .elementor-text-editor p span, #category .in-stock-heading-section .in-stock-heading-column .heading .elementor-widget-container .elementor-text-editor p span {
    font-size: calc(22px + 0.390625vw);
  }
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .heading .elementor-widget-container, #category .in-stock-product-section .in-stock-product-column .heading .elementor-widget-container {
    margin-top: 34px;
  }
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .heading .elementor-widget-container .elementor-heading-title, #category .in-stock-product-section .in-stock-product-column .heading .elementor-widget-container .elementor-heading-title {
    max-width: 310px;
    margin: auto;
  }
}
#cms .in-stock-product-section .in-stock-product-column .heading .elementor-widget-container .elementor-heading-title span, #category .in-stock-product-section .in-stock-product-column .heading .elementor-widget-container .elementor-heading-title span {
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .heading .elementor-widget-container .elementor-heading-title span, #category .in-stock-product-section .in-stock-product-column .heading .elementor-widget-container .elementor-heading-title span {
    font-size: calc(25px + 0.390625vw);
    line-height: 32px;
  }
}
#cms .in-stock-product-section .in-stock-product-column .text .elementor-widget-container .elementor-text-editor, #category .in-stock-product-section .in-stock-product-column .text .elementor-widget-container .elementor-text-editor {
  max-width: 550px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .text .elementor-widget-container .elementor-text-editor, #category .in-stock-product-section .in-stock-product-column .text .elementor-widget-container .elementor-text-editor {
    max-width: 362px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#cms .in-stock-product-section .in-stock-product-column .text .elementor-widget-container .elementor-text-editor p, #category .in-stock-product-section .in-stock-product-column .text .elementor-widget-container .elementor-text-editor p {
  text-align: center;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .text .elementor-widget-container .elementor-text-editor p, #category .in-stock-product-section .in-stock-product-column .text .elementor-widget-container .elementor-text-editor p {
    font-size: calc(12px + 0.390625vw);
  }
}
@media screen and (min-width: 769px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products, #category .in-stock-product-section .in-stock-product-column .in-stock-products {
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-products .row, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-products .row {
    -ms-flex-wrap: unset !important;
        flex-wrap: unset !important;
  }
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-products .row .swiper-slide, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-products .row .swiper-slide {
    -ms-flex: none;
        flex: none;
  }
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .swiper-button-next, #cms .in-stock-product-section .in-stock-product-column .in-stock-products .swiper-button-prev, #category .in-stock-product-section .in-stock-product-column .in-stock-products .swiper-button-next, #category .in-stock-product-section .in-stock-product-column .in-stock-products .swiper-button-prev {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .swiper, #category .in-stock-product-section .in-stock-product-column .in-stock-products .swiper {
    position: unset;
  }
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .swiper .swiper-pagination, #category .in-stock-product-section .in-stock-product-column .in-stock-products .swiper .swiper-pagination {
  bottom: 30px;
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .swiper .swiper-pagination, #category .in-stock-product-section .in-stock-product-column .in-stock-products .swiper .swiper-pagination {
    display: none;
  }
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .swiper .swiper-pagination .swiper-pagination-bullet, #category .in-stock-product-section .in-stock-product-column .in-stock-products .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .swiper, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .swiper {
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .swiper, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .swiper {
    margin-left: 15px;
  }
}
@media screen and (min-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper {
    max-width: 24%;
  }
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature {
  -ms-flex-pack: justify;
      justify-content: space-between;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .thumbnail-container, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .thumbnail-container {
  background: #ebe9ea;
  border-radius: unset;
  border: unset;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .thumbnail-container a img, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .thumbnail-container a img {
    aspect-ratio: 340/340;
  }
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .thumbnail-container .more-color-available span, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .thumbnail-container .more-color-available span {
  border-radius: unset;
  font-size: 13px;
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .thumbnail-container .product-flag-extra .product-flag span, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .thumbnail-container .product-flag-extra .product-flag span {
  padding: 0;
  font-size: 13px;
  border-radius: unset;
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description {
  padding: 0;
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description {
    padding-top: 22px;
  }
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-title, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-title {
  text-align: center;
  line-height: 0;
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-title a, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-title a {
  color: #fff !important;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 250;
  line-height: 24px; /* 120% */
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-title a, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-title a {
    font-size: 16px;
  }
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping {
  text-align: center;
  padding-bottom: 0;
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping a .product-price, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping a .product-price {
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping a .product-price strong, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping a .product-price strong {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping a .product-price strong, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping a .product-price strong {
    font-size: 13px;
    line-height: 20px;
  }
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now {
  margin: auto;
  margin-top: 26px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now {
    max-width: 171px;
  }
}
@media screen and (min-width: 992px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now {
    min-height: 60px;
  }
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now a, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now a {
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border: 1px solid #fff;
  width: 100%;
  max-width: 276px;
  padding: 10px 20px;
  color: #fff;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px; /* 140.625% */
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  #cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now a, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now a {
    font-size: 16px;
    font-weight: 700;
  }
}
#cms .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now a:hover, #category .in-stock-product-section .in-stock-product-column .in-stock-products .elementor-widget-container .elementor-products .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now a:hover {
  background: #fff;
  color: #383838;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .handcrafted-section, #category .handcrafted-section {
    margin-top: 70px;
  }
  #cms .handcrafted-section .elementor-row, #category .handcrafted-section .elementor-row {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  #cms .handcrafted-section .handcrafted-column-image, #category .handcrafted-section .handcrafted-column-image {
    width: 100%;
  }
  #cms .handcrafted-section .handcrafted-column-text, #category .handcrafted-section .handcrafted-column-text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #cms .handcrafted-section .elementor-row, #category .handcrafted-section .elementor-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #cms .handcrafted-section .elementor-row .handcrafted-column, #category .handcrafted-section .elementor-row .handcrafted-column {
    width: 100%;
  }
  #cms .handcrafted-section .elementor-row .handcrafted-column .elementor-column-wrap:has(.heading), #category .handcrafted-section .elementor-row .handcrafted-column .elementor-column-wrap:has(.heading) {
    margin: 15px;
  }
}
#cms .handcrafted-section .handcrafted-column-image .image, #category .handcrafted-section .handcrafted-column-image .image {
  height: 100%;
}
#cms .handcrafted-section .handcrafted-column-image .image .elementor-widget-container, #category .handcrafted-section .handcrafted-column-image .image .elementor-widget-container {
  height: 100%;
}
#cms .handcrafted-section .handcrafted-column-image .image .elementor-widget-container .elementor-image, #category .handcrafted-section .handcrafted-column-image .image .elementor-widget-container .elementor-image {
  height: 100%;
}
#cms .handcrafted-section .handcrafted-column-image .image .elementor-widget-container .elementor-image img, #category .handcrafted-section .handcrafted-column-image .image .elementor-widget-container .elementor-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
#cms .handcrafted-section .handcrafted-column-text .elementor-column-wrap, #category .handcrafted-section .handcrafted-column-text .elementor-column-wrap {
  background: no-repeat;
  max-width: 572px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .handcrafted-section .handcrafted-column-text .elementor-column-wrap, #category .handcrafted-section .handcrafted-column-text .elementor-column-wrap {
    max-width: 100%;
  }
  #cms .handcrafted-section .handcrafted-column-text .elementor-column-wrap .elementor-image, #category .handcrafted-section .handcrafted-column-text .elementor-column-wrap .elementor-image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #cms .handcrafted-section .handcrafted-column-text .elementor-column-wrap, #category .handcrafted-section .handcrafted-column-text .elementor-column-wrap {
    padding: 15px;
    padding-top: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  #cms .handcrafted-section .handcrafted-column-text .elementor-column-wrap, #category .handcrafted-section .handcrafted-column-text .elementor-column-wrap {
    padding-left: 50px !important;
  }
}
#cms .handcrafted-section .handcrafted-column-text .logo, #category .handcrafted-section .handcrafted-column-text .logo {
  text-align: right;
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .handcrafted-section .handcrafted-column-text .logo .elementor-widget-container .elementor-image img, #category .handcrafted-section .handcrafted-column-text .logo .elementor-widget-container .elementor-image img {
    max-width: 100px;
  }
}
@media screen and (min-width: 769px) {
  #cms .handcrafted-section .handcrafted-column-text .heading, #category .handcrafted-section .handcrafted-column-text .heading {
    max-width: 400px;
  }
}
@media screen and (max-width: 576px) {
  #cms .handcrafted-section .handcrafted-column-text .heading, #category .handcrafted-section .handcrafted-column-text .heading {
    max-width: 260px;
  }
}
@media screen and (max-width: 768px) {
  #cms .handcrafted-section .handcrafted-column-text .heading, #category .handcrafted-section .handcrafted-column-text .heading {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  #cms .handcrafted-section .handcrafted-column-text .heading .elementor-widget-container .elementor-heading-title, #category .handcrafted-section .handcrafted-column-text .heading .elementor-widget-container .elementor-heading-title {
    text-align: left;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .handcrafted-section .handcrafted-column-text .heading .elementor-widget-container .elementor-heading-title, #category .handcrafted-section .handcrafted-column-text .heading .elementor-widget-container .elementor-heading-title {
    text-align: left;
  }
}
#cms .handcrafted-section .handcrafted-column-text .heading .elementor-widget-container .elementor-heading-title span, #category .handcrafted-section .handcrafted-column-text .heading .elementor-widget-container .elementor-heading-title span {
  font-family: "mixta-pro";
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 47px; /* 102.174% */
}
@media screen and (max-width: 768px) {
  #cms .handcrafted-section .handcrafted-column-text .heading .elementor-widget-container .elementor-heading-title span, #category .handcrafted-section .handcrafted-column-text .heading .elementor-widget-container .elementor-heading-title span {
    font-size: calc(25px + 0.390625vw);
    line-height: 32px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .handcrafted-section .handcrafted-column-text .heading .elementor-widget-container .elementor-heading-title span, #category .handcrafted-section .handcrafted-column-text .heading .elementor-widget-container .elementor-heading-title span {
    font-size: 32px;
    line-height: 38px;
  }
}
#cms .handcrafted-section .handcrafted-column-text .text .elementor-widget-container .elementor-text-editor p, #category .handcrafted-section .handcrafted-column-text .text .elementor-widget-container .elementor-text-editor p {
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
  margin-bottom: 0;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  #cms .handcrafted-section .handcrafted-column-text .text .elementor-widget-container .elementor-text-editor p, #category .handcrafted-section .handcrafted-column-text .text .elementor-widget-container .elementor-text-editor p {
    margin-top: 0;
    font-size: 13px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .handcrafted-section .handcrafted-column-text .text .elementor-widget-container .elementor-text-editor p, #category .handcrafted-section .handcrafted-column-text .text .elementor-widget-container .elementor-text-editor p {
    font-size: 16px;
    line-height: 24px;
  }
}
#cms .handcrafted-section .handcrafted-column-text .text .elementor-widget-container .elementor-text-editor p .read-more, #category .handcrafted-section .handcrafted-column-text .text .elementor-widget-container .elementor-text-editor p .read-more {
  text-decoration: underline;
  color: #383838;
  display: block;
  margin-top: 20px;
}
#cms .handcrafted-section .handcrafted-column-text .text .elementor-widget-container .elementor-text-editor p .dots, #category .handcrafted-section .handcrafted-column-text .text .elementor-widget-container .elementor-text-editor p .dots {
  display: none;
}
@media screen and (max-width: 768px) {
  #cms .high-quality-product-section, #category .high-quality-product-section {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  #cms .high-quality-product-section .high-quality-product-column .image .elementor-widget-container .elementor-image img, #category .high-quality-product-section .high-quality-product-column .image .elementor-widget-container .elementor-image img {
    max-width: 48px;
  }
}
@media screen and (max-width: 768px) {
  #cms .high-quality-product-section .high-quality-product-column .text .elementor-widget-container .elementor-text-editor, #category .high-quality-product-section .high-quality-product-column .text .elementor-widget-container .elementor-text-editor {
    max-width: 305px;
    margin: auto;
  }
}
@media screen and (max-width: 440px) {
  #cms .high-quality-product-section .high-quality-product-column .text .elementor-widget-container .elementor-text-editor, #category .high-quality-product-section .high-quality-product-column .text .elementor-widget-container .elementor-text-editor {
    max-width: 290px;
  }
}
#cms .high-quality-product-section .high-quality-product-column .text .elementor-widget-container .elementor-text-editor p, #category .high-quality-product-section .high-quality-product-column .text .elementor-widget-container .elementor-text-editor p {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 34px; /* 122.5% */
}
@media screen and (max-width: 768px) {
  #cms .high-quality-product-section .high-quality-product-column .text .elementor-widget-container .elementor-text-editor p, #category .high-quality-product-section .high-quality-product-column .text .elementor-widget-container .elementor-text-editor p {
    font-size: calc(19px + 0.390625vw);
    line-height: 24.5px;
    font-weight: 500;
  }
}
#cms .high-quality-product-section .high-quality-product-column .author-text .elementor-widget-container .elementor-text-editor p, #category .high-quality-product-section .high-quality-product-column .author-text .elementor-widget-container .elementor-text-editor p {
  color: #606C6A;
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px; /* 173.077% */
}
@media screen and (max-width: 768px) {
  #cms .high-quality-product-section .high-quality-product-column .author-text .elementor-widget-container .elementor-text-editor p, #category .high-quality-product-section .high-quality-product-column .author-text .elementor-widget-container .elementor-text-editor p {
    font-size: calc(12px + 0.390625vw);
  }
}
@media screen and (max-width: 768px) {
  #cms .success-stories-heading-section .success-stories-heading-column .heading .elementor-widget-container, #category .success-stories-heading-section .success-stories-heading-column .heading .elementor-widget-container {
    margin: 0;
  }
}
#cms .success-stories-heading-section .success-stories-heading-column .heading .elementor-widget-container .elementor-heading-title span, #category .success-stories-heading-section .success-stories-heading-column .heading .elementor-widget-container .elementor-heading-title span {
  text-align: center;
  font-family: "mixta-pro";
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 47px; /* 102.174% */
}
@media screen and (max-width: 768px) {
  #cms .success-stories-heading-section .success-stories-heading-column .heading .elementor-widget-container .elementor-heading-title span, #category .success-stories-heading-section .success-stories-heading-column .heading .elementor-widget-container .elementor-heading-title span {
    font-size: calc(25px + 0.390625vw);
    line-height: 32px;
  }
}
@media screen and (max-width: 768px) {
  #cms .success-stories-heading-section .success-stories-heading-column .heading .elementor-widget-container .elementor-heading-title, #category .success-stories-heading-section .success-stories-heading-column .heading .elementor-widget-container .elementor-heading-title {
    text-align: start;
  }
}
@media screen and (min-width: 769px) {
  #cms .success-stories-heading-section .success-stories-heading-column .text .elementor-widget-container .elementor-text-editor, #category .success-stories-heading-section .success-stories-heading-column .text .elementor-widget-container .elementor-text-editor {
    max-width: 590px;
    margin: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .success-stories-heading-section .success-stories-heading-column .text .elementor-widget-container .elementor-text-editor, #category .success-stories-heading-section .success-stories-heading-column .text .elementor-widget-container .elementor-text-editor {
    max-width: 550px;
    margin: auto;
  }
}
#cms .success-stories-heading-section .success-stories-heading-column .text .elementor-widget-container .elementor-text-editor p, #category .success-stories-heading-section .success-stories-heading-column .text .elementor-widget-container .elementor-text-editor p {
  font-family: "Geologica";
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .success-stories-heading-section .success-stories-heading-column .text .elementor-widget-container .elementor-text-editor p, #category .success-stories-heading-section .success-stories-heading-column .text .elementor-widget-container .elementor-text-editor p {
    text-align: start;
    font-size: 15px;
    margin-bottom: 0;
    line-height: 18px;
    font-weight: 250;
  }
}
@media screen and (max-width: 992px) {
  #cms .success-stories-blog-section, #category .success-stories-blog-section {
    margin-right: -15px;
  }
  #cms .success-stories-blog-section .swiper-wrapper .swiper-slide:last-child .elementor-element-populated, #category .success-stories-blog-section .swiper-wrapper .swiper-slide:last-child .elementor-element-populated {
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  #cms .success-stories-blog-section > .elementor-container, #category .success-stories-blog-section > .elementor-container {
    overflow: hidden;
  }
  #cms .success-stories-blog-section > .elementor-container .swiper-container, #category .success-stories-blog-section > .elementor-container .swiper-container {
    width: 100% !important;
  }
  #cms .success-stories-blog-section > .elementor-container .elementor-row, #category .success-stories-blog-section > .elementor-container .elementor-row {
    -ms-flex-wrap: unset !important;
        flex-wrap: unset !important;
  }
}
#cms .success-stories-blog-section .elementor-container .elementor-row, #category .success-stories-blog-section .elementor-container .elementor-row {
  max-width: 976px;
  margin: auto;
}
#cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column {
  aspect-ratio: 304/409;
}
@media screen and (max-width: 768px) {
  #cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column {
    max-width: 304px;
  }
}
#cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text {
  height: 100%;
}
#cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container {
  height: 100%;
}
#cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor {
  height: 100%;
  -ms-flex-line-pack: end;
      align-content: end;
}
@media screen and (max-width: 768px) {
  #cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor {
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  #cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor {
    padding: 28px;
  }
}
#cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor h2, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor h2 {
  font-family: "Geologica";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.1px; /* 124.4% */
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  #cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor h2, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor h2 {
    font-size: calc(21px + 0.390625vw);
    line-height: 28px;
    text-align: left;
    max-width: 210px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor h2, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor h2 {
    font-size: 22px;
    line-height: 25px;
  }
}
#cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor p a, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor p a {
  color: #fff;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 250;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor p a, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor p a {
    font-size: calc(14px + 0.390625vw);
    text-decoration: underline;
  }
}
#cms .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor p a.success-stories-link, #category .success-stories-blog-section .elementor-container .elementor-row .success-stories-blog-column .text .elementor-widget-container .elementor-text-editor p a.success-stories-link {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#cms .success-stories-blog-section .elementor-element-populated, #category .success-stories-blog-section .elementor-element-populated {
  background-size: 100% 100%;
  transition: background-size 0.8s ease;
  background-position: center;
}
#cms .success-stories-blog-section .elementor-element-populated:hover, #category .success-stories-blog-section .elementor-element-populated:hover {
  background-size: 105% 105%;
}
#cms .success-stories-blog-section .elementor-element-populated:hover .rte-content a, #category .success-stories-blog-section .elementor-element-populated:hover .rte-content a {
  text-decoration: underline;
}
@media screen and (max-width: 991px) {
  #cms .business-event-usp-section .elementor-container, #category .business-event-usp-section .elementor-container {
    position: unset;
  }
  #cms .business-event-usp-section .swiper-container, #category .business-event-usp-section .swiper-container {
    overflow: hidden;
  }
  #cms .business-event-usp-section .swiper-container .swiper-wrapper, #category .business-event-usp-section .swiper-container .swiper-wrapper {
    -ms-flex-wrap: unset;
        flex-wrap: unset;
  }
  #cms .business-event-usp-section .swiper-container .swiper-wrapper .business-event-usp-column .elementor-image-box-wrapper, #category .business-event-usp-section .swiper-container .swiper-wrapper .business-event-usp-column .elementor-image-box-wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
  #cms .business-event-usp-section .swiper-container .swiper-pagination, #category .business-event-usp-section .swiper-container .swiper-pagination {
    bottom: 20px;
  }
  #cms .business-event-usp-section .swiper-container .swiper-pagination .swiper-pagination-bullet, #category .business-event-usp-section .swiper-container .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
  }
  #cms .business-event-usp-section .swiper-container .swiper-button-next, #cms .business-event-usp-section .swiper-container .swiper-button-prev, #category .business-event-usp-section .swiper-container .swiper-button-next, #category .business-event-usp-section .swiper-container .swiper-button-prev {
    background: transparent;
  }
  #cms .business-event-usp-section .swiper-container .swiper-button-next:after, #cms .business-event-usp-section .swiper-container .swiper-button-prev:after, #category .business-event-usp-section .swiper-container .swiper-button-next:after, #category .business-event-usp-section .swiper-container .swiper-button-prev:after {
    font-size: 15px;
    background: transparent;
    color: #fff;
  }
}
#cms .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title, #category .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
  text-align: center;
  font-family: "Geologica";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 43.2px; /* 196.364% */
  margin: 0;
}
@media screen and (max-width: 768px) {
  #cms .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title, #category .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title, #category .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
    font-size: 18px;
    line-height: 24px;
  }
}
#cms .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p, #category .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
  text-align: center;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p, #category .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: calc(12px + 0.390625vw);
    line-height: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p, #category .business-event-usp-section .business-event-usp-column .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (min-width: 992px) {
  #cms .business-event-usp-section .tailored-column, #category .business-event-usp-section .tailored-column {
    border-left: 1px solid rgba(255, 255, 255, 0.168627451);
  }
}
#cms .business-event-usp-section .tailored-column .elementor-image-box-wrapper .elementor-image-box-img img, #category .business-event-usp-section .tailored-column .elementor-image-box-wrapper .elementor-image-box-img img {
  max-width: 42px;
  -o-object-fit: none;
     object-fit: none;
}
@media screen and (min-width: 992px) {
  #cms .business-event-usp-section .exhibition-column, #category .business-event-usp-section .exhibition-column {
    border-left: 1px solid rgba(255, 255, 255, 0.168627451);
  }
}
#cms .business-event-usp-section .exhibition-column .elementor-image-box-wrapper .elementor-image-box-img img, #category .business-event-usp-section .exhibition-column .elementor-image-box-wrapper .elementor-image-box-img img {
  min-height: 42px;
}
#cms .different-seating-section:hover a, #category .different-seating-section:hover a {
  color: #606C6A;
}
#cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row {
  column-gap: 20px;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row {
    column-gap: 10px;
  }
  #cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .elementor-widget-wrap .elementor-section:last-of-type, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .elementor-widget-wrap .elementor-section:last-of-type {
    margin-top: 20px;
  }
}
#cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .elementor-image-box-wrapper, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .elementor-image-box-wrapper {
  overflow: hidden;
}
#cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .elementor-image-box-wrapper .elementor-image-box-img, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .elementor-image-box-wrapper .elementor-image-box-img {
  overflow: hidden;
}
#cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .elementor-image-box-wrapper:hover a, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .elementor-image-box-wrapper:hover a {
  color: #606C6A !important;
}
#cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .elementor-image-box-wrapper:hover .elementor-image-box-img img, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .elementor-image-box-wrapper:hover .elementor-image-box-img img {
  transform: scale(1.05);
  transition: 1s ease-in-out;
}
#cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-img, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-img {
  background: #ebe9ea;
}
@media screen and (max-width: 768px) {
  #cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-img, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-img {
    margin-bottom: 5px;
  }
}
#cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-img:hover, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-img:hover {
  background: #f8f8f8;
}
#cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-img img, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-img img {
  width: 100%;
  transition: transform 1s ease-in-out;
}
#cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-content .elementor-image-box-title a, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-content .elementor-image-box-title a {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 43.2px; /* 166.154% */
  text-decoration: underline;
}
#cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-content .elementor-image-box-title a:hover, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-content .elementor-image-box-title a:hover {
  color: #606C6A;
}
@media screen and (max-width: 768px) {
  #cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-content .elementor-image-box-title a, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-content .elementor-image-box-title a {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-content .elementor-image-box-title a, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-content .elementor-image-box-title a {
    font-size: 19px;
    line-height: 26px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  #cms .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-content .elementor-image-box-title a, #category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-content .elementor-image-box-title a {
    font-size: 22px;
    line-height: 28px;
  }
}
@media screen and (width: 767px) {
  #cms .mobile-guide-banner, #category .mobile-guide-banner {
    display: none !important;
  }
}
#cms .brand-review .elementor-element-populated, #category .brand-review .elementor-element-populated {
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .second-section .elementor-row, #category .four-blocks-section .four-blocks-column .second-section .elementor-row {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .second-section .image-col, #category .four-blocks-section .four-blocks-column .second-section .image-col {
    -ms-flex-order: 1;
        order: 1;
  }
}
#cms .four-blocks-section .four-blocks-column .elementor-container, #category .four-blocks-section .four-blocks-column .elementor-container {
  max-width: 100%;
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap {
  padding: 15px;
  max-width: 670px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap {
    padding-bottom: 35px;
    padding-top: 35px;
  }
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-heading, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-heading {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-heading, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-heading {
    margin-bottom: 0px;
  }
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title span, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title span {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 53px; /* 147.222% */
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title span, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-heading .elementor-heading-title span {
    font-size: 26px;
    line-height: 32px;
  }
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item {
  border-bottom: 1px solid rgba(56, 56, 56, 0.1098039216);
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title {
  padding: 25px 0;
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title {
    padding: 15px 0;
  }
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title .elementor-accordion-icon, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title .elementor-accordion-icon {
    padding: 0;
  }
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title span, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title span {
  color: #383838;
  font-family: "Geologica";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title span, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title span {
    font-size: 16px;
    line-height: 28px;
  }
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title span .fa:before, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title span .fa:before {
  content: "\f107";
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title span .fa:before, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title span .fa:before {
    font-size: 22px;
  }
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title.active span .fa:before, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-title.active span .fa:before {
  content: "\f106";
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-content, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-content {
  padding: 25px 0;
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-content, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .elementor-widget-accordion .elementor-accordion-item .elementor-accordion-content {
    font-size: 13px;
    line-height: 18px;
    padding: 15px 0;
  }
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .grey-bg .elementor-heading-title span, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .grey-bg .elementor-heading-title span {
  color: #fff;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 53px; /* 147.222% */
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .grey-bg .elementor-heading-title span, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .grey-bg .elementor-heading-title span {
    font-size: 26px;
    line-height: 32px;
  }
}
#cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .grey-bg .elementor-text-editor p, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .grey-bg .elementor-text-editor p {
  color: #fff;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #cms .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .grey-bg .elementor-text-editor p, #category .four-blocks-section .four-blocks-column .elementor-container .text-col .elementor-widget-wrap .grey-bg .elementor-text-editor p {
    font-size: 13px;
    line-height: 18px;
    margin-top: 13px;
    margin-bottom: 5px;
  }
}
#cms .four-blocks-section .four-blocks-column .elementor-container .image-col .elementor-widget, #category .four-blocks-section .four-blocks-column .elementor-container .image-col .elementor-widget {
  height: 100%;
}
#cms .four-blocks-section .four-blocks-column .elementor-container .image-col .elementor-widget .elementor-widget-container, #category .four-blocks-section .four-blocks-column .elementor-container .image-col .elementor-widget .elementor-widget-container {
  height: 100%;
}
#cms .four-blocks-section .four-blocks-column .elementor-container .image-col .elementor-widget .elementor-widget-container .elementor-image, #category .four-blocks-section .four-blocks-column .elementor-container .image-col .elementor-widget .elementor-widget-container .elementor-image {
  height: 100%;
}
#cms .four-blocks-section .four-blocks-column .elementor-container .image-col .elementor-widget .elementor-widget-container .elementor-image img, #category .four-blocks-section .four-blocks-column .elementor-container .image-col .elementor-widget .elementor-widget-container .elementor-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
#cms .collection-text-section .elementor-container, #category .collection-text-section .elementor-container {
  max-width: 1464px;
  margin: auto;
}
#cms .collection-text-section .elementor-container .collection-text-column .heading .elementor-heading-title, #category .collection-text-section .elementor-container .collection-text-column .heading .elementor-heading-title {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 53px; /* 147.222% */
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #cms .collection-text-section .elementor-container .collection-text-column .heading .elementor-heading-title, #category .collection-text-section .elementor-container .collection-text-column .heading .elementor-heading-title {
    font-size: 30px;
    line-height: 43px;
    margin-bottom: 10px;
  }
}
#cms .collection-text-section .elementor-container .collection-text-column .text .elementor-text-editor p, #category .collection-text-section .elementor-container .collection-text-column .text .elementor-text-editor p {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #cms .collection-text-section .elementor-container .collection-text-column .text .elementor-text-editor p, #category .collection-text-section .elementor-container .collection-text-column .text .elementor-text-editor p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

.testimonial-section {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.testimonial-section .testimonial-container {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}
.testimonial-section .testimonial-container .testimonial-image {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  z-index: 1;
  max-width: 700px;
}
@media screen and (max-width: 991px) {
  .testimonial-section .testimonial-container .testimonial-image {
    -ms-flex: 1;
        flex: 1;
  }
}
@media screen and (min-width: 1551px) {
  .testimonial-section .testimonial-container .testimonial-image {
    -ms-flex: 0 0 55%;
        flex: 0 0 55%;
    max-width: 866px;
  }
}
.testimonial-section .testimonial-container .testimonial-image img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 226px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-section .testimonial-container .testimonial-content {
  -ms-flex: 1;
      flex: 1;
  margin-left: -24%;
  margin-top: 7rem;
  box-sizing: border-box;
}
.testimonial-section .testimonial-container .testimonial-content .testimonial-data {
  background-color: #f6f3f0;
  padding: 100px 60px 60px;
}
@media screen and (max-width: 991px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data {
    padding: 400px 60px 60px;
  }
}
@media screen and (max-width: 768px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data {
    padding: 300px 60px 60px;
  }
}
@media screen and (max-width: 600px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data {
    padding: 50px 15px 50px 50px;
    padding-top: 70%;
  }
}
@media screen and (min-width: 1551px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data {
    padding: 165px 60px 115px;
  }
}
.testimonial-section .testimonial-container .testimonial-content .testimonial-data .para-logo {
  width: 60%;
  margin-left: auto;
  position: relative;
  padding-right: 0;
}
@media screen and (max-width: 991px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data .para-logo {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (min-width: 1551px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data .para-logo {
    width: 57%;
    padding-right: 2%;
  }
}
.testimonial-section .testimonial-container .testimonial-content .testimonial-data .quote-mark {
  width: 120px;
  height: auto;
  margin-bottom: 25px;
  display: block;
  position: absolute;
  top: -50px;
  left: -50px;
}
@media screen and (max-width: 991px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data .quote-mark {
    top: -40px;
    left: -30px;
  }
}
@media screen and (min-width: 1551px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data .quote-mark {
    width: 180px;
    top: -70px;
    left: -70px;
  }
}
.testimonial-section .testimonial-container .testimonial-content .testimonial-data .quote-text {
  font-family: "mixta-pro";
  font-size: 18px !important;
  line-height: 30.5px !important;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 1551px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data .quote-text {
    font-size: 21px !important;
  }
}
@media screen and (max-width: 991px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data .quote-text {
    font-size: 16px !important;
    line-height: 23.5px !important;
  }
}
.testimonial-section .testimonial-container .testimonial-content .testimonial-data .footer-info .author {
  font-size: 15px !important;
  font-weight: 400;
  line-height: 22.5px;
}
@media screen and (max-width: 991px) {
  .testimonial-section .testimonial-container .testimonial-content .testimonial-data .footer-info .author {
    font-size: 13px !important;
  }
}
.testimonial-section .testimonial-container .testimonial-content .testimonial-data .footer-info .author strong {
  font-weight: 700;
}
.testimonial-section .testimonial-container .testimonial-content .testimonial-data .footer-info .logo {
  max-width: 110px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.9;
}
@media (max-width: 991px) {
  .testimonial-section .testimonial-container {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .testimonial-section .testimonial-container .testimonial-image,
  .testimonial-section .testimonial-container .testimonial-content {
    margin-left: 0;
    margin-top: 0;
  }
  .testimonial-section .testimonial-container .testimonial-image {
    margin-right: 80px;
  }
  .testimonial-section .testimonial-container .testimonial-content {
    padding: 40px 0 40px 30px;
    margin-top: -35%;
  }
}
@media screen and (max-width: 991px) and (max-width: 600px) {
  .testimonial-section .testimonial-container .testimonial-content {
    margin-top: -56%;
  }
}

@media screen and (max-width: 1399px) {
  #checkout #checkout-header {
    padding: 0 !important;
  }
}
@media screen and (max-width: 1399px) and (min-width: 992px) {
  #checkout #checkout-header > .container {
    width: 100%;
  }
}
#checkout #checkout-header > .container > .row {
  -ms-flex-align: center;
      align-items: center;
}
#checkout #checkout-header .logo-col {
  padding: 0 15px;
}
@media screen and (max-width: 1399px) {
  #checkout #checkout-header .logo-col {
    padding: 17px 15px;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media screen and (max-width: 1399px) and (min-width: 992px) {
  #checkout #checkout-header .logo-col {
    width: 97%;
    margin: 0 auto;
  }
}
#checkout #checkout-header .logo-col a {
  display: block;
}
#checkout #checkout-header .logo-col a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 330px;
  max-height: 58px;
}
@media screen and (max-width: 991px) and (min-width: 451px) {
  #checkout #checkout-header .logo-col a img {
    max-width: 240px;
  }
}
@media screen and (max-width: 450px) {
  #checkout #checkout-header .logo-col a img {
    max-width: 165px;
  }
}
@media screen and (min-width: 1400px) {
  #checkout #checkout-header .logo-col .mobile-secure-col {
    display: none;
  }
}
#checkout #checkout-header .logo-col .mobile-secure-col .secure-usp {
  color: #fff;
}
#checkout #checkout-header .logo-col .mobile-secure-col .secure-usp:before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(161deg) brightness(111%) contrast(100%);
}
@media screen and (max-width: 1399px) {
  #checkout #checkout-header .usp-col {
    padding: 0;
  }
}
#checkout #checkout-header #sd-uspblock {
  overflow: hidden;
  margin-left: auto;
}
@media screen and (min-width: 1400px) {
  #checkout #checkout-header #sd-uspblock {
    max-width: 902px;
  }
}
@media screen and (max-width: 1399px) {
  #checkout #checkout-header #sd-uspblock {
    padding: 10px 0;
    background: #2B2B2B;
  }
}
@media screen and (min-width: 1400px) {
  #checkout #checkout-header #sd-uspblock .swiper-wrapper {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
@media screen and (max-width: 1399px) {
  #checkout #checkout-header #sd-uspblock .swiper-wrapper {
    transition-timing-function: linear !important;
  }
}
#checkout #checkout-header #sd-uspblock .swiper-slide {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  column-gap: 11px;
}
@media screen and (min-width: 1400px) {
  #checkout #checkout-header #sd-uspblock .swiper-slide {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
@media screen and (max-width: 768px) {
  #checkout #checkout-header #sd-uspblock .swiper-slide {
    column-gap: 6px;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media screen and (min-width: 1400px) {
  #checkout #checkout-header #sd-uspblock .swiper-slide:last-child {
    margin-right: 0 !important;
  }
}
#checkout #checkout-header #sd-uspblock .swiper-slide:last-child .text .title {
  font-weight: 400;
}
#checkout #checkout-header #sd-uspblock .swiper-slide:last-child .text .sub-title {
  font-weight: 800;
}
#checkout #checkout-header #sd-uspblock .swiper-slide .img-usp img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  #checkout #checkout-header #sd-uspblock .swiper-slide .img-usp img {
    max-height: 18px;
  }
}
#checkout #checkout-header #sd-uspblock .swiper-slide .text {
  font-size: 16px;
  color: #fff;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #checkout #checkout-header #sd-uspblock .swiper-slide .text {
    font-size: calc(11px + 0.390625vw);
  }
}
#checkout #checkout-header #sd-uspblock .swiper-slide .text .title {
  font-weight: 800;
}
#checkout #wrapper {
  padding-top: 50px !important;
  padding-bottom: 6.6vmax !important;
}
@media screen and (max-width: 768px) {
  #checkout #wrapper {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
  }
}
#checkout #wrapper h1.page-title {
  color: #383838;
  font-size: 36px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.26px;
}
#checkout .secure-usp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  column-gap: 11px;
  color: #525252;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16px;
}
@media screen and (max-width: 768px) {
  #checkout .secure-usp {
    font-size: calc(11px + 0.390625vw);
    letter-spacing: 0.12px;
  }
}
#checkout .secure-usp:before {
  display: block;
  content: "";
  background: url("./../../assets/img/secure-lock-icon.svg");
  background-size: 100% 100%;
  width: 24px;
  height: 24px;
  min-width: 24px;
}
@media screen and (max-width: 576px) {
  #checkout .secure-usp:before {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}
#checkout .steps-row {
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 1399px) {
  #checkout .steps-row .left, #checkout .steps-row .right {
    display: none;
  }
}
#checkout .steps-row .center {
  -ms-flex: 1;
      flex: 1;
}
#checkout .steps-row .right {
  padding-bottom: 38px;
}
@media screen and (max-width: 768px) {
  #checkout .steps-row .right {
    padding-bottom: 24px;
  }
}
#checkout .steps-row .right .secure-usp {
  -ms-flex-pack: right;
      justify-content: right;
}
#checkout .checkout-step-counts {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0 0 38px;
  -ms-flex-align: baseline;
      align-items: baseline;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-step-counts {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 370px) {
  #checkout .checkout-step-counts {
    display: none;
  }
}
#checkout .checkout-step-counts .step-count {
  display: -ms-flexbox;
  display: flex;
  width: 27%;
  max-width: 175px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-step-counts .step-count {
    max-width: 155px;
    width: 25%;
  }
}
#checkout .checkout-step-counts .step-count .count {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 120px;
  text-align: center;
}
#checkout .checkout-step-counts .step-count .count:hover {
  cursor: pointer;
}
#checkout .checkout-step-counts .step-count .count .digit {
  color: #383838;
  background-color: #EFEFEF;
  width: 46px;
  height: 46px;
  font-weight: 800;
  font-size: 13px;
  line-height: normal;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: auto;
  font-family: "Geologica";
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-step-counts .step-count .count .digit {
    width: 37px;
    height: 37px;
  }
}
#checkout .checkout-step-counts .step-count .count .text {
  font-size: 13px;
  line-height: 150%;
  padding-top: 8px;
  color: #383838;
  font-family: "Geologica";
  letter-spacing: 0.13px;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-step-counts .step-count .count .text {
    font-size: calc(9px + 0.390625vw);
    letter-spacing: 0.1px;
  }
}
#checkout .checkout-step-counts .step-count .count.active {
  background-color: #606C6A;
}
#checkout .checkout-step-counts .step-count .hr-line {
  height: 5px;
  background: #EFEFEF;
  display: block;
  width: 100%;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 21px;
}
#checkout .checkout-step-counts .step-count.active .digit {
  background-color: #606C6A;
  color: #fff;
}
#checkout .checkout-step-counts .step-count.active .text {
  color: #606C6A;
}
#checkout .checkout-step-counts .step-count.active .hr-line {
  background: linear-gradient(to right, #606C6A 50%, #e4e8ec 50%);
}
#checkout .checkout-step-counts .step-count:has(+ .active) .hr-line {
  background: linear-gradient(to right, #e4e8ec 50%, #606C6A 50%);
}
#checkout .checkout-details-row {
  max-width: 1484px;
}
@media screen and (min-width: 1451px) {
  #checkout .checkout-details-row {
    margin: auto;
  }
}
@media screen and (max-width: 1450px) {
  #checkout .checkout-details-row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media screen and (max-width: 991px) and (min-width: 769px) {
  #checkout .checkout-details-row {
    margin-left: -6px;
    margin-right: -6px;
  }
}
#checkout .checkout-details-row .col-lg-7, #checkout .checkout-details-row .col-lg-5 {
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 991px) and (min-width: 769px) {
  #checkout .checkout-details-row .col-lg-7, #checkout .checkout-details-row .col-lg-5 {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .col-lg-7, #checkout .checkout-details-row .col-lg-5 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .cart-grid-right {
    -ms-flex-order: -1;
        order: -1;
    margin-bottom: 18px;
  }
}
#checkout .checkout-details-row .sticky-top {
  top: 30px;
}
#checkout .checkout-details-row .checkout-step {
  border: 2px solid #EFEFEF;
  padding: 40px 55px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1350px) and (min-width: 992px) {
  #checkout .checkout-details-row .checkout-step {
    padding: 40px 32px;
  }
}
@media screen and (max-width: 991px) {
  #checkout .checkout-details-row .checkout-step {
    padding: 20px 18px;
    border-radius: 12px;
  }
  #checkout .checkout-details-row .checkout-step.-current {
    padding: 26px 18px;
    border-radius: 20px;
  }
}
#checkout .checkout-details-row .checkout-step .step-title {
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-left: 0 !important;
  margin-right: 0 !important;
  font-size: 22px;
  line-height: normal;
  font-family: "Geologica";
  color: #383838;
  letter-spacing: 0.22px;
  padding: 0 !important;
  border: none !important;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .step-title {
    font-size: 16px;
  }
}
#checkout .checkout-details-row .checkout-step .step-title .step-number {
  display: none !important;
}
#checkout .checkout-details-row .checkout-step .step-title .step-edit {
  font-size: 14px;
  line-height: 20px;
  opacity: 1;
  font-family: "Geologica";
  color: #383838;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .step-title .step-edit {
    float: right !important;
    margin: 0 !important;
  }
}
#checkout .checkout-details-row .checkout-step .content {
  padding: 25px 0 0;
}
@media screen and (max-width: 991px) {
  #checkout .checkout-details-row .checkout-step .content {
    padding: 15px 0 0;
  }
}
#checkout .checkout-details-row .checkout-step .content .login-form-btn {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.15px;
}
@media screen and (min-width: 992px) {
  #checkout .checkout-details-row .checkout-step .content .login-form-btn {
    position: absolute;
    top: 40px;
    right: 75px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1350px) {
  #checkout .checkout-details-row .checkout-step .content .login-form-btn {
    right: 45px;
  }
}
#checkout .checkout-details-row .checkout-step .content .login-form-btn a {
  font-weight: 900;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
#checkout .checkout-details-row .checkout-step .content .login-form-btn i {
  display: none;
}
#checkout .checkout-details-row .checkout-step .content .btn-primary.continue {
  background: #383838 !important;
  color: #fff !important;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.18px;
  line-height: 30px;
  padding: 13px 25px;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .btn-primary.continue {
    font-size: 16px;
    letter-spacing: 0.16px;
    padding: 10px 25px;
    line-height: 22px;
  }
}
#checkout .checkout-details-row .checkout-step .content .btn-primary.continue:after {
  content: unset;
}
#checkout .checkout-details-row .checkout-step .content .btn-primary.continue:hover {
  opacity: 0.8;
}
#checkout .checkout-details-row .checkout-step .content .btn-primary.continue.to-payment {
  margin-top: 25px !important;
  background: #606C6A !important;
  color: #fff !important;
}
#checkout .checkout-details-row .checkout-step .content .btn-primary.continue.to-payment:hover {
  opacity: 0.9;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login {
  background: transparent;
  padding: 20px 15px;
  border: 2px solid #eee;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group {
  position: relative;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .col-form-label,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .col-form-label,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .col-form-label {
  color: #65676A;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0.15px;
  pointer-events: none;
  max-width: 40%;
  -ms-flex: 0 0 fit-content;
      flex: 0 0 fit-content;
  position: absolute;
  top: 10px;
  left: 41px;
  z-index: 4;
  transition: all ease-in-out 200ms;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .col-form-label,
  #checkout .checkout-details-row .checkout-step .content #customer-form .form-group .col-form-label,
  #checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .col-form-label {
    font-size: calc(12px + 0.390625vw);
    letter-spacing: 0.13px;
    line-height: 32px;
  }
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .col-md-8,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .col-md-8,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .col-md-8 {
  -ms-flex: 1;
      flex: 1;
  max-width: 100%;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .form-control,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .form-control,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .form-control {
  border-radius: 10px;
  border: 2px solid #EFEFEF;
  color: transparent;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.15px;
  box-shadow: none;
  outline: none;
  transition: color ease-in-out 200ms;
  padding: 23px 24px 9px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .form-control,
  #checkout .checkout-details-row .checkout-step .content #customer-form .form-group .form-control,
  #checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .form-control {
    font-size: calc(12px + 0.390625vw);
    letter-spacing: 0.13px;
    padding: 21px 24px 7px;
  }
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .form-control:-ms-input-placeholder,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .form-control:-ms-input-placeholder,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .form-control:-ms-input-placeholder {
  color: #65676A;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .form-control::placeholder,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .form-control::placeholder,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .form-control::placeholder {
  color: #65676A;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group select,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group select,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group select {
  height: auto;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .custom-checkbox input:checked + span:has(> .checkbox-checked),
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .custom-checkbox input:checked + span:has(> .checkbox-checked),
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .custom-checkbox input:checked + span:has(> .checkbox-checked) {
  border: none;
  background: #383838;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .custom-checkbox input + span,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .custom-checkbox input + span,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .custom-checkbox input + span {
  border-radius: 5px;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .custom-checkbox .checkbox-checked,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .custom-checkbox .checkbox-checked,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .custom-checkbox .checkbox-checked {
  top: 0;
  left: 0;
  border-radius: 5px;
  background: #383838;
  color: #fff;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .custom-checkbox .checkbox-checked:before,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .custom-checkbox .checkbox-checked:before,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .custom-checkbox .checkbox-checked:before {
  height: 100%;
  display: block;
  line-height: 15px;
  font-size: 8px;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .custom-checkbox label,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .custom-checkbox label,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .custom-checkbox label {
  color: #383838;
  font-family: "Geologica";
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.13px;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .form-control-comment,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .form-control-comment,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .form-control-comment {
  display: none;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .input-group,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .input-group,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .input-group {
  outline: none;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .input-group .form-control,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .input-group .form-control,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group .input-group .input-group-append .btn,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group .input-group .input-group-append .btn,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group .input-group .input-group-append .btn {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0.2rem 1rem;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group.floating-label-group.active .form-control,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group.floating-label-group.active .form-control,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group.floating-label-group.active .form-control {
  color: #383838;
}
#checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group.floating-label-group.active .col-form-label,
#checkout .checkout-details-row .checkout-step .content #customer-form .form-group.floating-label-group.active .col-form-label,
#checkout .checkout-details-row .checkout-step .content #delivery-address .form-group.floating-label-group.active .col-form-label {
  top: -3px;
  color: #979899;
  font-size: 12px;
  letter-spacing: 0.12px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group.floating-label-group.active .col-form-label,
  #checkout .checkout-details-row .checkout-step .content #customer-form .form-group.floating-label-group.active .col-form-label,
  #checkout .checkout-details-row .checkout-step .content #delivery-address .form-group.floating-label-group.active .col-form-label {
    font-size: calc(9px + 0.390625vw);
    letter-spacing: 0.1px;
  }
}
@media screen and (min-width: 992px) {
  #checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group.custom-col-50,
  #checkout .checkout-details-row .checkout-step .content #customer-form .form-group.custom-col-50,
  #checkout .checkout-details-row .checkout-step .content #delivery-address .form-group.custom-col-50 {
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: calc(50% - 9.5px);
    margin-left: 0;
    margin-right: 0;
  }
  #checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group.custom-col-50 .col-form-label,
  #checkout .checkout-details-row .checkout-step .content #customer-form .form-group.custom-col-50 .col-form-label,
  #checkout .checkout-details-row .checkout-step .content #delivery-address .form-group.custom-col-50 .col-form-label {
    left: 26px;
  }
  #checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group.custom-col-50 .col-md-8,
  #checkout .checkout-details-row .checkout-step .content #customer-form .form-group.custom-col-50 .col-md-8,
  #checkout .checkout-details-row .checkout-step .content #delivery-address .form-group.custom-col-50 .col-md-8 {
    padding: 0;
  }
  #checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group.custom-col-50.custom-col-field-lastname, #checkout .checkout-details-row .checkout-step .content #personal-information-step-login .form-group.custom-col-50.custom-col-field-postcode,
  #checkout .checkout-details-row .checkout-step .content #customer-form .form-group.custom-col-50.custom-col-field-lastname,
  #checkout .checkout-details-row .checkout-step .content #customer-form .form-group.custom-col-50.custom-col-field-postcode,
  #checkout .checkout-details-row .checkout-step .content #delivery-address .form-group.custom-col-50.custom-col-field-lastname,
  #checkout .checkout-details-row .checkout-step .content #delivery-address .form-group.custom-col-50.custom-col-field-postcode {
    margin-left: 12px;
  }
}
#checkout .checkout-details-row .checkout-step .content #delivery-address .btn-primary.continue {
  margin-top: 30px !important;
}
#checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option {
  border-radius: 10px;
  border: 2px solid #E4E8EC;
  background: transparent;
  padding: 18px 25px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option {
    padding: 16px 5px;
  }
  #checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option .delivery-option-2 > .row > .col-xs-12 {
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 15px !important;
  }
  #checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option .delivery-option-2 > .row > .col-sm-5 {
    padding-left: 8px !important;
    max-width: 100% !important;
    -ms-flex: 1 !important;
        flex: 1 !important;
  }
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option {
    padding: 16px 0;
  }
}
#checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option.active {
  border: 2px solid #606C6A;
  background: #F6FFF6;
}
#checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option.active label .carrier-price {
  color: #606C6A;
}
#checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option .col-sm-1 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 15px !important;
  padding-right: 0;
  width: -moz-fit-content;
  width: fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
#checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option .col-sm-1 .custom-radio {
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option .col-sm-1 .custom-radio {
    width: 18px;
    height: 18px;
  }
}
#checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option .col-sm-1 .custom-radio input[type=radio]:checked + span {
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option .col-sm-1 .custom-radio input[type=radio]:checked + span {
    width: 10px;
    height: 10px;
  }
}
#checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option label {
  padding: 0 0 0 8px;
  -ms-flex: 1;
      flex: 1;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option label {
    padding-left: 0;
  }
}
#checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option label .carrier-name {
  color: #313943;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.15px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option label .carrier-name {
    font-size: 13px;
    letter-spacing: 0.13px;
  }
}
#checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option label .carrier-price {
  color: #313943;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.15px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option label .carrier-price {
    font-size: 13px;
    letter-spacing: 0.13px;
  }
}
#checkout .checkout-details-row .checkout-step .content .delivery-options .delivery-option label > .row {
  margin: 0 !important;
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option {
  background: transparent;
  padding: 0;
  padding-top: 20px;
  border-top: 2px solid #eee;
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option {
  border-radius: 10px;
  border: 2px solid #E4E8EC;
  background: transparent;
  padding: 18px 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option {
    padding: 16px 5px;
  }
}
@media screen and (max-width: 470px) {
  #checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option {
    padding: 16px 0;
  }
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option.active {
  border: 2px solid #606C6A;
  background: #F6FFF6;
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-6 {
  -ms-flex-order: 1;
      order: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 6px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -ms-flex: 1;
      flex: 1;
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-6:before {
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  min-width: 25px;
  border: 1px solid #383838;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-6:before {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-6 input {
  width: 25px;
  height: 25px;
  min-width: 25px;
  position: absolute;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-6 input {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-6 input:checked + label:before {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background: #383838;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-6 input:checked + label:before {
    width: 10px;
    height: 10px;
    left: 19px;
  }
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-6 label {
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.15px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-6 label {
    font-size: 13px;
    line-height: normal;
  }
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-2 {
  -ms-flex-order: 2;
      order: 2;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -ms-flex-pack: left !important;
      justify-content: left !important;
  padding-left: 0;
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-2 .modal-btn {
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-2 .modal-btn span {
  display: block;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-2 .modal-btn span {
    font-size: 17px;
  }
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-4 {
  -ms-flex-order: 3;
      order: 3;
  width: -moz-fit-content;
  width: fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  padding-left: 0;
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-4 span {
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.15px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content .two-man-delivery-option .option .col-4 span {
    font-size: 13px;
    line-height: normal;
  }
}
#checkout .checkout-details-row .checkout-step .content .two-man-delivery-option p {
  font-size: 15px;
}
#checkout .checkout-details-row .checkout-step .content #twoManDeliveryInformationModal .modal-content {
  padding: 40px 36px 70px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content #twoManDeliveryInformationModal .modal-content {
    padding: 40px 22px 70px;
    border-radius: 0;
  }
}
#checkout .checkout-details-row .checkout-step .content #twoManDeliveryInformationModal .modal-header {
  padding: 0;
  -ms-flex-align: center;
      align-items: center;
  border: none;
  margin-bottom: 38px;
}
#checkout .checkout-details-row .checkout-step .content #twoManDeliveryInformationModal .modal-header .modal-title {
  color: #383838;
  font-family: "Geologica";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content #twoManDeliveryInformationModal .modal-header .modal-title {
    font-size: calc(15px + 0.390625vw);
    letter-spacing: 0.16px;
    max-width: 355px;
  }
}
#checkout .checkout-details-row .checkout-step .content #twoManDeliveryInformationModal .modal-header .close {
  background: #E4E8EC;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
  opacity: 1;
  margin: 0;
  padding: 0;
}
#checkout .checkout-details-row .checkout-step .content #twoManDeliveryInformationModal .modal-body {
  padding: 0;
}
#checkout .checkout-details-row .checkout-step .content #twoManDeliveryInformationModal .modal-body p {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.15px;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step .content #twoManDeliveryInformationModal .modal-body p {
    font-size: calc(12px + 0.390625vw);
    letter-spacing: 0.13px;
    margin-bottom: 15px;
  }
}
#checkout .checkout-details-row .checkout-step .content #twoManDeliveryInformationModal .modal-body p:last-child {
  margin-bottom: 0 !important;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option {
  border-radius: 10px;
  border: 2px solid #EFEFEF;
  background: transparent;
  padding: 18px 30px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option {
    padding: 17px 19px;
    margin-bottom: 10px;
  }
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option:has(input:checked) {
  margin-bottom: 0;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #EFEFEF;
  border-color: #EFEFEF;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option .custom-radio {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option .custom-radio input[type=radio] {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option .custom-radio {
    width: 18px;
    height: 18px;
  }
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option .custom-radio input[type=radio]:checked + span {
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option .custom-radio input[type=radio]:checked + span {
    width: 10px;
    height: 10px;
  }
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option label {
  color: #313943;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.15px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option label {
    font-size: 13px;
    letter-spacing: 0.13px;
  }
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .payment-option p {
  font-size: 15px;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .additional-information {
  margin: 0 0 12px;
  padding: 0 30px 15px;
  border-radius: 0 0 10px 10px;
  border: 2px solid #EFEFEF;
  background: #EFEFEF;
  border-top: 0;
  color: #383838;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .additional-information {
    padding: 0 19px 12px;
  }
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .additional-information p {
  color: #383838;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .payment-options .additional-information > div:has(> #stripe-ajax-loader) {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step #payment-confirmation .btn-primary {
  font-family: "Geologica";
  font-size: 18px;
  font-weight: 900;
  line-height: 30px;
  letter-spacing: 0.18px;
  border-radius: 44px;
  background: #606C6A !important;
  color: #fff !important;
  text-transform: capitalize;
  padding: 13px 25px;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step#checkout-payment-step #payment-confirmation .btn-primary {
    font-size: 16px;
    letter-spacing: 0.16px;
    padding: 10px 25px;
    line-height: 22px;
  }
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step #payment-confirmation .btn-primary:after {
  content: unset;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step #payment-confirmation .btn-primary:hover {
  opacity: 0.9;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .custom-checkbox input + span {
  border-radius: 5px;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .custom-checkbox input:checked + span:has(> .checkbox-checked) {
  border: none;
  background: #383838;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .custom-checkbox .checkbox-checked {
  top: 0;
  left: 0;
  border-radius: 5px;
  background: #383838;
  color: #fff;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .custom-checkbox .checkbox-checked:before {
  height: 100%;
  display: block;
  line-height: 15px;
  font-size: 8px;
}
#checkout .checkout-details-row .checkout-step#checkout-payment-step .custom-checkbox label {
  color: #383838;
  font-family: "Geologica";
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.13px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row .checkout-step#checkout-payment-step .custom-checkbox label {
    font-size: calc(10px + 0.390625vw);
    letter-spacing: 0.11px;
  }
}
#checkout .checkout-details-row .checkout-step.-unreachable {
  display: none;
}
#checkout .checkout-details-row .checkout-step.-complete {
  display: none;
}
#checkout .checkout-details-row .checkout-step.-current {
  display: block;
}
#checkout .checkout-details-row #js-checkout-summary {
  color: #383838;
  font-family: "Geologica";
}
@media screen and (min-width: 769px) {
  #checkout .checkout-details-row #js-checkout-summary {
    border: 2px solid #EFEFEF;
  }
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row #js-checkout-summary {
    border-radius: 8px;
  }
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-body {
  margin-bottom: 30px;
  padding: 40px 40px 48px;
  border-bottom: 2px solid #EFEFEF;
}
@media screen and (max-width: 1350px) and (min-width: 992px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-body {
    padding: 40px 32px;
  }
}
@media screen and (max-width: 991px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-body {
    padding: 26px 18px;
  }
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-body {
    padding: 12px 16px;
    border: 0;
    margin: 0;
  }
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-body .cart-summary-products .row {
  width: 100%;
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-body .cart-summary-products .checkout-summary-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-body .cart-summary-products .checkout-summary-row {
    display: none;
  }
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-body .cart-summary-products .checkout-summary-row .checkout-summary-title {
  color: #383838;
  font-family: "Geologica";
  font-size: 22px;
  font-weight: 800;
  line-height: 22px;
  letter-spacing: 0.22px;
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-body .cart-summary-products .checkout-summary-row .step-edit {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-body .cart-summary-products .checkout-summary-row .step-edit i {
  display: none;
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-body .cart-summary-products .checkout-summary-row .step-edit span {
  text-decoration: underline;
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-body .cart-summary-subtotals-container {
  display: block;
  margin-top: 20px;
  border-top: 2px solid #eee;
  padding: 20px 0 0;
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-body .cart-summary-totals {
  display: block;
  padding: 0;
  margin-bottom: 0;
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-subtotals-container {
  padding: 0 40px;
}
@media screen and (max-width: 1350px) and (min-width: 992px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-subtotals-container {
    padding: 0 32px;
  }
}
@media screen and (max-width: 991px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-subtotals-container {
    padding: 0 18px;
  }
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-subtotals-container {
    display: none;
  }
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-subtotals-container .cart-summary-subtotals .label, #checkout .checkout-details-row #js-checkout-summary .cart-summary-subtotals-container .cart-summary-subtotals .value {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 800;
  line-height: 153.33%;
  letter-spacing: 0.15px;
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-subtotals-container .cart-summary-subtotals#cart-subtotal-shipping .value .green {
  color: #606C6A;
  font-weight: 800;
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-totals {
  padding: 0 40px;
  margin-top: 32px;
  margin-bottom: 45px;
}
@media screen and (max-width: 1350px) and (min-width: 992px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-totals {
    padding: 0 32px;
  }
}
@media screen and (max-width: 991px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-totals {
    padding: 0 18px;
  }
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-totals {
    margin-top: 10px;
    margin-bottom: 16px;
    display: none;
  }
}
#checkout .checkout-details-row #js-checkout-summary .cart-summary-totals .cart-total {
  color: #383838;
  font-family: "Geologica";
  font-size: 25px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.25px;
}
@media screen and (max-width: 768px) {
  #checkout .checkout-details-row #js-checkout-summary .cart-summary-totals .cart-total {
    font-size: calc(18px + 0.390625vw);
  }
}
#checkout .checkout-details-row #js-checkout-summary .block-promo {
  display: none;
}
#checkout .checkout-details-row #js-checkout-summary .block-promo form .btn-secondary {
  font-weight: 500;
  color: #000000;
}
#checkout .checkout-details-row #js-checkout-summary .block-promo form .btn-secondary:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
#checkout .checkout-details-row .checkout-process-block {
  padding: 55px 40px;
}
#checkout #cart-summary-product-list .media-left {
  max-width: 100% !important;
}
#checkout #cart-summary-product-list .media-left .media-object {
  width: 104px;
}
@media screen and (max-width: 991px) {
  #checkout #cart-summary-product-list .media-left .media-object {
    width: 95px;
  }
}
#checkout #cart-summary-product-list .media-body .product-name {
  display: block;
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  line-height: 133.333%;
  letter-spacing: 0.15px;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  #checkout #cart-summary-product-list .media-body .product-name {
    font-size: calc(12px + 0.390625vw);
    letter-spacing: 0.13px;
  }
}
#checkout #cart-summary-product-list .media-body .product-quantity-price {
  color: #383838;
  font-family: "Geologica";
  font-size: 18px;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 0.18px;
  display: block;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  #checkout #cart-summary-product-list .media-body .product-quantity-price {
    font-size: calc(14px + 0.390625vw);
    letter-spacing: 0.15px;
  }
}
#checkout #cart-summary-product-list .media-body .text-muted {
  font-size: 13px;
  line-height: 150%;
  color: #383838;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #checkout #cart-summary-product-list .media-body .text-muted {
    font-size: calc(9px + 0.390625vw);
    letter-spacing: 0.1px;
  }
}
#checkout #cart-summary-product-list .media-body .pull-right {
  float: unset;
}
#checkout #cart-summary-product-list .cart-summary-product {
  padding: 0;
}
#checkout #cart-summary-product-list .cart-summary-product:not(:last-child) {
  padding: 1rem 0;
}
#checkout #cart-summary-product-list .cart-summary-product .product-checkout-price {
  padding-top: 15px;
  font-weight: 800;
}
#checkout #cart-summary-product-list .cart-summary-product:last-child {
  width: 100%;
}
#checkout #cart-summary-product-list .card {
  border: none;
}
#checkout #cart-summary-product-list .card .card-header {
  background: none;
  border: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #checkout #cart-summary-product-list .card .card-header .card-header-desktop {
    display: none;
  }
}
#checkout #cart-summary-product-list .card .card-header .card-header-desktop .card-link {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #checkout #cart-summary-product-list .card .card-header .card-header-desktop .card-link {
    font-size: calc(12px + 0.390625vw);
    letter-spacing: 0.13px;
  }
}
#checkout #cart-summary-product-list .card .card-header .card-header-desktop .card-link:after {
  content: "";
  background: url("../svg/ph_caret-up-bold.svg");
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  transition: transform ease-in-out 300ms;
  transform: rotate(180deg);
}
#checkout #cart-summary-product-list .card .card-header .card-header-desktop .card-link.collapsed:after {
  transform: none;
}
@media screen and (min-width: 769px) {
  #checkout #cart-summary-product-list .card .card-header .card-header-mobile {
    display: none;
  }
}
#checkout #cart-summary-product-list .card .card-header .card-header-mobile .card-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  column-gap: 13px;
}
#checkout #cart-summary-product-list .card .card-header .card-header-mobile .card-link.collapsed .text:after {
  transform: unset;
}
#checkout #cart-summary-product-list .card .card-header .card-header-mobile .card-link .image {
  width: 16.5%;
  max-width: 85px;
  display: none;
}
#checkout #cart-summary-product-list .card .card-header .card-header-mobile .card-link .text {
  color: #383838;
  font-family: "Geologica";
  font-size: calc(12px + 0.390625vw);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  column-gap: 9px;
}
#checkout #cart-summary-product-list .card .card-header .card-header-mobile .card-link .text:after {
  display: block;
  content: "\f107";
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  font-size: 17px;
  font-weight: 800;
  transform: rotate(180deg);
  transition: transform ease-in-out 300ms;
}
#checkout #cart-summary-product-list .card .card-header .card-header-mobile .card-link .price {
  color: #383838;
  font-family: "Geologica";
  font-size: calc(12px + 0.390625vw);
  font-weight: 800;
  line-height: 128.571%;
  letter-spacing: 0.21px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #checkout #cart-summary-product-list .card #collapseCartProductSummary:not(.class-updated) {
    display: none;
  }
}
#checkout #cart-summary-product-list .card .card-body {
  padding: 25px 0 0;
}
#checkout #cart-summary-product-list .card .card-body .block-promo .cart-voucher .cart-voucher-area {
  padding: 0;
  background: none;
}
#checkout .form-group:has(.custom-select2.d-none) {
  display: none !important;
}

#order-confirmation .order-conf-content .details p {
  color: #464646;
}
#order-confirmation .order-conf-content .product-details .price-block span {
  color: #464646;
}
#order-confirmation .order-conf-content .product-details .price-block .shipping-price {
  color: #606C6A;
}
#order-confirmation #content-hook_order_confirmation.order-confirmation-page h1.page-title {
  color: #383838;
  font-size: 33px;
  font-weight: 900;
  line-height: 47px;
}
#order-confirmation #content-hook_order_confirmation.order-confirmation-page p.order-ref {
  color: #383838;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
}
#order-confirmation .top-desc p {
  color: #464646;
  font-size: 14px;
  line-height: 21px;
}
#order-confirmation .top-desc p a {
  color: #606C6A !important;
  text-decoration: none;
}
#order-confirmation .order-conf-sub-header h2 {
  color: #383838;
}
#order-confirmation .pstrong {
  color: #383838;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}
#order-confirmation .product-details .product-name {
  color: #383838;
}
#order-confirmation .product-details p {
  color: #464646;
}
#order-confirmation .product-details .price-block .total-block span {
  color: #464646;
  font-weight: 900;
}
#order-confirmation .order-conf-newsletter h2 {
  color: #383838;
  font-size: 33px;
  font-weight: 900;
}
#order-confirmation .order-conf-newsletter p {
  color: #464646;
  font-size: 15px;
}
#order-confirmation .order-conf-newsletter .ps-emailsubscription-block input.input-subscription {
  box-shadow: none;
  border-radius: 5px;
}
#order-confirmation .order-conf-newsletter .ps-emailsubscription-block button {
  border-radius: 5px;
}
#order-confirmation .order-conf-newsletter .ps-emailsubscription-block button:hover {
  background: #383838;
}
#order-confirmation .order-conf-footer-content h2 {
  color: #383838;
  font-size: 33px;
  font-weight: 900;
}
#order-confirmation .order-conf-footer-content p {
  color: #464646;
  font-size: 15px;
}
#order-confirmation .order-conf-footer-content p a {
  color: #606C6A !important;
  text-decoration: none;
}
#order-confirmation .order-conf-footer-content .btns .btn {
  background: #606C6A;
  font-size: 16px;
  font-weight: 800;
  line-height: 30px;
  border-radius: 5px;
  text-transform: uppercase;
}
#order-confirmation .order-conf-footer-content .btns .btn:hover {
  color: #ffffff;
  background: #383838;
}

@media screen and (min-width: 1025px) {
  body #main-page-content #wrapper .container {
    width: 95%;
  }
}
body {
  font-weight: 400;
}
body:has(.ybc-menu-btn.opened) {
  overflow: hidden;
}
body .h1.page-title {
  font-family: "mixta-pro";
}

.feature-product h2 {
  font-weight: 900;
  font-size: 34px;
  text-align: center;
  color: #464646;
  padding-bottom: 15px;
}
.feature-product .products {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.feature-product .products .js-product-miniature-wrapper {
  width: 100%;
  max-width: 100%;
}
.feature-product .products .thumbnail-container {
  padding: 25px 40px 20px 45px;
}
.feature-product .products .product-description {
  padding-top: 17px;
}
.feature-product .products .product-description .product-description-short {
  display: none;
}
.feature-product .products .product-description .product-brand {
  display: none;
}
.feature-product .products .product-description .product-category-name {
  display: none;
}
.feature-product .products .product-description .product-price-and-shipping .product-price strong {
  color: #464646;
  font-weight: 400;
}
.feature-product .products .product-add-cart {
  display: none;
}
.feature-product .products .thumbnail-container {
  border: 1px solid #D0D0D0;
  border-radius: 5px;
}
.feature-product .products .product-title {
  text-align: left;
}
.feature-product .products .product-title a {
  font-size: 17px;
  font-weight: 700;
  color: #464646;
  line-height: 24px;
  padding-top: 17px;
}
.feature-product .products #listing-review-star {
  font-size: 13px;
  padding-top: 13px;
}
.feature-product .products #listing-review-star span {
  font-size: 13px;
}
.feature-product .products .more-color-available {
  position: absolute;
  right: 0;
  bottom: 0;
}
.feature-product .products .more-color-available span {
  background: #007B68;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  padding: 1px 11px 3px 12px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media screen and (min-width: 769px) {
  .breadcrumb {
    padding: 0 !important;
    margin-top: 14px;
    margin-bottom: 18px;
  }
}
.breadcrumb li {
  color: #464646;
}
.breadcrumb li a {
  color: #464646;
}
.breadcrumb li:after {
  color: #464646;
}
.breadcrumb li:last-child {
  display: inline;
  font-size: 13px;
  font-weight: 600;
  color: #464646;
}

.products .more-color-available {
  position: absolute;
  right: 0;
  bottom: 0;
}
.products .more-color-available span {
  background: #007B68;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  padding: 1px 11px 3px 12px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.products .product-description {
  padding: 0 !important;
}
.products .product-description .product-reference {
  display: none;
}
.products .product-description .products-variants {
  margin-top: 16px;
  margin-bottom: 16px;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .products .product-description .products-variants {
    margin-top: 13px;
    margin-bottom: 0px;
  }
}
.products .product-description .products-variants .variant-links {
  display: -ms-flexbox;
  display: flex;
}
.products .product-description .products-variants .variant-links .memorial-size img {
  max-width: 50px;
}
.products .product-description .products-variants .variant-links .memorial-size p {
  display: none;
}
.products .product-description .products-variants .variant-links .variant-colours {
  color: #ABABAB;
  font-family: "Geologica";
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 218.182% */
  margin-left: 5px;
}
.products .product-description .products-variants .variant-links a {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: unset;
  background-repeat: unset;
  box-shadow: inset 0 0 0 2px white;
  border: 1px solid #dadada;
}
.products .product-description .products-variants .variant-links .active {
  border: 1px solid #383838;
}
.products .product-description .product-price-and-shipping .product-price strong {
  color: #464646;
  font-weight: 700;
  font-size: 17px;
}
.products .product-description .product-title {
  text-align: left;
}
.products .product-description .product-title a {
  font-size: 17px;
  font-weight: 700;
  color: #464646 !important;
  line-height: 24px;
  padding-top: 17px;
}
.products .thumbnail-container {
  border: 1px solid #D0D0D0;
  border-radius: 5px;
}
.products #listing-review-star {
  font-size: 13px;
  padding-top: 13px;
  width: 100%;
}

.form-group {
  color: #464646;
}
.form-group .form-control {
  box-shadow: none;
}
.form-group .form-control:focus {
  border-color: #66AFE9;
}
.form-group .input-group.focus {
  outline: none;
}

@media screen and (max-width: 768px) {
  .feature-product .products {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 30px;
  }
  .feature-product .products .more-color-available span {
    padding: 3px 11px 4px 12px;
    font-size: 11px;
  }
  .feature-product .products .product-description {
    padding-top: 10px;
    text-align: center;
  }
  .feature-product .products .product-description .product-title {
    text-align: center;
    height: 40px;
  }
  .feature-product .products #listing-review-star {
    padding-top: 7px;
  }
  .feature-product .products .product-title a {
    font-size: 14px;
  }
  .products .product-description {
    padding-top: 10px;
    text-align: center;
  }
  .products .product-description .product-title {
    text-align: center;
  }
  .products .product-description .product-title a {
    font-size: 14px;
    line-height: 20px;
  }
  .products .product-description #listing-review-star {
    padding-top: 10px;
  }
  .products .product-description #listing-review-star span {
    font-size: 13px;
  }
  .products .product-description .product-price-and-shipping {
    text-align: center !important;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .feature-product .products {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .feature-product .products .js-product-miniature-wrapper {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 48%;
  }
}
.btn-group-lg > .btn, .btn-lg, .btn-group-lg > .btn {
  padding: 12px 1.5rem;
  font-size: inherit;
  border-radius: 5px;
}

.block-promo .btn.btn-secondary, .block-promo .btn.btn-secondary.btn-block {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

.btn.btn-secondary, .btn.btn-secondary.btn-block {
  padding: 11px 1.25rem;
  border-radius: 5px;
}

.swiper-default-carousel:not(.swiper-container-initialized) .swiper-wrapper {
  display: inherit;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#module-sshopsearch-search .feature-product {
  padding: 40px 0;
}
#module-sshopsearch-search #wrapper .container .page-title {
  margin-top: 80px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #module-sshopsearch-search #wrapper .container .page-title {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
#module-sshopsearch-search #wrapper .container .page-title span {
  font-family: "Geologica";
  font-size: 34px;
  color: #383838;
}
@media screen and (max-width: 576px) {
  #module-sshopsearch-search #wrapper .container #products .row .col-6 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}
#module-sshopsearch-search #wrapper .container #products .row .col-6 .thumbnail-container {
  background-color: #ebe9ea;
  border: unset;
  aspect-ratio: 425/425;
  border-radius: unset;
}
#module-sshopsearch-search #wrapper .container #products .row .col-6 .thumbnail-container .more-color-available span {
  border-radius: unset;
}
#module-sshopsearch-search #wrapper .container #products .row .col-6 .thumbnail-container .product-flag-extra .product-flag {
  border-radius: unset;
}
#module-sshopsearch-search #wrapper .container #products .row .col-6 .thumbnail-container .product-flag-extra .product-flag span {
  border-radius: unset;
  font-size: 13px;
}
@media screen and (max-width: 1400px) {
  #module-sshopsearch-search #wrapper .container #products .row .col-6 .thumbnail-container .product-flag-extra .product-flag span {
    padding: 0;
  }
}
#module-sshopsearch-search #wrapper .container #products .row .col-6 .product-description {
  padding: 0;
  padding-top: 17px;
}
#module-sshopsearch-search #wrapper .container #products .row .col-6 .product-description .product-title a {
  color: #383838;
  font-family: "Geologica";
  font-size: 20px;
  font-style: normal;
  font-weight: 250;
  line-height: 24px; /* 120% */
}
@media screen and (max-width: 768px) {
  #module-sshopsearch-search #wrapper .container #products .row .col-6 .product-description .product-title a {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  #module-sshopsearch-search #wrapper .container #products .row .col-6 .product-description .product-title {
    text-align: left;
  }
}
#module-sshopsearch-search #wrapper .container #products .row .col-6 .product-description .product-shop-now {
  display: none;
}
#module-sshopsearch-search #wrapper .container #products .row .col-6 .product-description .product-price-and-shipping {
  padding: 0;
}
@media screen and (max-width: 768px) {
  #module-sshopsearch-search #wrapper .container #products .row .col-6 .product-description .product-price-and-shipping {
    text-align: left !important;
  }
}
#module-sshopsearch-search #wrapper .container #products .row .col-6 .product-description .product-price-and-shipping .product-price {
  color: #383838;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  #module-sshopsearch-search #wrapper .container #products .row .col-6 .product-description .product-price-and-shipping .product-price {
    font-size: 13px;
    line-height: 20px;
  }
}

.sd_form#module-sd_customform-display {
  background: #F7F4F0;
  padding-bottom: 70px;
  margin-bottom: -2.5rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 20px;
}
.sd_form#module-sd_customform-display .form-container .form-field {
  margin-bottom: 30px;
}
.sd_form#module-sd_customform-display .form-container .form-header h2 {
  font-size: 32px;
  line-height: 22px;
  color: #343434;
  font-weight: bold;
  text-align: center;
}
.sd_form#module-sd_customform-display .form-container .form-header p {
  font-size: 19px;
  line-height: 31px;
  color: #343434;
  text-align: center;
  margin: auto;
  max-width: 40%;
}
.sd_form#module-sd_customform-display .form-container .sd_form-group {
  background: #D6E3E5;
  padding: 40px 60px;
  border-radius: 7px;
  margin: auto;
  max-width: 50%;
}
.sd_form#module-sd_customform-display .form-container .sd_form-group .form-control:focus {
  border: 1px solid #606C6A !important;
  box-shadow: none;
}
.sd_form#module-sd_customform-display .form-container .sd_form-group label {
  text-align: left;
  font-size: 15px;
  line-height: 31px;
  color: #343434;
  font-weight: 700;
}
.sd_form#module-sd_customform-display .form-container .sd_form-group input {
  font-size: 15px;
  line-height: 31px;
  color: #ACACAC;
  border: 2px solid #C0D2D5;
  border-radius: 7px;
}
.sd_form#module-sd_customform-display .form-container .sd_form-group .form-footer {
  text-align: center;
}
.sd_form#module-sd_customform-display .form-container .sd_form-group .sd_form_submit {
  background: #0C5660;
  border-radius: 5px;
  border: none;
  color: #ffffff;
  font-size: 17px;
  padding: 15px 58px;
  text-transform: uppercase;
  font-weight: 900;
}
.sd_form#module-sd_customform-display .form-container .sd_form-group .sd_form_submit:hover {
  background: #007B68;
  opacity: 1;
}
.sd_form#module-sd_customform-display .form-container .sd_form-group .form-control-select {
  height: 3rem;
  font-size: 15px;
  line-height: 31px;
  border: 2px solid #C0D2D5;
  border-radius: 7px;
  color: #555;
  background-image: url("../../assets/img/arrow-down.svg");
  background-size: 16px 23px;
  outline: 0;
}
@media (max-width: 991px) {
  .sd_form#module-sd_customform-display .form-container .sd_form-group {
    max-width: 85%;
  }
  .sd_form#module-sd_customform-display .form-container .form-header p {
    max-width: 75%;
  }
}
@media (max-width: 526px) {
  .sd_form#module-sd_customform-display .form-container .form-field {
    margin-bottom: 18px;
    padding: 0 10px;
  }
  .sd_form#module-sd_customform-display .form-container .sd_form-group {
    max-width: 100%;
    padding: 25px 15px;
  }
  .sd_form#module-sd_customform-display .form-container .form-header p {
    max-width: 95%;
  }
}

.title .select-acc {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}
.title .select-acc:after {
  content: "" !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 32px !important;
  height: 32px !important;
  background-color: #606C6A; /* Background color */
  border-radius: 50%; /* Makes it circular */
  background-image: url("../../assets/img/open-sub.svg"); /* Your white line image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%; /* Adjust the size of the image */
  filter: unset !important;
}
@media screen and (max-width: 991px) {
  .title .select-acc:after {
    width: 24px !important;
    height: 24px !important;
    padding: 10px;
    min-width: 24px;
  }
}
.title .select-acc:hover:after {
  background-color: #383838;
}
.title .select-acc .variant-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 25px;
}
.title .select-acc.collapsed:after {
  content: "" !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 32px !important;
  height: 32px !important;
  background-color: #606C6A; /* Background color */
  border-radius: 50%; /* Makes it circular */
  background-image: url("../../assets/img/collapsed-add.svg"); /* Your white line image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%; /* Adjust the size of the image */
  filter: unset !important;
}
@media screen and (max-width: 991px) {
  .title .select-acc.collapsed:after {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    padding: 10px;
  }
}
.title .select-acc.collapsed:hover:after {
  background-color: #383838;
}
.title .form-control-label {
  padding: 0;
  font-size: 18px;
  line-height: 22px;
  color: #464646;
  text-transform: capitalize;
}
.title .selected-variant {
  margin-top: 0;
  display: block;
  font-size: 13px;
  color: #232323;
}

.reviewsio-floating-widget {
  z-index: 99;
}

@media screen and (max-width: 991px) {
  .hide-in-991 {
    display: none;
  }
}
@media screen and (min-width: 991px) {
  .show-in-991 {
    display: none;
  }
}
#product .sd-anchor-list .select-acc:after {
  filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(25%) hue-rotate(22deg) brightness(107%) contrast(106%);
}

#product .sd-anchor-list .select-acc.collapsed:after {
  content: "";
}

#header #desktop-header .header-top #desktop-header-container .align-items-center .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul {
  border-radius: unset;
}

#product .product-flag-extra .top-left {
  top: -10px !important;
}

.product-flag-extra .product-flag {
  border-radius: unset;
}
.product-flag-extra .product-flag span {
  color: #fff;
  font-family: "Geologica";
  font-size: 13px;
  font-style: normal;
  font-weight: 250;
  line-height: 24px; /* 184.615% */
  letter-spacing: 1.17px;
  text-transform: uppercase;
}
.product-flag-extra .on-sale {
  padding: 10px 20px;
  border-radius: 20px;
}

.product-flags .product-flag {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  margin-top: 20px !important;
  margin-left: 15px;
}

.sd-anchor-list .select-acc.select-arrow:after {
  content: "" !important;
}

.sd-anchor-list .select-acc {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 26px !important;
  padding-top: 26px;
  font-size: 19px !important;
}

.sd-anchor-list .anchor-desc h2 {
  font-weight: 900;
  font-size: 34px;
  color: #464646;
}

.crossselling-products .swiper-button-next, .crossselling-products .swiper-button-prev {
  display: none;
}

.pa-captcha-inf.col-md-6 {
  display: block !important;
}

.sd_form#module-sd_customform-display .form-container .sd_form-group input {
  padding: 0.6rem 1rem !important;
}
@media screen and (max-width: 575px) {
  .sd_form#module-sd_customform-display .form-container .sd_form-group input {
    padding: 10px 20px !important;
  }
}

#cms .common-column-width .elementor-text-editor .beautiful-heading {
  width: 90%;
  padding-top: 15px !important;
  text-align: left !important;
  margin-bottom: 20px;
  line-height: 40px;
}

#category .category-additional-description {
  margin-bottom: 35px !important;
}

#contact .sd_form#module-sd_customform-display .form-container .sd_captcha-form label {
  line-height: 18px !important;
}

.sd_form#module-sd_customform-display .form-container .form-header h2 {
  padding-top: 30px;
}

.sd_form#module-sd_customform-display .form-container .form-header p {
  padding-bottom: 15px;
}

#lgcookieslaw_banner {
  max-width: 505px !important;
}

#ps-checkout-express-button {
  border: 1px dashed #cbcbcb;
  padding: 15px 15px;
  text-align: center;
  position: relative;
  margin-top: 20px !important;
  margin-bottom: 15px !important;
}

.cart-detailed-actions #ps-checkout-express-button {
  margin-bottom: 0px !important;
}

#ps-checkout-express-button:before {
  content: "Express Checkout";
  position: absolute;
  z-index: 1;
  top: -15px;
  left: calc(50% - 73px);
  background: #fff;
  padding: 5px 20px;
  font-size: 13px;
}

#checkout-personal-information-step .my-1 {
  display: none !important;
}

.cart-detailed-actions #ps-checkout-express-button .paypal-buttons {
  max-width: 750px;
}

#ps_checkout-payment-method-logo-block-container {
  display: none !important;
}

#my-account .lgcookieslaw-account-button img {
  width: 20px;
}

.all-category-section {
  position: relative;
  margin-bottom: 50px;
}
.all-category-section .row {
  margin: 0;
}
@media screen and (max-width: 575px) {
  .all-category-section .row {
    gap: 20px;
  }
}
.all-category-section .col-md-6 {
  padding: 0;
}
.all-category-section .all-category-banner img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .all-category-section .all-category-banner img {
    height: 300px;
  }
}
.all-category-section .all-category-content {
  position: absolute;
  top: 50%;
  color: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  transform: translateY(-50%);
}
.all-category-section .all-category-content h2 {
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .all-category-section .all-category-content h2 {
    font-size: 30px;
  }
}
.all-category-section .all-category-content p {
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  line-height: 27px;
}
@media screen and (max-width: 768px) {
  .all-category-section .all-category-content p {
    font-size: 18px !important;
    line-height: 150% !important;
  }
}
.all-category-section .all-category-content .category-icon {
  margin-bottom: 25px;
}
.all-category-section .all-category-content .category-icon img {
  width: 75px;
}

.best-seller-cube-collection-block .elementor-widget-wrap {
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  .best-seller-cube-collection-block .elementor-text-editor.rte-content p {
    font-size: 18px !important;
    line-height: 150% !important;
  }
}
.best-seller-cube-collection-block .cube-collection-best-seller {
  overflow: hidden;
}
.best-seller-cube-collection-block .cube-collection-best-seller.feature-product {
  padding: 15px 0 5rem 0 !important;
}
@media (max-width: 768px) {
  .best-seller-cube-collection-block .cube-collection-best-seller.feature-product {
    padding: 15px 0 3rem 0;
  }
}
.best-seller-cube-collection-block .cube-collection-best-seller.feature-product .products .thumbnail-container {
  background: #ffffff;
}
.best-seller-cube-collection-block .cube-collection-best-seller .swiper-button-prev {
  left: 42%;
  right: auto;
  top: unset;
  bottom: 0;
}
.best-seller-cube-collection-block .cube-collection-best-seller .swiper-button-prev:after {
  font-size: 25px !important;
}
.best-seller-cube-collection-block .cube-collection-best-seller .swiper-button-next {
  right: 42%;
  top: unset;
  left: auto;
  bottom: 0;
}
.best-seller-cube-collection-block .cube-collection-best-seller .swiper-button-next:after {
  font-size: 25px !important;
}
.best-seller-cube-collection-block .cube-collection-best-seller .swiper-pagination-bullets .swiper-pagination-bullet, .best-seller-cube-collection-block .cube-collection-best-seller .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 2px 8px;
  width: 10px;
  height: 10px;
}
.best-seller-cube-collection-block .cube-collection-best-seller .swiper-pagination-bullet-active {
  background: #606C6A;
}
.best-seller-cube-collection-block .cube-collection-best-seller .swiper-slide {
  padding: 0 15px;
}

.contact-banner-section {
  margin: 50px 0 50px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
@media screen and (max-width: 540px) {
  .contact-banner-section {
    height: 450px;
    background-size: unset;
    background-position: unset;
  }
  .contact-banner-section .elementor-image-box-description {
    line-height: 22px;
  }
}
.contact-banner-section:before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.5607843137);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-banner-section img {
  padding-top: 70px;
}
.contact-banner-section h3 {
  font-size: 40px;
  line-height: 38px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .contact-banner-section h3 {
    font-size: 31px;
  }
}
.contact-banner-section .elementor-image-box-description {
  font-size: 16px;
  line-height: 12px;
  color: #FFF;
  padding: 30px;
}
.contact-banner-section p a {
  color: #F4896C;
  text-decoration: underline;
}
.contact-banner-section p a:hover {
  color: #606C6A;
}
.contact-banner-section .get-touch {
  padding: 30px 0 3.6rem;
}
.contact-banner-section .get-touch a {
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 7px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .best-seller-cube-collection-block .cube-collection-best-seller .swiper-slide {
    padding: 0 5px;
  }
  .cube-collection-best-seller.feature-product {
    padding: 18px 0 4rem 0 !important;
  }
  .cube-collection-best-seller.feature-product .swiper-button-prev {
    left: 35%;
    right: auto;
    top: unset;
    bottom: 0;
  }
  .cube-collection-best-seller.feature-product .swiper-button-next {
    right: 35%;
    left: auto;
    top: unset;
    bottom: 0;
  }
}
@media screen and (max-width: 540px) {
  .cube-collection-best-seller.feature-product .swiper-button-next {
    right: 30%;
    left: auto;
    top: unset;
    bottom: 0;
  }
  .cube-collection-best-seller.feature-product .swiper-button-prev {
    left: 30%;
    right: auto;
    top: unset;
    bottom: 0;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .cube-collection-best-seller.feature-product {
    padding: 0 0 4rem 0 !important;
  }
  .cube-collection-best-seller.feature-product .swiper-horizontal > .swiper-pagination-bullets, .cube-collection-best-seller.feature-product .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 7px;
  }
}
.products .product-miniature .thumbnail-container {
  background: #ebe9ea;
  border: unset;
  border-radius: unset;
}
.products .product-miniature .thumbnail-container:hover {
  background: #f8f8f8;
}
.products .product-miniature:hover .thumbnail-container {
  background: #f8f8f8;
}
.products .product-miniature:hover .product-title a {
  color: #606C6A !important;
}
.products .swiper-slide {
  height: auto;
}
.products .swiper-slide .js-product-miniature-wrapper {
  height: 100%;
}
.products .swiper-slide .js-product-miniature-wrapper .product-miniature {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.products .swiper-slide .js-product-miniature-wrapper .product-miniature .thumbnail-container {
  background: #ebe9ea;
  border: unset;
  border-radius: unset;
}
.products .swiper-slide .js-product-miniature-wrapper .product-miniature .thumbnail-container:hover {
  background: #f8f8f8;
}
.products .swiper-slide .js-product-miniature-wrapper .product-miniature:hover .thumbnail-container {
  background: #f8f8f8;
}
.products .swiper-slide .js-product-miniature-wrapper .product-miniature:hover .product-title a {
  color: #606C6A !important;
}
.products .product-flag-extra .product-flag span {
  border-radius: unset;
  font-size: 13px;
  padding: 1px;
}

.more-color-available {
  display: none;
}

@media screen and (max-width: 768px) {
  .product-add-to-cart.pt-3.js-product-add-to-cart {
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0px -4px 30px 0px rgba(0, 0, 0, 0.09);
    background: #fff;
    left: 0;
    z-index: 9;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.lgcookieslaw-banner .lgcookieslaw-banner-container .lgcookieslaw-button-container .lgcookieslaw-button {
  font-size: 14px;
}

.reviewsio-floating-widget {
  right: 50px !important;
  border-radius: 10px !important;
}
.reviewsio-floating-widget .widget-close {
  background: #383838 !important;
  position: absolute;
  top: -29px;
  right: -15px;
  border-radius: 50%;
  width: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 24px;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
}
.reviewsio-floating-widget .widget-close .fa-close:before {
  display: block;
  content: "";
  background-image: url("../../assets/img/codex_cross.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 24px; /* Adjust based on the image size */
  height: 24px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
}
.reviewsio-floating-widget .floating-outer {
  -ms-grid-column-align: center;
      justify-items: center;
}
.reviewsio-floating-widget .floating-outer .total-reviews {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.449px; /* 241.918% */
}

#module-semailsubscription-subscription #wrapper .container #content-wrapper .page-content {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .sample-order-form .sample-order .fabric-sample-form-block .sample-fabrics {
    -ms-flex-line-pack: center;
        align-content: center;
    border-radius: 0;
    background: #F5F5F5;
  }
}
#order-confirmation .order-confirmation-page .order-conf-header .header-content .page-title {
  font-family: "Geologica";
}
#order-confirmation .order-confirmation-page .order-conf-header .header-content .order-ref {
  font-family: "Geologica";
}
#order-confirmation .order-confirmation-page .order-conf-header .header-content .top-desc p {
  font-family: "Geologica";
}
#order-confirmation .order-confirmation-page .order-conf-content .order-conf-sub-header h2 {
  font-family: "Geologica";
}
#order-confirmation .order-confirmation-page .order-conf-content .product-details .product-desc .product-name {
  font-family: "Geologica";
}
#order-confirmation .order-confirmation-page .order-conf-content .product-details .product-desc p {
  font-family: "Geologica";
}
#order-confirmation .order-confirmation-page .order-conf-content .product-details .price-block span {
  font-family: "Geologica";
}
#order-confirmation .order-confirmation-page .order-conf-content .order-shipping-details p {
  font-family: "Geologica";
}
#order-confirmation .order-confirmation-page .order-conf-content .order-shipping-details span {
  font-family: "Geologica";
}

.swiper-button {
  margin: 0;
}
.swiper-button .swiper-button-prev.swiper-button-disabled, .swiper-button .swiper-button-next.swiper-button-disabled {
  opacity: 0.7;
}

.lgcookieslaw-button-container .btn {
  border-radius: unset;
}

@media only screen and (max-width: 767px) {
  #lgcookieslaw_banner {
    padding: 15px 0 !important;
  }
  #lgcookieslaw_banner .lgcookieslaw-modal-body {
    padding: 0 16px 0 !important;
  }
  #lgcookieslaw_banner .lgcookieslaw-button-container {
    padding: 0 15px 15px !important;
  }
  #lgcookieslaw_banner .lgcookieslaw-banner-message {
    padding: 10px 15px 0;
  }
  #lgcookieslaw_banner .lgcookieslaw-modal {
    margin-bottom: 0 !important;
  }
}
#category #sd-uspblock, #product #sd-uspblock {
  background: #F5F5F5;
}
#category #sd-uspblock ul, #product #sd-uspblock ul {
  -ms-flex-pack: center;
      justify-content: center;
  column-gap: 140px;
  padding: 7px;
}
@media screen and (max-width: 992px) {
  #category #sd-uspblock ul, #product #sd-uspblock ul {
    column-gap: 50px;
  }
}
#category #sd-uspblock li, #product #sd-uspblock li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  column-gap: 18px;
}
@media screen and (max-width: 768px) {
  #category #sd-uspblock li, #product #sd-uspblock li {
    column-gap: 10px;
  }
}
#category #sd-uspblock li img, #product #sd-uspblock li img {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #category #sd-uspblock li img, #product #sd-uspblock li img {
    height: 25px;
    width: 25px;
  }
}
@media screen and (max-width: 768px) {
  #category #sd-uspblock li:nth-child(3) img, #product #sd-uspblock li:nth-child(3) img {
    width: 250px;
  }
}
#category #sd-uspblock li .text span, #product #sd-uspblock li .text span {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 400;
  line-height: 40.404px;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  #category #sd-uspblock li .text span, #product #sd-uspblock li .text span {
    font-size: calc(12px + 0.390625vw);
  }
}

#module-sd_sampleproduct-sampleproduct #main-page-content {
  overflow: unset;
}
#module-sd_sampleproduct-sampleproduct #wrapper {
  overflow: unset;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-header {
  display: none;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner {
  background: #F8F6F4;
  margin-left: calc(50% - 50vw + var(--scrollbar-width) / 2);
  margin-right: calc(50% - 50vw + var(--scrollbar-width) / 2);
  padding: 55px;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner {
    padding: 0;
  }
}
@media screen and (min-width: 1025px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .container {
    width: 100% !important;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .row .col-md-6 video {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .row .col-md-6 video {
    height: 330px !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .row .col-md-6.fabric-video {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .row {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: end;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content {
    width: 100%;
    text-align: center;
    margin: auto;
    padding: 30px 0 37px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content h2 {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 56.2px;
  margin-bottom: 25px;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content h2 span {
  font-style: italic;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content h2 {
    font-size: calc(25px + 0.390625vw);
    line-height: 31.2px;
    margin-bottom: 10px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content .sample-desc {
  max-width: 75%;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content .sample-desc {
    margin: auto;
    text-align: center;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content .sample-desc .data {
    overflow: hidden;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content .sample-desc .read-more-button {
  color: #383838;
  font-size: 13px;
  font-style: normal;
  font-weight: 250;
  line-height: 19.5px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content .sample-desc p {
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 250;
  line-height: 26.5px;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content .sample-desc p span {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .sample-banner-content .sample-desc p {
    font-size: calc(12px + 0.390625vw);
    line-height: 150%;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .footstool-logo {
  display: none;
}
@media screen and (min-width: 992px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-main-banner .footstool-logo {
    position: absolute;
    top: 0;
    right: 30px;
    display: block;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block {
    margin-top: 0;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .hyper-attributes .group-select .group-heading {
  font-family: "mixta-pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .hyper-attributes .group-select .group-heading {
    font-size: calc(17px + 0.390625vw);
    line-height: 32px;
    margin-bottom: 0;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .page-product-box .fabric-group .attribute-subgroup-items::-webkit-scrollbar {
  width: 4px;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .page-product-box .fabric-group .attribute-subgroup-items::-webkit-scrollbar-thumb {
  background: #909090;
  border-radius: 4px;
  width: 5px;
  margin-left: 15px;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .page-product-box .fabric-group .attribute-subgroup-items .subgroup-item .selected-fabric .img_outer:before {
  content: "";
  display: block;
  background-image: url("./../../assets/img/select-fabric-white.svg");
  height: 42px;
  width: 42px;
  position: absolute;
  background-repeat: no-repeat;
  top: 31%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric {
  background: #fff;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  padding: 10px;
  border-radius: 8px;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric {
    width: 100%;
    padding: 7px;
    border-radius: 5px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric .fabric-image {
  border-radius: 5px;
  border: 2px dashed #D0D0D0;
  background: #F5F5F5;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric .fabric-image {
    aspect-ratio: 1/1;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric .fabric-remove {
  display: none;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric .fabric-details {
  display: none;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric.selected-fabric .fabric-remove {
  display: block;
  margin-left: auto;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric.selected-fabric .fabric-remove {
    margin-right: 10px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric.selected-fabric .fabric-remove a {
  color: #383838;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.104px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric.selected-fabric .fabric-remove a {
    font-size: 12px;
    line-height: 13.024px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric.selected-fabric .fabric-details {
  display: -ms-flexbox;
  display: flex;
  margin-left: 25px;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric.selected-fabric .hyper-attribute-label, #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric.selected-fabric .fabric-category-name {
  color: #383838;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22.8px;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric.selected-fabric .hyper-attribute-label, #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric.selected-fabric .fabric-category-name {
    font-size: 12px;
    line-height: 15.544px;
    text-align: left;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .sample-fabrics .sample-fabric.selected-fabric .fabric-category-name {
  color: #868686;
  font-weight: 500;
  text-align: left;
  padding: 0;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .fabricarea {
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .fabricarea {
    position: fixed;
    bottom: 0;
    padding-right: 0;
    z-index: 999;
    display: none;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .fabric-selected-actual-count {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .fabric-selected-actual-count {
    font-size: calc(17px + 0.390625vw);
    line-height: 32px;
  }
}
@media screen and (max-width: 992px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .fabric-selected-actual-count {
    display: none;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .fabric-selected-actual-count-mobile {
  display: none;
}
@media screen and (max-width: 992px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .fabric-selected-actual-count-mobile {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 10px 0 17px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .fabric-selected-actual-count-mobile .fabric-selected-actual-count-label-mobile {
  font-family: "mixta-pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .d-block {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column;
        flex-direction: column;
    height: 200px;
    overflow-y: scroll;
    padding-right: 7px;
  }
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .d-block::-webkit-scrollbar {
    width: 4px;
  }
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .d-block::-webkit-scrollbar-thumb {
    background: #909090;
    border-radius: 4px;
    width: 5px;
    margin-left: 15px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .post-sample-block {
  padding: 10px 25px 40px;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .post-sample-block {
    padding: 0;
    margin: 0;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .post-sample-block .only-desktop {
  width: 100%;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .post-sample-block .only-desktop .submitAddToCart {
  width: 100%;
  color: #fff;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px;
  background: #129750;
  padding: 19px;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .only-mobile {
  background: #F5F5F5;
  box-shadow: 0px 4px 24px 10px rgba(0, 0, 0, 0.14);
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .main-fabric-block .only-mobile .submitAddToCart {
  padding: 15px;
  background: #129750;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px;
  width: -webkit-fill-available;
  margin: 10px 15px;
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric {
  margin: 90px 0;
  background: #383838;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric {
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-content {
  margin-left: 55px;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-content {
    margin-left: 0;
    padding: 30px 15px 0px;
    text-align: center;
    margin-bottom: 25px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-content h2 {
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-content h2 {
    font-size: 26px;
    line-height: 32.2px;
    width: 56%;
    margin: auto;
    margin-bottom: 10px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-content p {
  font-size: 18px;
  font-style: normal;
  font-weight: 250;
  line-height: 26.5px;
  width: 67%;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-content p {
    width: 100%;
    text-align: center;
    font-size: 13px;
    line-height: 18.5px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-button {
  margin-left: auto;
  margin-right: 75px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-button {
    margin-left: 0;
    margin-right: 0;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-button a {
  color: #383838;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px;
  background: #fff;
  padding: 22px 76px;
  border: 1px transparent;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-button a {
    padding: 15px 125px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-button a:hover {
  color: #fff;
  background: #383838;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-image {
  -ms-flex: 0 0 fit-content;
      flex: 0 0 fit-content;
  height: auto;
}
@media screen and (min-width: 992px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-image img {
    aspect-ratio: 350/210;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 350px;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-image img {
    width: 100%;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-label-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-label-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 999;
    background: #606C6A;
    width: 100%;
    margin-left: -15px;
    text-align: center;
    padding: 18px;
  }
}
#module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .sample-fabric-label-mobile .sample-fabric-label {
  color: #fff;
  font-family: "mixta-pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px; /* 177.778% */
  text-decoration: underline;
  margin-bottom: 0;
}

#product-swatch-modal {
  cursor: pointer;
  background: rgba(30, 30, 30, 0.5019607843);
}
#product-swatch-modal .modal-fabric-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (min-width: 991px) {
  #product-swatch-modal .modal-fabric-list {
    max-width: 550px;
    margin: auto;
  }
}
#product-swatch-modal .modal-fabric-list .fabric-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 80px;
  gap: 10px;
  position: relative;
}
#product-swatch-modal .modal-fabric-list .fabric-item.active:before {
  content: "";
  display: block;
  background-image: url("./../../assets/img/select-fabric-white.svg");
  height: 30px;
  width: 30px;
  position: absolute;
  background-repeat: no-repeat;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: 100%;
}
#product-swatch-modal .modal-fabric-list .fabric-item .color {
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
}
#product-swatch-modal .modal-fabric-list .fabric-item .fabric-name {
  font-size: 11px;
  line-height: normal;
  cursor: pointer;
}
#product-swatch-modal .modal-header {
  padding: 0;
  border-bottom: none;
}
#product-swatch-modal .modal-header button {
  width: 40px;
  height: 40px;
  border: 2px solid #464646;
  letter-spacing: 0;
  z-index: 1;
  border-radius: 50%;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 0;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 33px;
  right: 48px;
  opacity: 1;
  background: transparent;
  cursor: pointer;
  padding: 0 !important;
}
@media screen and (min-width: 1600px) {
  #product-swatch-modal .modal-header button {
    width: 46px;
    height: 46px;
  }
}
@media screen and (max-width: 575px) {
  #product-swatch-modal .modal-header button {
    width: 32px;
    height: 32px;
    top: 15px;
    right: 15px;
  }
}
#product-swatch-modal .modal-header button:after {
  content: "";
  background: url(./../../assets/img/close.svg);
  width: 12px;
  height: 12px;
  display: block;
  background-size: 100% 100%;
}
@media screen and (min-width: 1251px) {
  #product-swatch-modal .modal-header button:after {
    width: 15px;
    height: 15px;
  }
}
#product-swatch-modal .modal-header button:hover {
  background: #464646;
}
#product-swatch-modal .modal-header button:hover:after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(11%) hue-rotate(206deg) brightness(104%) contrast(102%);
}
#product-swatch-modal.in {
  pointer-events: unset;
}
#product-swatch-modal .modal-dialog {
  max-width: 720px;
  height: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (max-width: 575px) {
  #product-swatch-modal .modal-dialog {
    max-width: 100%;
    width: 100%;
  }
}
#product-swatch-modal .modal-content {
  border-radius: 0;
  border: none;
  text-align: center;
  max-height: 770px;
  overflow-y: auto;
}
#product-swatch-modal .modal-body {
  cursor: default;
  padding: 65px 30px 0;
}
@media screen and (max-width: 575px) {
  #product-swatch-modal .modal-body {
    padding: 0;
  }
}
@media screen and (max-width: 575px) {
  #product-swatch-modal .modal-body .product-preview {
    padding: 77px 16px 0;
  }
}
#product-swatch-modal .modal-body .main-product-img {
  aspect-ratio: 410/200;
  width: 100%;
  max-width: 410px;
  margin: 0 auto 25px;
  display: block;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 575px) {
  #product-swatch-modal .modal-body .main-product-img {
    max-width: 85%;
  }
}
#product-swatch-modal .modal-body .current-swatch-info {
  margin-bottom: 35px;
}
@media screen and (max-width: 991px) {
  #product-swatch-modal .modal-body .current-swatch-info {
    margin-bottom: 22px;
  }
}
#product-swatch-modal .modal-body .current-swatch-info .title {
  font-family: "mixta-pro";
  margin-bottom: 5px;
  font-size: 25px;
  line-height: 125%;
}
@media screen and (max-width: 768px) {
  #product-swatch-modal .modal-body .current-swatch-info .title {
    font-size: calc(16.5px + 0.390625vw);
  }
}
#product-swatch-modal .modal-body .current-swatch-info .range-text {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  column-gap: 6px;
  line-height: normal;
  -ms-flex-pack: center;
      justify-content: center;
}
@media screen and (max-width: 768px) {
  #product-swatch-modal .modal-body .current-swatch-info .range-text {
    font-size: calc(11.5px + 0.390625vw);
  }
}
#product-swatch-modal .modal-body .current-swatch-info .range-text .description-toogle-btn:before {
  display: block;
  content: "";
  background: url("../svg/info.svg") no-repeat center;
  background-size: 100% 100%;
  width: 19px;
  height: 25px;
  cursor: pointer;
}
#product-swatch-modal .modal-body .current-swatch-info .fabric-group-desc {
  margin-bottom: 20px;
  margin-top: 10px;
}
#product-swatch-modal .modal-body .current-swatch-info .fabric-group-desc p {
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #product-swatch-modal .modal-body .current-swatch-info .fabric-group-desc p {
    font-size: 13px;
  }
}
#product-swatch-modal .modal-body .current-swatch-info .fabric-group-desc p:not(:last-child) {
  margin-bottom: 10px;
}
#product-swatch-modal .modal-body .sample-fabrics-container {
  background: #f3f3f3;
  width: 100%;
  max-width: 464px;
  margin: 25px auto 10px;
  padding: 25px 30px 35px;
}
@media screen and (max-width: 575px) {
  #product-swatch-modal .modal-body .sample-fabrics-container {
    padding: 20px 17px 25px;
  }
}
#product-swatch-modal .modal-body .sample-fabrics-container .swatch-header {
  margin-bottom: 18px;
  font-size: 23px;
  line-height: normal;
  text-align: left;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  #product-swatch-modal .modal-body .sample-fabrics-container .swatch-header {
    font-size: calc(16.5px + 0.390625vw);
  }
}
#product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item {
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 10px;
  padding-right: 27px;
}
@media screen and (max-width: 991px) {
  #product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item {
    padding-right: 2px;
  }
}
#product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .image-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 28px;
}
@media screen and (max-width: 991px) {
  #product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .image-title {
    gap: 18px;
  }
}
#product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .swatch-thumb {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
#product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .swatch-details {
  -ms-flex-positive: 1;
      flex-grow: 1;
  text-align: left;
}
#product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .swatch-details .swatch-name {
  display: block;
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  #product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .swatch-details .swatch-name {
    font-size: calc(11.5px + 0.390625vw);
  }
}
#product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .swatch-details .swatch-subtext {
  letter-spacing: normal;
  font-size: 13px;
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  #product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .swatch-details .swatch-subtext {
    font-size: calc(11.5px + 0.390625vw);
    line-height: normal;
  }
}
#product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .btn-remove-product-swatch {
  background: none;
  border: none;
  text-decoration: underline;
  font-size: 11px;
  letter-spacing: 1px;
  color: #333;
  cursor: pointer;
  text-transform: uppercase;
}
#product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .btn-remove-product-swatch:hover {
  color: #000;
}
@media screen and (max-width: 768px) {
  #product-swatch-modal .modal-body .sample-fabrics-container #swatch-list .selected-swatch-item .btn-remove-product-swatch {
    letter-spacing: 1.2px;
    font-size: calc(10.5px + 0.390625vw);
    padding-right: 10px;
  }
}
#product-swatch-modal .modal-body .sample-fabrics-container .remaining-swatches-info {
  background: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 28px;
}
#product-swatch-modal .modal-body .sample-fabrics-container .remaining-swatches-info .remaining-number {
  aspect-ratio: 1;
  background: #f8f8f8;
  border: 1px dashed #b1b1b1;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  max-width: 60px;
  font-size: 15px;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
}
#product-swatch-modal .modal-body .sample-fabrics-container .remaining-swatches-info .remaining-text {
  font-size: 13px;
  font-weight: 500;
  color: #464646;
}
#product-swatch-modal .modal-body .modal-footer-actions {
  text-align: center;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 25px;
  position: sticky;
  bottom: 0;
  box-shadow: 0 -4px 6px -5px rgba(0, 0, 0, 0.1019607843);
  width: 100%;
}
@media screen and (max-width: 575px) {
  #product-swatch-modal .modal-body .modal-footer-actions {
    padding: 20px 15px 25px;
  }
}
#product-swatch-modal .modal-body .modal-footer-actions .btn-order-product-samples {
  background-color: #464646;
  color: #fff;
  width: 100%;
  border: none;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  padding: 16px 42px;
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  #product-swatch-modal .modal-body .modal-footer-actions .btn-order-product-samples {
    padding: 15px;
    font-size: 14px;
  }
}
#product-swatch-modal .modal-body .modal-footer-actions .btn-order-product-samples:hover {
  background-color: #464646;
}
#product-swatch-modal .modal-body .modal-footer-actions .view-all-link {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-top: 22px;
  font-weight: 700;
  text-decoration: underline;
  color: #464646;
  display: block;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  font-size: 15px;
}
@media screen and (max-width: 991px) {
  #product-swatch-modal .modal-body .modal-footer-actions .view-all-link {
    font-size: calc(11.5px + 0.390625vw);
  }
}
#product-swatch-modal .modal-body .modal-footer-actions .view-all-link:focus {
  outline: none;
}
#product-swatch-modal .modal-body .modal-footer-actions .view-all-link:hover {
  color: #464646;
}

#contact #module-sd_customform-display .form-container .sd_form-group.custom-form {
  max-width: 100%;
  padding: 0;
}

.product-feedback-outer-block {
  background: #383838;
  padding-top: 112px;
  padding-bottom: 121px;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 991px) and (min-width: 769px) {
  .product-feedback-outer-block {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 768px) and (min-width: 577px) {
  .product-feedback-outer-block {
    padding-top: 30px;
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 576px) {
  .product-feedback-outer-block {
    padding-top: 24px;
    padding-bottom: 31px;
  }
}
.product-feedback-outer-block > .container {
  max-width: 100%;
  width: 100% !important;
}
.product-feedback-outer-block h2 {
  color: #fff !important;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .product-feedback-outer-block h2 {
    max-width: 275px;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .product-feedback-outer-block h2 {
    margin-bottom: 18px;
  }
}
.product-feedback-outer-block .desc {
  margin-bottom: 38px;
}
@media screen and (max-width: 991px) and (min-width: 769px) {
  .product-feedback-outer-block .desc {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 768px) and (min-width: 577px) {
  .product-feedback-outer-block .desc {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 576px) {
  .product-feedback-outer-block .desc {
    margin-bottom: 15px;
  }
}
.product-feedback-outer-block .desc p {
  color: #fff !important;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .product-feedback-outer-block .desc p {
    max-width: 455px;
    margin: auto;
  }
}
@media screen and (max-width: 576px) {
  .product-feedback-outer-block .desc p {
    font-size: calc(9px + 0.390625vw) !important;
    max-width: 320px;
  }
}
.product-feedback-outer-block .desc p:last-child {
  margin-bottom: 0;
}
.product-feedback-outer-block .feedback-image-upload-block {
  text-align: left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  background: #383838;
}
@media screen and (min-width: 1428px) {
  .product-feedback-outer-block .feedback-image-upload-block {
    padding-left: calc((100% - 1428px) / 2 + 15px);
  }
}
@media screen and (max-width: 1620px) {
  .product-feedback-outer-block .feedback-image-upload-block {
    -ms-flex: 0 0 27%;
        flex: 0 0 27%;
  }
}
@media screen and (max-width: 991px) {
  .product-feedback-outer-block .feedback-image-upload-block {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}
.product-feedback-outer-block .feedback-image-upload-block:has(+ .swiper-container) {
  margin-bottom: 68px;
}
@media screen and (max-width: 991px) and (min-width: 769px) {
  .product-feedback-outer-block .feedback-image-upload-block:has(+ .swiper-container) {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 768px) and (min-width: 577px) {
  .product-feedback-outer-block .feedback-image-upload-block:has(+ .swiper-container) {
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 576px) {
  .product-feedback-outer-block .feedback-image-upload-block:has(+ .swiper-container) {
    margin-bottom: 25px;
  }
}
.product-feedback-outer-block .feedback-image-upload-block .btn {
  border-radius: 47px;
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .product-feedback-outer-block .feedback-image-upload-block .btn {
    display: block;
    margin: 0 auto 48px;
    max-width: 247px;
  }
}
@media screen and (max-width: 768px) {
  .product-feedback-outer-block .feedback-image-upload-block .btn {
    max-width: 180px;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 1621px) {
  .product-feedback-outer-block .col-md-8 {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1620px) {
  .product-feedback-outer-block .col-md-8 {
    -ms-flex: 0 0 73%;
        flex: 0 0 73%;
    max-width: 73%;
  }
}
@media screen and (max-width: 991px) {
  .product-feedback-outer-block .col-md-8 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}
.product-feedback-outer-block .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.1228/1;
  border-radius: 8px;
}
@media screen and (min-width: 992px) {
  .product-feedback-outer-block .swiper-wrapper .swiper-slide img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 991px) {
  .product-feedback-outer-block .swiper-wrapper .swiper-slide img {
    aspect-ratio: 1.4227/1;
  }
}
@media screen and (max-width: 991px) and (min-width: 769px) {
  .product-feedback-outer-block .swiper-wrapper .swiper-slide img {
    border-radius: 15px;
  }
}
.product-feedback-outer-block .swiper-buttons {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .product-feedback-outer-block .swiper-buttons {
    margin-top: 29px;
  }
}
.product-feedback-outer-block .swiper-buttons .swiper-scrollbar {
  background: #786FB0;
}
.product-feedback-outer-block .swiper-buttons .swiper-scrollbar .swiper-scrollbar-drag {
  background: #fff;
}
.product-feedback-outer-block .swiper-buttons .swiper-button-prev:after, .product-feedback-outer-block .swiper-buttons .swiper-button-next:after {
  color: #fff;
}
.product-feedback-outer-block.light-theme {
  background: #F9F6F4;
}
.product-feedback-outer-block.light-theme .feedback-image-upload-block {
  background: #F9F6F4;
}
.product-feedback-outer-block.light-theme h2 {
  color: #383838 !important;
}
.product-feedback-outer-block.light-theme .desc p {
  color: #383838 !important;
}
.product-feedback-outer-block.light-theme .swiper-buttons .swiper-scrollbar {
  background: rgba(135, 142, 169, 0.4);
}
.product-feedback-outer-block.light-theme .swiper-buttons .swiper-scrollbar .swiper-scrollbar-drag {
  background: #383838;
}
.product-feedback-outer-block.light-theme .swiper-buttons .swiper-button-prev:after, .product-feedback-outer-block.light-theme .swiper-buttons .swiper-button-next:after {
  color: #383838;
}

#feedback_form.modal .submit-row {
  -ms-flex-pack: center;
      justify-content: center;
}
#feedback_form.modal .modal-header .modal-title {
  font-family: "mixta-pro";
  -ms-flex: 1;
      flex: 1;
  text-align: center;
}
#feedback_form.modal .orderfeedbacks .form-margin {
  margin: 0;
}

#wrapper {
  overflow: hidden;
}

#main-page-content {
  overflow: hidden;
}

.page-home .homeblocks {
  clear: both;
}
.page-home #sdImageSlider {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.page-home #sdImageSlider.layout2 .sdimageslider-container {
  float: unset;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide {
    max-height: 620px;
  }
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div {
  left: 0;
  top: 0;
  transform: unset;
  height: 100% !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background: rgba(0, 0, 0, 0.28);
  width: 100%;
  pointer-events: none;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div {
    -ms-flex-pack: end;
        justify-content: end;
    text-align: center;
  }
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div h1 {
  text-align: center;
  font-family: "mixta-pro";
  font-size: 59px;
  font-style: normal;
  font-weight: 800;
  line-height: 71px;
  margin-bottom: 0;
  color: #fff;
}
@media screen and (min-width: 992px) and (max-width: 1650px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div h1 {
    font-size: 42px;
    line-height: normal;
  }
}
@media screen and (max-width: 992px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div h1 {
    font-size: 34px;
    line-height: normal; /* 109.302% */
    letter-spacing: -0.86px;
  }
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div h1 {
    width: 285px;
    margin: auto;
  }
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .banner-desc {
  font-family: "Geologica";
  font-size: 43px;
  font-style: normal;
  font-weight: 250;
  line-height: 61px;
  color: #fff;
}
@media screen and (min-width: 992px) and (max-width: 1650px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .banner-desc {
    font-size: 30px;
    line-height: normal;
  }
}
@media screen and (max-width: 992px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .banner-desc {
    font-size: 21px;
    font-weight: 300;
    line-height: normal;
  }
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .banner-desc p {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .slide-cta {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 40px;
  }
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .btn-primary {
  background: #fff;
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px;
  padding: 23px 50px;
  border: 1px solid transparent;
  margin-top: 35px;
}
@media screen and (min-width: 992px) and (max-width: 1650px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .btn-primary {
    padding: 15px 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .btn-primary {
    padding: 10px 40px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .btn-primary {
    font-size: 15px;
    padding: 15px 40px;
    width: 100%;
    margin-top: 15px;
  }
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .btn-primary:hover {
  background: #383838;
  color: #fff;
  border: 1px solid #fff;
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .footstool-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  margin-right: 93px;
  position: absolute;
  top: 11%;
  right: 0;
}
@media screen and (min-width: 992px) and (max-width: 1650px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .footstool-logo {
    max-width: 9%;
    top: -10px;
    margin-right: 4%;
  }
}
@media screen and (min-width: 767px) and (max-width: 992px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .footstool-logo {
    right: 25px;
    max-width: 10%;
    top: -20px;
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1650px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .footstool-logo img {
    max-width: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (min-width: 767px) and (max-width: 992px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .footstool-logo img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .footstool-logo {
    margin-right: 0;
    top: 5%;
    right: 5%;
  }
  .page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .footstool-logo img {
    height: 115px;
    width: 115px;
  }
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .sdimageslider_nav {
  filter: unset;
  border-radius: unset;
  width: 35px;
  height: 60px;
  cursor: pointer;
  background: url("../../assets/img/slider-icon.gif") !important;
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .sdimageslider_nav.next {
  left: auto;
  background-position: right top !important;
  right: 5px;
}
@media (max-width: 768px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .sdimageslider_nav.next {
    right: -3px;
  }
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .sdimageslider_nav.prev {
  left: 5px;
}
@media (max-width: 768px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .sdimageslider_nav.prev {
    left: -3px;
  }
}
@media screen and (max-width: 991px) {
  .page-home #sdImageSlider.layout2 .sdimageslider-container .sdimageslider_nav {
    opacity: 0.7 !important;
  }
}
.page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-pagination {
  display: none;
}
@media screen and (max-width: 1500px) {
  .page-home #sdImageSlider .swiper-wrapper {
    height: 100% !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row {
    min-height: 520px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1400px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row {
    min-height: 620px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content {
  position: relative;
}
@media screen and (max-width: 1500px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content {
    padding-bottom: 20px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content {
    padding: 35px 0;
  }
}
@media screen and (min-width: 992px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content {
    padding-top: 14%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1075px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .section-title {
  display: none;
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc {
  display: contents;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc {
    text-align: left;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc > h2 {
  -ms-flex-order: 0;
      order: 0;
  color: #383838;
  font-family: "mixta-pro";
  font-size: 119px;
  font-weight: 800;
  line-height: 60.68%;
  margin: 0;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc > h2 {
    font-size: 48px;
    margin-right: 150px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc > h2 {
    font-size: 48px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1075px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc > h2 {
    font-size: 58px;
  }
}
@media screen and (min-width: 1076px) and (max-width: 1400px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc > h2 {
    font-size: 68px;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1500px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc > h2 {
    font-size: 109px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .your-spaces {
  -ms-flex-order: 0;
      order: 0;
  margin-right: -95%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .your-spaces {
    margin-right: -40px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .your-spaces h2 {
  font-style: normal;
  color: #fff;
  font-weight: 700;
  letter-spacing: -2.38px;
  -ms-flex-order: 0;
      order: 0;
  font-family: "mixta-pro";
  font-size: 119px;
  line-height: 101.68%;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .your-spaces h2 {
    font-size: 48px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1075px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .your-spaces h2 {
    font-size: 58px;
  }
}
@media screen and (min-width: 1076px) and (max-width: 1400px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .your-spaces h2 {
    font-size: 68px;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1500px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .your-spaces h2 {
    font-size: 109px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc {
  -ms-flex-order: 0;
      order: 0;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc {
    margin-top: 25px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc p {
  color: #fff;
  text-align: center;
  font-family: "Geologica";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 3.126px;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc p {
    font-size: 13px;
    line-height: 26px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc p {
    font-size: 14px;
    line-height: 28px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1400px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc p {
    font-size: 16px;
    line-height: 30px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc p span {
  color: #383838;
  font-size: 49px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 70px;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc p span {
    font-size: 25px;
    line-height: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc p span {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1075px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc p span {
    font-size: 22px;
    line-height: 30px;
  }
}
@media screen and (min-width: 1076px) and (max-width: 1400px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc p span {
    font-size: 30px;
    line-height: 32px;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1500px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-desc p span {
    font-size: 35px;
    line-height: 52px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-offer {
  position: absolute;
  -ms-flex-order: 1;
      order: 1;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-offer {
    bottom: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1499px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-offer {
    bottom: 40px;
  }
}
@media screen and (min-width: 1500px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-offer {
    bottom: 80px;
  }
}
@media screen and (min-width: 1500px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-offer {
    bottom: 80px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-offer p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 250;
  line-height: 44.44px; /* 261.409% */
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .desc .banner-offer p {
    font-size: calc(12px + 0.390625vw);
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .btn-primary {
  margin-top: 53px;
  background: #fff;
  color: #383838;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 132.353% */
  width: 100%;
  max-width: 291px;
  padding: 10px 20px;
  margin-right: auto;
  margin-left: auto;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 68px;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .btn-primary {
    margin-top: 15px;
    height: 48px;
    font-size: 15px;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1075px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .btn-primary {
    height: 58px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-content .content .btn-primary:hover {
  background: #606C6A;
  color: #fff;
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-img:before {
  content: "";
  position: absolute;
  left: 77.5px; /* Align to the left */
  background-image: url("../../assets/img/handcrafted.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 183px; /* Adjust based on the image size */
  height: 183px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
  bottom: 11%;
}
@media screen and (max-width: 768px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-img:before {
    left: 18%;
    transform: translateX(-50%);
    height: 99px;
    width: 99px;
    bottom: 10%;
  }
}
@media screen and (max-width: 768px) and (min-width: 577px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-img:before {
    height: 115px;
    width: 115px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-img:before {
    height: 95px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-img:before {
    height: 105px;
  }
}
.page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 991px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-img img {
    max-height: 400px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1400px) {
  .page-home #sdImageSlider .swiper-wrapper .swiper-slide .slide-row .slider-img img {
    max-height: 450px;
  }
}
.page-home #sdImageSlider .swiper-buttons .sdimageslider_nav, .page-home #sdImageSlider .swiper-buttons .swiper-pagination {
  display: none;
}
.page-home .homeblocks .block-custom-content .category-block .column {
  width: 12%;
}
.page-home .homeblocks .block-custom-content .category-block .column:hover h3 a {
  color: #007B68;
}
.page-home .homeblocks .block-custom-content .category-block .column:hover .hover-img img {
  border-color: #007B68;
}
.page-home .homeblocks .block-custom-content .category-block .row {
  -ms-flex-flow: row;
      flex-flow: row;
  padding-top: 3rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.page-home .homeblocks .block-custom-content .category-block .hover-img img {
  width: 121px;
  height: 121px;
  background: #f2f2f2;
  border-radius: 70px;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border: 3px solid transparent;
}
.page-home .homeblocks .block-custom-content .category-block .heading {
  padding-top: 23.5px;
  text-align: center;
}
.page-home .homeblocks .block-custom-content .category-block .heading a {
  font-size: 17px;
  color: #464646;
  padding: 2px 4px;
  line-height: 21px;
}
.page-home .homeblocks .block-custom-content .category-block .heading a:hover {
  color: #007B68;
}
.page-home .homeblocks .welcome-to-footstools-direct {
  background: #F7F4F0;
}
.page-home .homeblocks .welcome-to-footstools-direct .row .col-md-6:first-child {
  padding-right: 95px;
  padding-left: calc((100% - 1361px) / 2);
}
.page-home .homeblocks .welcome-to-footstools-direct .welcome-footstool-text {
  padding-top: 91.5px;
}
.page-home .homeblocks .welcome-to-footstools-direct .welcome-footstool-text h1 {
  font-size: 34px;
  font-weight: 900;
  line-height: 40px;
  color: #464646;
  padding-bottom: 17px;
}
@media (max-width: 768px) {
  .page-home .homeblocks .welcome-to-footstools-direct .welcome-footstool-text h1 {
    text-align: center;
    font-size: 26px;
    line-height: 30px;
    padding-bottom: 5px;
  }
}
.page-home .homeblocks .welcome-to-footstools-direct .welcome-footstool-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #464646;
}
@media (max-width: 768px) {
  .page-home .homeblocks .welcome-to-footstools-direct .welcome-footstool-text p {
    text-align: center;
  }
}
.page-home .homeblocks .welcome-to-footstools-direct .homeblock-main-image img {
  max-height: 522px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .homeblocks .main-categories-block {
  background: #F2EFEB;
}
@media screen and (min-width: 768px) {
  .page-home .homeblocks .main-categories-block {
    margin-bottom: 68px;
  }
}
.page-home .homeblocks .main-categories-block .container {
  padding-bottom: 116px;
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .main-categories-block .container {
    padding: 35px;
  }
}
@media screen and (max-width: 769px) {
  .page-home .homeblocks .main-categories-block .container {
    padding: 0;
  }
}
.page-home .homeblocks .main-categories-block .container .row {
  margin-left: -10px;
  margin-right: -10px;
}
@media screen and (max-width: 769px) {
  .page-home .homeblocks .main-categories-block .container .row {
    margin-left: -4.5px;
    margin-right: -4.5px;
  }
  .page-home .homeblocks .main-categories-block .container .row .col-sm-6:has(.leather-footsools), .page-home .homeblocks .main-categories-block .container .row .col-sm-6:has(.cube-seating) {
    -ms-flex-order: 1;
        order: 1;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .page-home .homeblocks .main-categories-block .container .row .col-sm-6:has(.tartan-collection), .page-home .homeblocks .main-categories-block .container .row .col-sm-6:has(.round-stools) {
    -ms-flex-order: 3;
        order: 3;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  .page-home .homeblocks .main-categories-block .container .row .col-sm-12:has(.storage-ottomans) {
    -ms-flex-order: 4;
        order: 4;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .page-home .homeblocks .main-categories-block .container .row .col-sm-12:has(.large-footstools) {
    -ms-flex-order: 2;
        order: 2;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
  .page-home .homeblocks .main-categories-block .container .row .col-md-12:has(.homecustomtext) {
    padding: 50px 16px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-12 {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}
@media screen and (min-width: 992px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-12 {
    padding-top: 85px;
    padding-bottom: 74px;
  }
}
@media screen and (max-width: 769px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-12 {
    -ms-grid-column-align: center;
        justify-items: center;
  }
}
@media screen and (max-width: 769px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-12 .homecustomtext {
    max-width: 280px;
  }
}
.page-home .homeblocks .main-categories-block .container .row .col-md-12 .homecustomtext h2 {
  text-align: center;
  color: #606C6A;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
  margin: 0;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-12 .homecustomtext h2 span {
  color: #383838;
}
@media screen and (max-width: 769px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-12 .homecustomtext h2 {
    font-size: calc(23px + 0.390625vw);
    line-height: 28.2px;
  }
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 {
  padding: 4.5px;
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-3 {
    max-width: 26.1%;
    -ms-flex: 0 0 26.1%;
        flex: 0 0 26.1%;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-3 {
    max-width: 26.1%;
    -ms-flex: 0 0 26.1%;
        flex: 0 0 26.1%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner {
  height: 100%;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image {
  height: 100%;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image:hover .main-image img {
  transform: scale(1.05);
  transition: 1s ease-in-out;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image:hover .main-image:before {
  z-index: 9;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image:hover .main-image .image-description h3 a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image .main-image {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image .main-image img {
  transition: transform 1s ease-in-out;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image .main-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  bottom: 0;
  pointer-events: none;
  z-index: 9;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image .main-image .image-description {
  position: absolute;
  top: 80%;
  color: #fff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image .main-image .image-description h3 {
  margin: 0;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image .main-image .image-description h3 a {
  color: #fff;
  font-family: "mixta-pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 39px; /* 130% */
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 769px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image .main-image .image-description h3 a {
    font-size: calc(17px + 0.390625vw);
    line-height: 16.714px; /* 92.857% */
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image .main-image .image-description h3 a {
    font-size: 22px;
    line-height: 24px; /* 92.857% */
  }
}
@media screen and (max-width: 769px) {
  .page-home .homeblocks .main-categories-block .container .row .col-sm-6 {
    width: 50%;
  }
}
.page-home .homeblocks .main-categories-block .container .row .col-md-6 {
  padding: 4.5px;
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-6 {
    max-width: 47.8%;
    -ms-flex: 0 0 47.8%;
        flex: 0 0 47.8%;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-6 {
    max-width: 47.8%;
    -ms-flex: 0 0 47.8%;
        flex: 0 0 47.8%;
    padding-left: 10px;
    padding-bottom: 20px;
    padding-right: 10px;
  }
}
.page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image:hover .main-image img {
  transform: scale(1.05);
  transition: 1s ease-in-out;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image:hover .main-image:before {
  z-index: 9;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image:hover .main-image .image-description h3 a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image .main-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image .main-image img {
  transition: transform 1s ease-in-out;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image .main-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  bottom: 0;
  z-index: 9;
  pointer-events: none;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image .main-image .image-description {
  position: absolute;
  top: 80%;
  color: #ffffff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image .main-image .image-description h3 {
  margin: 0;
}
.page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image .main-image .image-description h3 a {
  color: #fff;
  font-family: "mixta-pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 39px; /* 130% */
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 769px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image .main-image .image-description h3 a {
    font-size: calc(17px + 0.390625vw);
    line-height: 16.714px; /* 92.857% */
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image .main-image .image-description h3 a {
    font-size: 22px;
    line-height: 24px; /* 92.857% */
  }
}
.page-home .homeblocks .main-categories-block .container .homeblock-main-image .main-image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .homeblocks .review-brand-block {
  margin-bottom: 68px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row {
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media screen and (min-width: 992px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 {
    padding: 0;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block {
  background: #F2EFEB;
  height: 100%;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content {
  height: 100%;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company {
  height: 100%;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container {
  height: 100%;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container {
    padding: 0 10%;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .reviewsio-header {
  padding-top: 80px;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .reviewsio-header {
    padding-top: 38px;
    margin-bottom: 34px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .reviewsio-header {
    padding-top: 40px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 769px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .reviewsio-header {
    max-width: 677px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .reviewsio-header h2 {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .reviewsio-header h2 {
    font-size: 23px;
    line-height: 28.2px; /* 117.5% */
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .reviewsio-header h2 {
    font-size: 26px;
    line-height: 30.2px; /* 117.5% */
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list {
    margin-bottom: 10px;
    padding-bottom: 20px;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide {
  width: 100% !important;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-stars, .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-content {
  max-width: 677px;
  margin-left: auto;
  margin-right: auto;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-stars {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 27px;
}
@media screen and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-stars {
    margin-bottom: 12px;
    margin-left: 0;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-stars .user-name {
  margin: 0 15px 0 0;
  font-family: "Geologica";
  font-weight: 500;
  font-style: normal;
  font-size: 19px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-stars .user-name {
    text-align: center;
    font-size: calc(10px + 0.390625vw);
    line-height: 10.086px; /* 100.862% */
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-stars .studio-review-star {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-stars .studio-review-star {
    width: 14px;
    height: 14px;
  }
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-stars .studio-review-star:before {
    width: 14px;
    height: 14px;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-content {
  font-size: 32px;
  line-height: 126.56%;
  font-weight: 400;
  font-family: "mixta-pro";
  font-style: italic;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-content {
    font-size: 18px;
    line-height: 21.2px; /* 117.778% */
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-wrapper .swiper-slide .review-content {
    font-size: 22px;
    line-height: 26.2px; /* 117.5% */
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons {
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons {
    -ms-flex-pack: start;
        justify-content: start;
    margin-top: 30px;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-pagination {
  display: none;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button {
  position: unset;
  background: transparent;
  width: auto;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button:after {
  font-size: 17px;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-prev {
  margin-right: 15px;
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-prev:hover {
  background: #383838;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-prev {
    width: 32px;
    height: 32px;
    padding: 0;
    left: 75%;
  }
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-prev:after {
    font-size: 11px !important;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-prev:hover:after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(263deg) brightness(100%) contrast(103%);
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-prev:after {
  content: "";
  background-image: url("../../assets/img/arrow-right.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 16px; /* Adjust based on the image size */
  height: 16px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
  rotate: 180deg;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-prev:after {
    width: 12px;
    height: 12px;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-next {
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-next:hover {
  background: #383838;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-next {
    width: 32px;
    height: 32px;
    padding: 0;
    left: auto;
  }
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-next:after {
    font-size: 11px !important;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-next:hover:after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(263deg) brightness(100%) contrast(103%);
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-next:after {
  content: "";
  background-image: url("../../assets/img/arrow-right.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 16px; /* Adjust based on the image size */
  height: 16px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .review-block .block-custom-content .reviewsio_company .reviewsio_container .review-list .swiper-buttons .swiper-button-next:after {
    width: 12px;
    height: 12px;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block {
  height: 100%;
  background: #383838;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .heading-text {
  padding-top: 80px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .heading-text {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .heading-text {
    max-width: 223px;
    margin: auto;
    padding-top: 38px;
    margin-bottom: 14px;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .heading-text h2 {
  color: #fff;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .heading-text h2 span {
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .heading-text h2 {
    font-size: 24px;
    line-height: 28.2px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .heading-text h2 {
    font-size: 26px;
    line-height: 30.2px; /* 117.5% */
    padding: 0 15px;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .brand-images {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 55px;
  margin-bottom: 52px;
  column-gap: 30px;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .brand-images {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .brand-images {
    padding: 0 15px;
    column-gap: 15px;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .brand-images {
    padding: 0 35px;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .brand-images .img {
  -ms-flex: 1;
      flex: 1;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .brand-images .img {
    -ms-flex: 0 0 fit-content;
        flex: 0 0 fit-content;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .brand-images .img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-height: 140px;
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .all-brand-btn {
  margin-bottom: 57px;
  -ms-grid-column-align: center;
      justify-items: center;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .all-brand-btn {
    padding: 0 15px;
    margin-bottom: 36px;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .all-brand-btn .btn-align {
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .all-brand-btn .btn-align {
    width: 100%;
    -ms-grid-column-align: center;
        justify-items: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .all-brand-btn .btn-align {
    padding: 0;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .all-brand-btn .btn-align a {
  border: 1px solid #FFF;
  display: block;
  cursor: pointer;
  color: #fff;
  width: 233px;
  margin-bottom: 0;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .all-brand-btn .btn-align a {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .all-brand-btn .btn-align a {
    height: 60px;
  }
}
@media screen and (max-width: 991px) {
  .page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .all-brand-btn .btn-align a {
    height: 48px;
  }
}
.page-home .homeblocks .review-brand-block .row .col-md-6 .brand-block .all-brand-btn .btn-align a:hover {
  background: #fff;
  color: #606C6A;
}
.page-home .homeblocks .top-picks {
  margin-bottom: 68px;
}
.page-home .homeblocks .top-picks .row {
  gap: 24px;
  position: relative;
}
.page-home .homeblocks .top-picks .row .col-md-12:has(.swiper-wrapper) {
  position: unset;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .top-picks .row .col-md-12:has(.swiper-wrapper) {
    padding-right: 0;
  }
}
.page-home .homeblocks .top-picks .row .col-md-12 .homecustomtext h2 {
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  color: #383838;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .top-picks .row .col-md-12 .homecustomtext h2 {
    font-size: 24px;
    line-height: 117%;
  }
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products {
  overflow: hidden;
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-wrapper .swiper-slide .js-product-miniature-wrapper {
  padding: 0;
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-wrapper .swiper-slide .js-product-miniature-wrapper .product-miniature .product-description {
  padding: 14px 0 0 0;
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-wrapper .swiper-slide .js-product-miniature-wrapper .product-miniature .product-description .product-title a {
  color: #383838 !important;
  font-family: "Geologica";
  font-size: 20px;
  font-style: normal;
  font-weight: 250;
  line-height: 24px; /* 120% */
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-wrapper .swiper-slide .js-product-miniature-wrapper .product-miniature .product-description .product-title {
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-wrapper .swiper-slide .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping {
    text-align: left !important;
  }
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-wrapper .swiper-slide .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping .product-price strong {
  color: #383838;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-wrapper .swiper-slide .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now {
  display: none;
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-prev, .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-next {
  top: 20px;
  position: absolute;
  width: auto;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-prev, .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-next {
    display: none;
  }
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-prev:after, .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-next:after {
  font-size: 17px;
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-next {
  background: #F5F5F5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-next:hover {
  background: #383838;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-next {
    width: 32px;
    height: 32px;
    padding: 0;
    left: auto;
  }
  .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-next:after {
    font-size: 11px !important;
  }
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-next:hover:after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(263deg) brightness(100%) contrast(103%);
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-next:after {
  content: "";
  background-image: url("../../assets/img/arrow-right.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 16px; /* Adjust based on the image size */
  height: 16px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-prev {
  left: auto;
  right: 70px;
  background: #F5F5F5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-prev.swiper-button-disabled {
  opacity: 0.7;
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-prev:hover {
  background: #383838;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-prev {
    width: 32px;
    height: 32px;
    padding: 0;
    left: 75%;
  }
  .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-prev:after {
    font-size: 11px !important;
  }
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-prev:hover:after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(263deg) brightness(100%) contrast(103%);
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-button-prev:after {
  content: "";
  background-image: url("../../assets/img/arrow-right.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 16px; /* Adjust based on the image size */
  height: 16px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
  rotate: 180deg;
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-pagination {
  bottom: auto;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-pagination {
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) {
  .page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-pagination {
    display: none;
  }
}
.page-home .homeblocks .top-picks .row .col-md-12 .homeblock-inner .section-content .products .swiper-buttons .swiper-pagination .swiper-pagination-bullet {
  margin: 0 3px;
}
.page-home .homeblocks .specific-style {
  background: #F2EFEB;
}
.page-home .homeblocks .specific-style .container .row {
  -ms-flex-pack: center;
      justify-content: center;
  column-gap: 20px;
}
.page-home .homeblocks .specific-style .container .row .col-md-2 {
  max-width: 220px;
  padding-bottom: 64px;
  -ms-grid-column-align: center;
      justify-items: center;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .specific-style .container .row .col-md-2 {
    padding: 5px;
    -ms-flex: unset;
        flex: unset;
    max-width: unset;
  }
}
.page-home .homeblocks .specific-style .container .row .col-md-2 .homeblock-inner .homeblock-main-image .main-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  max-width: 190px;
  background: #fff;
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 100%;
}
.page-home .homeblocks .specific-style .container .row .col-md-2 .homeblock-inner .homeblock-main-image .main-image .image-description {
  margin-top: 20px;
  text-align: center;
  text-decoration: underline;
}
.page-home .homeblocks .specific-style .container .row .col-md-2 .homeblock-inner .homeblock-main-image .main-image .image-description a {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px; /* 240% */
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .specific-style .container .row .col-md-2 .homeblock-inner .homeblock-main-image .main-image .image-description a {
    font-size: 13px;
    line-height: 22px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .specific-style .container .row .col-md-2 .homeblock-inner .homeblock-main-image .main-image .image-description a {
    font-size: 15px;
    line-height: 24px;
  }
}
.page-home .homeblocks .specific-style .container .row .col-md-12 {
  padding-top: 66px;
  padding-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .specific-style .container .row .col-md-12 {
    padding: 38px 0;
  }
}
.page-home .homeblocks .specific-style .container .row .col-md-12 .homecustomtext h2 {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .specific-style .container .row .col-md-12 .homecustomtext h2 {
    font-size: 24px;
    line-height: 28.2px;
  }
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .specific-style .container .row .swiper-wrapper {
    padding-bottom: 36px;
  }
}
.page-home .homeblocks .fabric-samples {
  background: #606C6A;
}
.page-home .homeblocks .fabric-samples .col-md-4 {
  -ms-flex: 0 0 41.66%;
      flex: 0 0 41.66%;
  max-width: 41.66%;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (max-width: 991px) {
  .page-home .homeblocks .fabric-samples .col-md-4 {
    -ms-flex: 100%;
        flex: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text {
    padding-left: 60px;
  }
}
@media screen and (max-width: 991px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text {
    padding-top: 38px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text {
    padding-top: 38px;
    -ms-grid-column-align: center;
        justify-items: center;
    text-align: center;
    max-width: 515px;
    margin: auto;
  }
}
.page-home .homeblocks .fabric-samples .col-md-4 .fabric-text h2 {
  color: #fff;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
  margin-bottom: 19px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text h2 {
    font-size: 24px;
    line-height: 28.2px;
  }
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text h2 br {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text h2 {
    font-size: 30px;
    line-height: 34.2px;
  }
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text h2 br {
    display: none;
  }
}
.page-home .homeblocks .fabric-samples .col-md-4 .fabric-text p {
  color: #fff;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
  margin-bottom: 31px;
  max-width: 515px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text p {
    font-size: 13px;
    line-height: 18px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text p {
    font-size: 14px;
    line-height: 18px;
  }
}
.page-home .homeblocks .fabric-samples .col-md-4 .fabric-text .fabric-btn {
  background: #383838;
  margin-bottom: 57px;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text .fabric-btn {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text .fabric-btn {
    max-width: 425px;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text .fabric-btn {
    max-width: 200px;
  }
}
.page-home .homeblocks .fabric-samples .col-md-4 .fabric-text .fabric-btn .btn-align {
  text-align: center;
  -ms-grid-column-align: center;
      justify-items: center;
}
.page-home .homeblocks .fabric-samples .col-md-4 .fabric-text .fabric-btn .btn-align p {
  width: 100%;
  margin-bottom: 0;
}
.page-home .homeblocks .fabric-samples .col-md-4 .fabric-text .fabric-btn .btn-align p a {
  margin-bottom: 0;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: "Geologica";
  font-size: 14px;
  height: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
  color: #fff;
  display: block;
  padding: 10px 20px;
}
@media screen and (min-width: 992px) {
  .page-home .homeblocks .fabric-samples .col-md-4 .fabric-text .fabric-btn .btn-align p a {
    height: 60px;
  }
}
.page-home .homeblocks .fabric-samples .col-md-4 .fabric-text .fabric-btn:hover {
  background: #fff;
}
.page-home .homeblocks .fabric-samples .col-md-4 .fabric-text .fabric-btn:hover .btn-align a {
  color: #606C6A;
}
.page-home .homeblocks .fabric-samples .col-md-8 {
  -ms-flex: 0 0 58.33%;
      flex: 0 0 58.33%;
  max-width: 58.33%;
}
@media screen and (max-width: 991px) {
  .page-home .homeblocks .fabric-samples .col-md-8 {
    padding: 0;
    -ms-flex: 100%;
        flex: 100%;
    max-width: 100%;
  }
}
.page-home .homeblocks .fabric-samples .col-md-8 .fabric-video {
  padding: 64px 0;
  justify-self: end;
  margin-left: 52px;
}
@media screen and (max-width: 991px) {
  .page-home .homeblocks .fabric-samples .col-md-8 .fabric-video {
    padding: 0;
    margin: 0;
  }
}
.page-home .homeblocks .fabric-samples .col-md-8 .fabric-video video {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 960/640;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .homeblocks .bespoke-footstools-heading {
  background: #F2EFEB;
}
.page-home .homeblocks .bespoke-footstools-heading .container .main-title {
  padding: 64px 0;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools-heading .container .main-title {
    padding-top: 48px;
    padding-bottom: 38px;
  }
}
.page-home .homeblocks .bespoke-footstools-heading .container .main-title h2 {
  margin: 0;
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
.page-home .homeblocks .bespoke-footstools-heading .container .main-title h2 span {
  font-style: italic;
  color: #606C6A;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools-heading .container .main-title h2 {
    font-size: 24px;
    line-height: 28.2px;
  }
}
.page-home .homeblocks .bespoke-footstools {
  background: #F2EFEB;
}
.page-home .homeblocks .bespoke-footstools .container {
  width: 100% !important;
  max-width: 100%;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-12, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-12 {
  padding: 64px 0;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools .row .col-md-12, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-12 {
    padding: 48px 0;
  }
}
.page-home .homeblocks .bespoke-footstools .row .col-md-12 .main-title h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-12 .main-title h2 {
  margin: 0;
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
.page-home .homeblocks .bespoke-footstools .row .col-md-12 .main-title h2 span, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-12 .main-title h2 span {
  font-style: italic;
  color: #606C6A;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools .row .col-md-12 .main-title h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-12 .main-title h2 {
    font-size: 24px;
    line-height: 28.2px;
  }
}
.page-home .homeblocks .bespoke-footstools .row .col-md-4, .page-home .homeblocks .bespoke-footstools .row .col-sm-12, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools .row .col-md-4, .page-home .homeblocks .bespoke-footstools .row .col-sm-12, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 {
    height: auto;
    margin-right: 0 !important;
  }
}
.page-home .homeblocks .bespoke-footstools .row .col-md-4 .sizes-tailored .stools-text, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .trending .stools-text, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space .stools-text, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .sizes-tailored .stools-text, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .trending .stools-text, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .sizes-tailored .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .trending .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .sizes-tailored .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .trending .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space .stools-text {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 10%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  z-index: 99;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools .row .col-md-4 .sizes-tailored .stools-text, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .trending .stools-text, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space .stools-text, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .sizes-tailored .stools-text, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .trending .stools-text, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .sizes-tailored .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .trending .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .sizes-tailored .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .trending .stools-text, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space .stools-text {
    padding: 0 15px;
  }
}
.page-home .homeblocks .bespoke-footstools .row .col-md-4 .sizes-tailored .stools-text h2, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .trending .stools-text h2, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space .stools-text h2, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .sizes-tailored .stools-text h2, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .trending .stools-text h2, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .sizes-tailored .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .trending .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .sizes-tailored .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .trending .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space .stools-text h2 {
  color: #fff;
  text-align: center;
  font-family: "Geologica";
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 46.903px; /* 146.571% */
}
@media screen and (max-width: 991px) {
  .page-home .homeblocks .bespoke-footstools .row .col-md-4 .sizes-tailored .stools-text h2, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .trending .stools-text h2, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space .stools-text h2, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .sizes-tailored .stools-text h2, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .trending .stools-text h2, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .sizes-tailored .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .trending .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .sizes-tailored .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .trending .stools-text h2, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space .stools-text h2 {
    font-size: 21px;
    line-height: 23.789px; /* 112.537% */
  }
}
.page-home .homeblocks .bespoke-footstools .row .col-md-4 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space .stools-text p {
  color: #FFF;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 250;
  line-height: 24.429px; /* 150% */
  max-width: 462px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools .row .col-md-4 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space .stools-text p {
    font-size: 13px;
    line-height: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .bespoke-footstools .row .col-md-4 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space .stools-text p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 576px) {
  .page-home .homeblocks .bespoke-footstools .row .col-md-4 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .sizes-tailored .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .trending .stools-text p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space .stools-text p {
    max-width: 274px;
    margin: auto;
  }
}
.page-home .homeblocks .bespoke-footstools .row .col-md-4 .sizes-tailored .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .trending .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .sizes-tailored .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .trending .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .sizes-tailored .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .trending .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .sizes-tailored .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .trending .stools-bg-img img, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space .stools-bg-img img {
  width: 100%;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-4 .sizes-tailored .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .trending .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .sizes-tailored .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .trending .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .sizes-tailored .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .trending .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .sizes-tailored .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .trending .stools-bg-img:before, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space .stools-bg-img:before {
  content: "";
  position: absolute;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  max-height: 343px;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-4 .your-space, .page-home .homeblocks .bespoke-footstools .row .col-sm-12 .your-space, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-4 .your-space, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-sm-12 .your-space {
  height: 100%;
  background: #585858;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-6, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-6 {
  padding-top: 64px;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-6 .design-stool, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-6 .design-stool {
  -ms-grid-column-align: end;
      justify-items: end;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-6 .design-stool .stools-design-btn, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-6 .design-stool .stools-design-btn {
  background: #383838;
  margin-bottom: 57px;
  max-width: 421px;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-6 .design-stool .stools-design-btn .btn-align, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-6 .design-stool .stools-design-btn .btn-align {
  padding: 10px 20px;
  text-align: center;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-6 .design-stool .stools-design-btn .btn-align p a, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-6 .design-stool .stools-design-btn .btn-align p a {
  color: #fff;
  margin-bottom: 0;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
  padding: 10px 20px;
  display: block;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-6 .free-swatches .stools-swatches-btn, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-6 .free-swatches .stools-swatches-btn {
  margin-bottom: 57px;
  -ms-grid-column-align: center;
      justify-items: center;
  max-width: 421px;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-6 .free-swatches .stools-swatches-btn .btn-align, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-6 .free-swatches .stools-swatches-btn .btn-align {
  padding: 10px 20px;
  text-align: center;
  border: 1px solid #000000;
}
.page-home .homeblocks .bespoke-footstools .row .col-md-6 .free-swatches .stools-swatches-btn .btn-align p, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-6 .free-swatches .stools-swatches-btn .btn-align p {
  width: 381px;
  height: 40px;
  margin-bottom: 0;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
}
.page-home .homeblocks .bespoke-footstools .row .col-md-6 .free-swatches .stools-swatches-btn .btn-align p a, .page-home .homeblocks .bespoke-footstools .swiper-wrapper .col-md-6 .free-swatches .stools-swatches-btn .btn-align p a {
  color: #000000;
}
.page-home .homeblocks .bespoke-footstools .swiper-pagination {
  position: relative;
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .page-home .homeblocks .bespoke-footstools .swiper-pagination {
    display: none;
  }
}
.page-home .homeblocks .bespoke-footstools-btns {
  background: #F2EFEB;
}
.page-home .homeblocks .bespoke-footstools-btns .container {
  padding-top: 34px;
  padding-bottom: 57px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools-btns .container .row {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .design-stool {
  -ms-grid-column-align: end;
      justify-items: end;
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .design-stool .stools-design-btn {
  background: #383838;
  width: 100%;
  border: 1px solid #000000;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .design-stool .stools-design-btn {
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .design-stool .stools-design-btn {
    max-width: 421px;
  }
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .design-stool .stools-design-btn:hover {
  background: #606C6A;
  border-color: #606C6A;
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .design-stool .stools-design-btn .btn-align {
  text-align: center;
  -ms-grid-column-align: center;
      justify-items: center;
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .design-stool .stools-design-btn .btn-align p {
  margin-bottom: 0;
  width: 100%;
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .design-stool .stools-design-btn .btn-align p a {
  color: #fff;
  margin-bottom: 0;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
  display: block;
  padding: 20px;
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .free-swatches .stools-swatches-btn {
  width: 100%;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .free-swatches .stools-swatches-btn {
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .free-swatches .stools-swatches-btn {
    max-width: 421px;
    -ms-grid-column-align: center;
        justify-items: center;
  }
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .free-swatches .stools-swatches-btn:hover {
  background: #383838;
  border: unset;
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .free-swatches .stools-swatches-btn:hover .btn-align a {
  color: #fff;
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .free-swatches .stools-swatches-btn .btn-align {
  -ms-grid-column-align: center;
      justify-items: center;
  text-align: center;
  border: 1px solid #000000;
  width: 100%;
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .free-swatches .stools-swatches-btn .btn-align p {
  width: 100%;
  margin-bottom: 0;
}
.page-home .homeblocks .bespoke-footstools-btns .container .row .col-md-6 .free-swatches .stools-swatches-btn .btn-align p a {
  color: #000000;
  margin-bottom: 0;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
  display: block;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .page-home .homeblocks .hire-cubes {
    margin-top: 68px;
    overflow: hidden;
    margin-bottom: 68px;
  }
}
.page-home .homeblocks .hire-cubes .col-md-6:has(.text-col) {
  background: #F8F6F4;
  -ms-flex-line-pack: center;
      align-content: center;
}
.page-home .homeblocks .hire-cubes .col-md-6:has(.image-col) {
  padding: 0;
}
.page-home .homeblocks .hire-cubes .image-col {
  height: 100%;
}
.page-home .homeblocks .hire-cubes .image-col .homeblock-main-image {
  height: 100%;
}
.page-home .homeblocks .hire-cubes .image-col .homeblock-main-image .main-image {
  height: 100%;
}
.page-home .homeblocks .hire-cubes .image-col .homeblock-main-image .main-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}
.page-home .homeblocks .hire-cubes .text-col {
  margin-top: 20px;
  margin-bottom: 20px;
  -ms-grid-column-align: center;
      justify-items: center;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .hire-cubes .text-col {
    padding: 30px 0px;
  }
  .page-home .homeblocks .hire-cubes .text-col .image img {
    max-width: 42px;
  }
}
.page-home .homeblocks .hire-cubes .text-col .image {
  margin-bottom: 34px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .hire-cubes .text-col .image {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home .homeblocks .hire-cubes .text-col .image {
    margin-bottom: 28px;
  }
}
.page-home .homeblocks .hire-cubes .text-col .text {
  max-width: 520px;
  margin: auto;
  margin-bottom: 19px;
  padding-left: 15px;
  padding-right: 15px;
}
.page-home .homeblocks .hire-cubes .text-col .text h2 {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .hire-cubes .text-col .text h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home .homeblocks .hire-cubes .text-col .text h2 {
    font-size: 25px;
    line-height: 28px;
  }
}
.page-home .homeblocks .hire-cubes .text-col .text p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 21px;
  font-style: normal;
  font-weight: 250;
  line-height: 33.2px; /* 158.095% */
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .hire-cubes .text-col .text p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home .homeblocks .hire-cubes .text-col .text p {
    font-size: 18px;
    line-height: 28px;
  }
}
.page-home .homeblocks .hire-cubes .text-col .text p a {
  color: #606C6A;
  font-family: "Geologica";
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 33.2px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .hire-cubes .text-col .text p a {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home .homeblocks .hire-cubes .text-col .text p a {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .hire-cubes .text-col .get-a-quote {
    width: 100%;
  }
}
.page-home .homeblocks .hire-cubes .text-col .get-a-quote a {
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  height: 60px;
  padding: 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .hire-cubes .text-col .get-a-quote a {
    height: 46px;
    font-family: "Geologica";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.5px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-home .homeblocks .hire-cubes .text-col .get-a-quote a {
    height: 52px;
  }
}
.page-home .homeblocks .inspiration-hub {
  padding-top: 68px;
  margin-bottom: 68px;
}
.page-home .homeblocks .inspiration-hub .main-title {
  padding-bottom: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page-home .homeblocks .inspiration-hub .main-title h2 {
  margin: 0;
  color: #383838;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .inspiration-hub .main-title h2 {
    font-size: 24px;
    line-height: 28.2px; /* 117.5% */
  }
}
.page-home .homeblocks .inspiration-hub .main-title p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .inspiration-hub .main-title p {
    display: none;
  }
}
.page-home .homeblocks .inspiration-hub .main-title p a {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px; /* 240% */
  text-decoration: underline;
  -webkit-text-decoration-color: #383838;
          text-decoration-color: #383838;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .block-title {
  display: none;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide:not(:last-child) {
    margin-right: 20px !important;
  }
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide {
  position: relative;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .products-block-image img {
  width: 100%;
  aspect-ratio: 586/565;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .post-reading-time {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 0 15px;
  right: 18px;
  top: 18px;
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 300% */
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content {
  padding-top: 27px;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content h5 .product-name {
  color: #383838;
  font-family: "Geologica";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 114.286% */
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content h5 .product-name {
    font-size: 18px;
    line-height: 23px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content h5 .product-name {
    font-size: 20px;
    line-height: 23px;
  }
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content .simpleblog__listing__post__wrapper__content__readmore {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content .simpleblog__listing__post__wrapper__content__readmore .text-underline {
  font-size: 15px;
  text-decoration: none;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content .simpleblog__listing__post__wrapper__content__readmore .fa {
  display: -ms-flexbox;
  display: flex;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content .simpleblog__listing__post__wrapper__content__readmore .fa:after {
  content: "";
  left: 190px; /* Align to the left */
  background-image: url("../../assets/img/mynaui_arrow-up.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 28px; /* Adjust based on the image size */
  height: 28px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content .product-description {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content .product-description {
    font-size: 13px;
    line-height: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-slide .product-content .product-description {
    font-size: 14px;
    line-height: 20px;
  }
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-button-next, .page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-button-prev {
  display: none;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .swiper-container .swiper-pagination {
  display: none;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .products-block .btn-primary {
  display: none;
}
.page-home .homeblocks .inspiration-hub .home-blogs .block-custom-content .column-posts-list .blog-action {
  display: none;
}
.page-home .homeblocks .usp-block-full-width {
  padding: 15px 0;
}
@media screen and (min-width: 992px) {
  .page-home .homeblocks .usp-block-full-width {
    padding: 35px 0;
  }
}
.page-home .homeblocks .usp-block-full-width #sd-uspblock .img-usp img {
  max-height: 49px;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .img-usp img {
    max-height: 35px !important;
  }
}
.page-home .homeblocks .usp-block-full-width #sd-uspblock .swiper-button-prev, .page-home .homeblocks .usp-block-full-width #sd-uspblock .swiper-button-next {
  display: none;
}
.page-home .homeblocks .usp-block-full-width #sd-uspblock .section-content .swiper-wrapper {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .section-content .swiper-wrapper {
    transition-timing-function: linear;
  }
}
.page-home .homeblocks .usp-block-full-width #sd-uspblock .section-content .swiper-wrapper .swiper-slide {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.page-home .homeblocks .usp-block-full-width #sd-uspblock .section-content .swiper-wrapper .swiper-slide:has(.text a:hover) .img-usp img {
  filter: brightness(0) saturate(100%) invert(41%) sepia(5%) saturate(788%) hue-rotate(120deg) brightness(95%) contrast(83%);
}
.page-home .homeblocks .usp-block-full-width #sd-uspblock .section-content .swiper-wrapper .swiper-slide:hover .text a {
  text-decoration: underline;
  cursor: pointer;
}
.page-home .homeblocks .usp-block-full-width #sd-uspblock .section-content .swiper-wrapper .swiper-slide:hover .text a span {
  color: #606C6A;
}
.page-home .homeblocks .usp-block-full-width #sd-uspblock .text span {
  font-size: 18px;
  line-height: 20px;
  color: #383838;
  font-weight: 400;
  display: block;
  font-family: "Geologica";
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .text span {
    font-size: 15px;
  }
}
.page-home .homeblocks .usp-block-full-width #sd-uspblock .user-swiper-row {
  display: -ms-flexbox;
  display: flex;
  column-gap: 19px;
  -ms-flex-align: center;
      align-items: center;
}
.page-home .homeblocks .our-cubes-own-fabric {
  padding-bottom: 20px;
}
.page-home .homeblocks .our-cubes-own-fabric .row .hire-our-cubes {
  background-image: url("../../assets/img/hire-our-cube-today.png");
  height: 375px;
}
.page-home .homeblocks .our-cubes-own-fabric .row .col-md-6:first-child {
  padding-right: 10px;
}
.page-home .homeblocks .our-cubes-own-fabric .row .user-your-own-fabric {
  background-image: url("../../assets/img/user-your-own-fabric.png");
  background-color: #0c5660;
  height: 375px;
}
.page-home .homeblocks .our-cubes-own-fabric .hire-our-cubes {
  padding-top: 50px;
}
.page-home .homeblocks .our-cubes-own-fabric .hire-our-cubes h2 {
  text-align: center;
  font-size: 48px;
  color: #0C5660;
  font-weight: 900;
}
.page-home .homeblocks .our-cubes-own-fabric .hire-our-cubes .hire-our-cube-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  font-weight: 600;
}
.page-home .homeblocks .our-cubes-own-fabric .hire-our-cubes .hire-our-cube-content p {
  text-align: center;
  color: #0C5660;
  font-size: 19px;
  line-height: 27px;
  width: 60%;
}
.page-home .homeblocks .our-cubes-own-fabric .hire-our-cubes .hire-our-cube-content p a {
  color: #606C6A;
  text-decoration: underline;
}
.page-home .homeblocks .our-cubes-own-fabric .user-your-own-fabric {
  padding-top: 50px;
}
.page-home .homeblocks .our-cubes-own-fabric .user-your-own-fabric h2 {
  text-align: center;
  font-size: 48px;
  color: #ffffff;
  font-weight: 900;
}
.page-home .homeblocks .our-cubes-own-fabric .user-your-own-fabric .use-your-fabric {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  font-weight: 600;
}
.page-home .homeblocks .our-cubes-own-fabric .user-your-own-fabric .use-your-fabric p {
  color: #ffffff;
  font-size: 19px;
  text-align: center;
  line-height: 27px;
  width: 80%;
}
.page-home .homeblocks .our-cubes-own-fabric .user-your-own-fabric .use-your-fabric p a {
  color: #ffffff;
  text-decoration: underline;
}
.page-home .homeblocks .branded-furniture {
  background-image: url("../../assets/img/branded-furniture.jpg");
  height: 472px;
}
.page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-heading {
  padding-top: 127px;
  text-align: center;
  color: #ffffff;
}
.page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-heading h2 {
  font-size: 48px;
}
.page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-heading a {
  text-decoration: underline;
  color: #ffffff;
}
.page-home .homeblocks .branded-furniture .branded-furniture-child .get-quote-homepage {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 54px;
  margin: auto;
}
.page-home .homeblocks .branded-furniture .branded-furniture-child .get-quote-homepage a {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 30px;
  border-radius: 5px;
  padding: 12px 43px;
}
.page-home .homeblocks .branded-furniture .branded-furniture-child .get-quote-homepage .btn-primary:hover {
  background: #F4896C;
}
.page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-content p {
  width: 35%;
  font-size: 19px;
  line-height: 30px;
  padding-bottom: 16px;
}
.page-home .homeblocks .information-block {
  text-align: center;
  color: #464646;
}
.page-home .homeblocks .information-block .row .col-md-4:nth-child(1) {
  border-right: 1px solid #D0D0D0;
}
.page-home .homeblocks .information-block .row .col-md-4:nth-child(2) {
  border-right: 1px solid #D0D0D0;
}
.page-home .homeblocks .information-block h2 {
  font-size: 34px;
  line-height: 23px;
  padding-top: 23px;
  padding-bottom: 10px;
  font-weight: 900;
  letter-spacing: -1.7px;
}
@media (max-width: 768px) {
  .page-home .homeblocks .information-block h2 {
    font-size: 30px;
  }
}
.page-home .homeblocks .information-block .our-factory-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-bottom: 30px;
}
.page-home .homeblocks .information-block .our-factory-content p {
  width: 60%;
}
@media (max-width: 768px) {
  .page-home .homeblocks .information-block .our-factory-content p {
    width: 70%;
  }
}
.page-home .homeblocks .information-block .opening-time-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-bottom: 30px;
}
.page-home .homeblocks .information-block .opening-time-content p {
  width: 40%;
}
.page-home .homeblocks .information-block .support-content {
  padding-bottom: 30px;
}
.page-home .homeblocks .information-block .information-block-button a {
  color: #ffffff;
  font-weight: 600;
  line-height: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 12px 39px;
  border-radius: 5px;
  font-size: 17px;
}
.page-home .homeblocks .client-wave-work {
  text-align: center;
}
.page-home .homeblocks .client-wave-work h2 {
  font-size: 34px;
  color: #464646;
  font-weight: 900;
}
.page-home .homeblocks .client-wave-work .clients-wave-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.page-home .homeblocks .client-wave-work .clients-wave-content p {
  width: 70%;
  color: #464646;
}
.page-home .homeblocks .clients-weve-image img {
  width: 11vw;
}
.page-home .homeblocks .stay-up-to-date .top-description {
  text-align: center;
  color: #464646;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .page-home .homeblocks .stay-up-to-date .top-description {
    padding-bottom: 20px;
  }
}
.page-home .homeblocks .stay-up-to-date .top-description h2 {
  font-size: 34px;
  line-height: 44px;
  font-weight: 900;
  margin-bottom: 0;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block-title {
  display: none;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content .post-reading-time {
  background: #fff;
  border-radius: 8px;
  padding: 3px 12px;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #464646;
  font-size: 15px;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content a.blog-explore-btn {
  color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
  font-size: 17px;
  line-height: 30px;
  padding: 12px 54px;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content a.blog-explore-btn:hover {
  background: #007B68;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  column-gap: 30px;
  padding-bottom: 30px;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content ul li {
  position: relative;
  -ms-flex: 1;
      flex: 1;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content ul li .products-block-image img {
  aspect-ratio: 0.89/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .post-additional-info {
  display: none;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .product-content {
  margin-top: 25px;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .product-content h5 a {
  font-size: 23px;
  font-weight: 700;
  color: #464646;
}
.page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .product-content p {
  color: #464646;
}
@media screen and (max-width: 768px) {
  .page-home .homeblocks .category-block .row {
    -ms-flex-flow: wrap !important;
        flex-flow: wrap !important;
    row-gap: 15px;
  }
  .page-home .homeblocks .category-block .row .column {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
  }
  .page-home .homeblocks .category-block .row .heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    padding-top: 0;
  }
  .page-home .homeblocks .category-block .row .heading a {
    padding: 15px;
    width: 100%;
  }
  .page-home .homeblocks .category-block .row .hover-img img {
    border-radius: 50% !important;
  }
  .page-home .homeblocks .welcome-to-footstools-direct .welcome-footstool-text {
    padding-top: 40px;
  }
  .page-home .homeblocks .welcome-to-footstools-direct .row .col-md-6:first-child {
    padding: 30px;
  }
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .user-swiper-row {
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .section-content .swiper-wrapper {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .section-content .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
  .page-home .homeblocks .feature-product .products {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 30px;
  }
  .page-home .homeblocks .our-cubes-own-fabric .hire-our-cubes h2 {
    font-size: 30px;
  }
  .page-home .homeblocks .our-cubes-own-fabric .hire-our-cubes .hire-our-cube-content p {
    font-size: 16px;
    line-height: 25px;
  }
  .page-home .homeblocks .our-cubes-own-fabric .user-your-own-fabric h2 {
    font-size: 30px;
  }
  .page-home .homeblocks .our-cubes-own-fabric .user-your-own-fabric .use-your-fabric p {
    font-size: 16px;
    line-height: 25px;
  }
  .page-home .homeblocks .branded-furniture .branded-furniture-child .get-quote-homepage {
    padding: 18px 30px;
  }
  .page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-heading h2 {
    font-size: 30px;
  }
  .page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-content p {
    font-size: 16px;
    line-height: 25px;
    width: 50%;
  }
  .page-home .homeblocks .our-cubes-own-fabric .row {
    row-gap: 20px;
  }
  .page-home .homeblocks .information-block .row {
    row-gap: 40px;
  }
  .page-home .homeblocks .information-block .support-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    padding-bottom: 0px;
  }
  .page-home .homeblocks .information-block .support-content p {
    width: 60%;
  }
  .page-home .homeblocks .information-block .opening-time-content {
    padding-bottom: 0px;
  }
  .page-home .homeblocks .information-block .opening-time-content p {
    width: 20%;
  }
  .page-home .homeblocks .information-block .information-block-button {
    padding: 5px 47px;
  }
  .page-home .homeblocks .information-block .our-factory-content {
    padding-bottom: 0;
  }
  .page-home .homeblocks .clients-weve-image img {
    width: 30vw;
  }
  .page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content .text-center {
    padding: 10px 40px;
  }
  .page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content ul {
    -ms-flex-flow: column;
        flex-flow: column;
    padding-bottom: 10px;
    gap: 15px;
  }
  .page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content ul li .products-block-image img {
    width: 100%;
    height: auto;
  }
  .page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content ul .product-content {
    text-align: center;
    margin: 15px 0 25px;
  }
  .page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content ul .product-content .product-name {
    font-size: 22px;
  }
  .page-home .homeblocks .client-wave-work .clients-wave-content p {
    width: 100%;
  }
  .page-home .homeblocks .clients-weve-image {
    padding: 10px;
  }
  .page-home .homeblocks .clients-weve-image img {
    width: 28vw;
  }
  .page-home .homeblocks .branded-furniture {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  .page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-content p {
    width: 80%;
    padding-bottom: 0;
  }
  .page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-heading {
    padding-top: 0;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .page-home .homeblocks p {
    font-size: 16px;
  }
  .page-home .homeblocks h2 {
    font-size: 34px;
  }
  .page-home .homeblocks .block-custom-content .category-block .heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .page-home .homeblocks .block-custom-content .category-block .heading a {
    width: 60%;
  }
  .page-home .homeblocks .block-custom-content .category-block .row {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    row-gap: 20px;
  }
  .page-home .homeblocks .block-custom-content .category-block .row .column {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
  }
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .section-content .swiper-wrapper {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .section-content .swiper-wrapper .swiper-slide {
    width: 100% !important;
  }
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .user-swiper-row {
    -ms-flex-pack: center;
        justify-content: center;
  }
  .page-home .homeblocks .our-cubes-own-fabric .hire-our-cubes .hire-our-cube-content p {
    font-size: 16px;
  }
  .page-home .homeblocks .our-cubes-own-fabric .hire-our-cubes h2 {
    font-size: 34px;
  }
  .page-home .homeblocks .our-cubes-own-fabric .user-your-own-fabric .use-your-fabric p {
    font-size: 16px;
  }
  .page-home .homeblocks .our-cubes-own-fabric .user-your-own-fabric h2 {
    font-size: 34px;
  }
  .page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-heading h2 {
    font-size: 34px;
  }
  .page-home .homeblocks .branded-furniture .branded-furniture-child .brand-furniture-content p {
    font-size: 16px;
  }
  .page-home .homeblocks .information-block .our-factory-content p {
    width: 95%;
  }
  .page-home .homeblocks .information-block .opening-time-content p {
    width: 60%;
  }
  .page-home .homeblocks .clients-weve-image img {
    width: 23vw;
  }
  .page-home .homeblocks .stay-up-to-date #blog_for_prestashop_column .block_content .text-center {
    padding: 9px 40px;
  }
  .page-home .homeblocks .welcome-to-footstools-direct .row .col-md-6:first-child {
    padding-left: 30px;
  }
}
@media screen and (max-width: 540px) {
  .page-home .homeblocks .information-block .opening-time-content p {
    width: 40%;
  }
  .page-home .homeblocks .our-cubes-own-fabric .hire-our-cubes .hire-our-cube-content p {
    width: 80%;
  }
}

#seuropecookielaw {
  background: #464646;
  color: #ffffff;
}
#seuropecookielaw button {
  border-radius: 5px;
}

.clients-block .row {
  row-gap: 5px;
}
.clients-block .col-md-2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 576px) {
  .clients-block .col-md-2 {
    -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
.clients-block .homeblock-main-image .main-image img {
  width: 80%;
  margin: auto;
}

#category #main-page-content #wrapper .container:has(.breadcrumb) {
  display: none;
}
#category #main-page-content #wrapper #js-product-list-header .page-title span {
  color: #fff;
  font-family: "mixta-pro";
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 83.077% */
}
#category #main-page-content #wrapper .desktop-view.no-image {
  margin: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}
#category #main-page-content #wrapper .desktop-view.no-image .category-overlay #js-product-list-header .page-title span {
  color: #383838 !important;
}
#category #main-page-content #wrapper .desktop-view.no-image .category-overlay .category-description-outer .category-description p {
  color: #383838;
}
#category #main-page-content #wrapper .desktop-view.no-image .category-overlay .category-description-outer .category-description p a {
  color: #606C6A;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .desktop-view.no-image .category-overlay .category-description-outer .category-description p {
    font-size: 13px;
    color: #383838;
  }
}
#category #main-page-content #wrapper .desktop-view.no-image .category-overlay .category-description-outer .category-description p:last-child {
  margin-bottom: 0;
}
#category #main-page-content #wrapper .desktop-view.no-image .category-overlay .category-description-outer .read-more-button {
  color: #383838;
}
#category #main-page-content #wrapper .desktop-view.no-image .category-overlay .category-description-outer .data {
  overflow: hidden;
}
#category #main-page-content #wrapper .mobile-view.no-image .category-overlay {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #category #main-page-content #wrapper .mobile-view {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay #js-product-list-header .page-title {
    line-height: 28.2px;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay #js-product-list-header .page-title span {
    color: #383838;
    font-size: 24px;
    line-height: 28.2px;
  }
}
#category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer {
  margin-bottom: 0;
}
#category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .category-description {
  margin: 0;
  max-width: 865px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .category-description {
    overflow: hidden;
    height: 100% !important;
    text-align: left !important;
  }
}
@media screen and (min-width: 992px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .category-description {
    overflow: hidden;
  }
}
#category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .category-description p {
  color: #fff;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
#category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .category-description p a {
  color: #fff;
  font-family: "Geologica";
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .category-description p a {
    font-size: 13px;
    color: #383838;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .category-description p {
    font-size: 13px;
    color: #383838;
    line-height: normal;
  }
}
#category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .category-description p:last-child {
  margin-bottom: 0;
}
#category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .learn-more-description {
  display: none;
}
@media screen and (min-width: 992px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .learn-more-description {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    position: relative;
    top: 5px;
    display: block;
  }
}
#category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .read-more-button {
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 3px;
  color: #fff;
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .read-more-button {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay .category-description-outer .read-more-button {
    font-size: 13px;
    color: #383838;
    font-weight: 400;
  }
}
#category #main-page-content #wrapper .category-header-section .category-image-desc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-image-desc {
    position: relative;
  }
}
#category #main-page-content #wrapper .category-header-section .category-image-desc img {
  width: 100%;
  height: 100%;
  aspect-ratio: 390/220;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 220px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-image-desc img {
    height: auto;
  }
}
#category #main-page-content #wrapper .category-header-section .category-image-desc:after {
  display: block;
  content: "";
  opacity: 0.96;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-image-desc:after {
    background: unset;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-image-desc {
    border-radius: unset;
  }
}
#category #main-page-content #wrapper .category-header-section .category-overlay {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay {
    margin: auto auto 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-header-section .category-overlay {
    background: #F2EFEB;
    padding: 20px 15px;
  }
}
#category #main-page-content #wrapper .category-header-section.no-image {
  min-height: unset;
  margin: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media screen and (min-width: 1026px) {
  #category #main-page-content #wrapper .category-header-section.no-image {
    padding: 58px 15px;
    text-align: center;
  }
}
@media screen and (max-width: 1025px) {
  #category #main-page-content #wrapper .category-header-section.no-image {
    padding-top: 40px;
  }
}
#category #main-page-content #wrapper .category-header-section.no-image #js-product-list-header h1 {
  color: #383838;
}
#category #main-page-content #wrapper .category-header-section.no-image .category-overlay {
  max-width: 100%;
}
#category #main-page-content #wrapper .category-header-section.no-image .category-description-outer .category-description p {
  color: #383838;
}
#category #main-page-content #wrapper .category-header-section.no-image .category-description-outer .read-more-button {
  color: #383838;
}
#category #main-page-content #wrapper .category-blocks .title-description {
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media screen and (min-width: 768px) and (max-width: 1050px) {
  #category #main-page-content #wrapper .category-blocks .title-description:has(.no-image) {
    padding: 20px;
    display: block;
    min-height: unset;
    text-align: center;
  }
  #category #main-page-content #wrapper .category-blocks .title-description .no-image .category-description-top {
    max-width: 100%;
  }
  #category #main-page-content #wrapper .category-blocks .title-description .no-image .category-description-top p {
    text-align: center;
  }
}
@media screen and (min-width: 1026px) {
  #category #main-page-content #wrapper .category-blocks .title-description {
    padding: 58px 15px;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media screen and (min-width: 1550px) {
  #category #main-page-content #wrapper .category-blocks .title-description:not(:has(.no-image)) {
    min-height: 679px;
  }
}
#category #main-page-content #wrapper .category-blocks .title-description:has(.elementor) {
  padding: 0;
}
#category #main-page-content #wrapper .category-blocks .title-description:has(.elementor) .desktop-view, #category #main-page-content #wrapper .category-blocks .title-description:has(.elementor) .mobile-view {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1025px) {
  #category #main-page-content #wrapper .category-blocks .title-description {
    padding: 108px 15px 70px;
    min-height: 480px;
    -ms-flex-pack: end;
        justify-content: end;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .title-description {
    margin-bottom: 0;
  }
}
#category #main-page-content #wrapper .category-blocks .title-description .row {
  display: contents;
}
#category #main-page-content #wrapper .category-blocks .title-description .row .col-md-12 {
  display: contents;
}
#category #main-page-content #wrapper .category-blocks .title-description .row .col-md-12 .desktop-view {
  display: contents;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .title-description .row .col-md-12:has(.categories-list) {
    display: none;
  }
}
#category #main-page-content #wrapper .category-blocks .title-description .row .col-md-12 .categories-list {
  margin: auto auto 0;
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
#category #main-page-content #wrapper .category-blocks .title-description .row .col-md-12 .categories-list ul.category-names {
  column-gap: 36px;
}
#category #main-page-content #wrapper .category-blocks .title-description .row .col-md-12 .categories-list .category-names li a {
  color: #fff;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 22.5px; /* 150% */
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  #category #main-page-content #wrapper .category-blocks .sub-category-list {
    display: none;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer:has(.more-to-explore) {
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer:has(.more-to-explore) {
    margin: 0 -15px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer:has(.faq):not(:has(.elementor-widget.faq)) {
  background: #F2EFEB;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer:has(.sub-categories) {
  background: #F2EFEB;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .sub-categories {
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .sub-categories {
    padding-top: 15px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .sub-categories .category-names {
  column-gap: 30px;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .sub-categories .category-names li a {
  text-decoration: underline;
  color: #383838;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 132.353% */
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .sub-categories .category-names li a {
    font-size: 13px;
    font-weight: 700;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row {
  max-width: 1160px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 {
    padding: 0;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .anchor-desc {
  padding-top: 69px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .anchor-desc {
    padding-top: 14px;
    padding-bottom: 5px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .anchor-desc .text-center {
  color: #383838;
  text-align: left !important;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .anchor-desc .text-center {
    font-size: 24px;
    line-height: 28.2px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .title .section-title span {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 33.2px; /* 132.8% */
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .title .section-title span {
    font-size: 19px;
    line-height: 23.2px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content {
  max-width: 1081px;
}
@media screen and (min-width: 769px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content div {
    margin-bottom: 35px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p {
    font-size: 13px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p span {
  font-weight: 250 !important;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p a {
  font-weight: 250 !important;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team {
  display: -ms-flexbox;
  display: flex;
  color: #606C6A;
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 250;
  line-height: 33.2px; /* 184.444% */
  margin-top: 57px;
  margin-bottom: 67px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team {
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 31px;
    margin-bottom: 40px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content {
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content {
    margin-left: 0;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content p a {
  text-decoration: underline;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content p a {
    font-size: 13px;
    line-height: 20px;
    margin-left: 0;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .container .faq .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content p a:hover {
  color: #606C6A;
}
@media screen and (max-width: 992px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .col-lg-3 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
        align-items: baseline;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-9 {
    max-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex: 1;
        flex: 1;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-9:has(#amazzing_filter) {
  position: unset;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 {
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (min-width: 769px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 {
    max-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 #js-product-list-top .sort-by-filter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 #js-product-list-top .sort-by-filter .mobile-filter-btn {
  display: none;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 #js-product-list-top .sort-by-filter .sort_by {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 #js-product-list-top .sort-by-filter .sort_by {
    -ms-flex-align: baseline;
        align-items: baseline;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 #js-product-list-top .sort-by-filter .sort_by .hide-in-991 {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 100;
  line-height: 39px;
}
@media screen and (max-width: 992px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 #js-product-list-top .sort-by-filter .sort_by .hide-in-991 {
    display: block;
    font-size: 13px;
    font-weight: 250;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 #js-product-list-top .sort-by-filter .hide-in-991 {
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 39px;
  color: #383838;
}
@media screen and (max-width: 992px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 #js-product-list-top .sort-by-filter .hide-in-991 {
    display: none;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .col-lg-3 #js-product-list-top .sort-by-filter .hide-in-991 span {
  font-weight: 300;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter {
  margin: 17px 0;
  -ms-grid-column-align: center;
      justify-items: center;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content {
  width: 100%;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  column-gap: 70px;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter {
  width: -moz-fit-content !important;
  width: fit-content !important;
  position: unset;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_subtitle {
  border: unset;
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 39px; /* 229.412% */
  text-transform: capitalize;
  padding-left: 0;
  padding-right: 30px;
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_subtitle {
    font-size: 15px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_filter_content {
  box-shadow: 0 14px 14px rgba(0, 0, 0, 0.05);
  width: 100%;
  left: 0;
  right: 0;
  border: unset;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_filter_content .p_slider {
  max-width: 20%;
  padding: 0 30px;
  margin-left: 40px;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_filter_content ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
  padding: 0 30px;
  max-width: 95%;
  margin: auto;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_filter_content ul .af-checkbox-label {
  padding: 10px 20px;
  border-radius: 30px;
  background: #F8F6F4;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_filter_content ul .af-checkbox-label .count {
  display: none;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_filter_content ul li {
  -ms-flex: 0 0 20%;
      flex: 0 0 20%;
  -ms-flex-line-pack: center;
      align-content: center;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_filter_content ul li .af-color-label .af-color-box {
  width: 18px;
  height: 18px;
  min-width: auto;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_filter_content ul li .af-color-label .name {
  color: #383838;
  text-align: left;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .af_filter .af_filter_content ul li .af-color-label .count {
  font-size: 15px;
  margin-left: 0;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .selectedFilters {
  display: -ms-flexbox;
  display: flex;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .selectedFilters .clearAll {
  -ms-flex-order: 1;
      order: 1;
  background: unset;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row #amazzing_filter .block_content .selectedFilters .clearAll .all .txt {
  text-decoration: underline;
  text-transform: capitalize;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .sort-by-name {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 250;
  line-height: 39px; /* 229.412% */
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection {
  border: unset;
  margin: 0;
  padding: 0;
  margin-top: 45px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection {
    padding: 0;
    margin-top: 21px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row {
  -ms-flex-pack: end !important;
      justify-content: end !important;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row .sort-by-filter {
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row .sort-by-filter {
    -ms-flex-pack: end !important;
        justify-content: end !important;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row .sort-by-filter .mobile-filter-btn {
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row .sort-by-filter .mobile-filter-btn {
    display: none;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row .sort-by-filter .mobile-filter-btn .select-title-name {
  font-size: 13px;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row .sort-by-filter .mobile-filter-btn::after {
  content: "";
  background-image: url("../../assets/img/mbl-filter.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 17px; /* Adjust based on the image size */
  height: 17px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row .sort-by-filter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    width: 100%;
  }
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row .sort-by-filter .sort_by {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row .sort-by-filter .sort_by .sort-by-name {
    display: block;
    font-size: 13px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-selection .row .sort-by-filter .sort_by .products-nb-per-page {
  display: none;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-sort-order .select-title {
  border: unset;
  box-shadow: none;
}
@media screen and (max-width: 991px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-sort-order .select-title {
    padding-top: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    padding-left: 7px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-sort-order .select-title .select-title-name {
  color: #383838;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-sort-order .select-title .select-title-name {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-block .row .products-sort-order .select-title .select-title-name {
    font-size: 14px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-result-text-mobile {
  display: block !important;
  color: #383838;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 39px; /* 300% */
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-result-text-mobile span {
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products .filter-result-text-mobile {
    font-size: 13px;
  }
}
@media screen and (max-width: 530px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper {
    max-width: 100%;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper:has(.happy-customers) {
    -ms-flex-order: 1;
        order: 1;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper:has(.care-guides) {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper:has(.care-guides) {
    display: none;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .thumbnail-container {
  background-color: #ebe9ea;
  border: unset;
  aspect-ratio: 425/425;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .thumbnail-container:hover {
  background-color: #f8f8f8;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .thumbnail-container .product-flag-extra .product-flag {
  border-radius: unset;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples:hover .image-content a {
  -webkit-text-decoration-color: #606C6A;
          text-decoration-color: #606C6A;
  color: #606C6A;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples .image-area {
  aspect-ratio: 425/425;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples .image-area .main-image img {
  aspect-ratio: 425/425 !important;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples .image-content {
  position: relative;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples .image-content {
  margin-top: 25px;
  position: relative;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples .image-content a {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px; /* 100% */
  text-decoration: underline;
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples .image-content a {
    font-size: 20px;
  }
}
@media screen and (max-width: 769px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples .image-content a {
    font-size: 20px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples .image-content a:hover {
  -webkit-text-decoration-color: #606C6A;
          text-decoration-color: #606C6A;
  color: #606C6A;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples .image-content p {
  color: #000;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .fabric-samples .image-content p {
    font-size: 13px;
    line-height: 20px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 15px;
  position: relative;
  background: #606C6A;
  aspect-ratio: 425/425;
}
@media screen and (max-width: 576px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers {
    padding: 0 28px;
    aspect-ratio: unset !important;
    -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
  }
}
@media screen and (min-width: 1500px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers {
    padding: 45px 35px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .img {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding-top: 10px;
  overflow: hidden;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .img {
    position: unset;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .img img {
    max-width: 65px;
  }
}
@media screen and (min-width: 1500px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .img {
    padding-top: 48px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1250px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .img {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .img img {
    height: 60px;
    width: 60px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .text {
  margin: auto auto 0;
  margin-left: 0;
  position: relative;
  width: 100%;
  z-index: 1;
  max-width: 324px;
  color: #fff;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 150%; /* 150% */
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .text {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .text {
    font-size: 13px;
    margin: 0;
    margin-top: 0;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .text span {
  font-family: "mixta-pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px; /* 116.667% */
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .text span {
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1025px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers .text span {
    font-size: 20px;
    line-height: normal;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
  padding: 25px;
  position: relative;
}
@media screen and (min-width: 1500px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides {
    padding: 108px 15px;
    min-height: 498px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .image-area {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .image-area .main-image {
  height: 100%;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .image-area .main-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .image-area:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .image-content {
  margin: auto auto 25px;
  max-width: 872px;
  position: relative;
  width: 100%;
  z-index: 1;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .image-content .text {
  max-width: 370px;
  margin: auto;
  margin-bottom: 30px;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .image-content .text h2 {
  color: #fff;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 100% */
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .image-content .text h2 {
    font-size: 28px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .image-content .text p {
  color: #fff;
  text-align: center;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .guid-btn {
  max-width: 203px;
  margin: auto;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .guid-btn a {
  margin: auto;
  border: 1px solid #fff;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  display: block;
  height: 60px;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .care-guides .guid-btn a:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #383838;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .thumbnail-container {
  border-radius: unset;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .thumbnail-container .more-color-available span {
  border-radius: unset;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .thumbnail-container .product-flag-extra .product-flag span {
  border-radius: unset;
  font-size: 13px;
  padding: 1px;
}
@media screen and (max-width: 1400px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .thumbnail-container .product-flag-extra .product-flag span {
    padding: 0;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .product-description {
  padding: 0;
  padding-top: 17px;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .product-description .product-title a {
  color: #383838;
  font-family: "Geologica";
  font-size: 20px;
  font-style: normal;
  font-weight: 250;
  line-height: 24px; /* 120% */
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .product-description .product-title a {
    font-size: 16px;
    line-height: 20px;
    display: block;
    padding-top: 13px;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .product-description .product-title {
    text-align: left;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now {
  display: none;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping {
  padding: 0;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping {
    text-align: left !important;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping .product-price {
  color: #383838;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping .product-price {
    font-size: 13px;
    line-height: 20px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore {
  margin-top: 65px;
  margin-bottom: 106px;
}
@media screen and (max-width: 992px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore {
    margin: 40px;
  }
}
@media screen and (max-width: 575px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore {
    -ms-grid-column-align: start;
        justify-items: start;
    margin: 42px 15px 56px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .heading {
  margin-bottom: 37px;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .heading {
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .heading h2 {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 144% */
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .heading h2 {
    font-size: 24px;
    line-height: 28.2px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .text {
  row-gap: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  column-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .text {
    -ms-flex-pack: start;
        justify-content: start;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .text .explore {
  border-radius: 70px;
  border: 1px solid #383838;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .text .explore {
    -ms-flex: auto;
        flex: auto;
    text-align: center;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .text .explore a {
  padding: 25px;
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px; /* 240% */
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .text .explore a {
    font-size: 16px;
    padding: 0 15px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .text .explore:hover {
  background: #383838;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .more-to-explore .text .explore:hover a {
  color: #fff;
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .about-category {
  max-width: 1166px;
  margin: auto;
  padding-bottom: 83px;
  padding-top: 83px;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .about-category {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .about-category {
    padding-bottom: 34px;
    padding-top: 44px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .about-category h2 {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .about-category h2 {
    font-size: 24px;
    line-height: 28.2px; /* 120% */
  }
}
@media screen and (min-width: 769px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .about-category h2 {
    margin-bottom: 21px;
  }
}
#category #main-page-content #wrapper .category-blocks .category-block-outer .about-category p {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #category #main-page-content #wrapper .category-blocks .category-block-outer .about-category p {
    font-size: 13px;
    line-height: 18.2px; /* 120% */
  }
  #category #main-page-content #wrapper .category-blocks .category-block-outer .about-category p .more-text {
    display: none;
  }
  #category #main-page-content #wrapper .category-blocks .category-block-outer .about-category p .read-more {
    color: #383838;
    cursor: pointer;
    text-decoration: underline;
  }
}
@media screen and (min-width: 767px) and (max-width: 992px) {
  #category #main-page-content #wrapper .category-blocks #js-product-list .js-product-miniature-wrapper {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 991px) {
  #category #amazzing_filter #goBackBtn {
    display: -ms-flexbox;
    display: flex;
    margin-top: 52px;
    background: transparent;
    border: unset;
    color: #383838;
    font-family: "Geologica";
    font-size: 20px;
    font-style: normal;
    font-weight: 250;
    line-height: 39px; /* 177.273% */
    -ms-flex-align: center;
        align-items: center;
  }
  #category #amazzing_filter #goBackBtn::before {
    content: "";
    background-image: url("../../assets/img/filter-back.svg"); /* Replace with actual image path */
    width: 38px; /* Adjust based on the image size */
    height: 38px; /* Adjust based on the image size */
    z-index: 2; /* Ensure it's above other elements */
    margin-bottom: 5px;
  }
  #category #amazzing_filter .block_content .af-form .af_filter {
    border: unset;
  }
  #category #amazzing_filter .block_content .af-form .af_filter .af_subtitle {
    color: #383838;
    font-family: "Geologica";
    font-size: 16px;
    font-style: normal;
    font-weight: 250;
  }
  #category #amazzing_filter .block_content .af-form .af_filter .af_filter_content ul {
    padding-bottom: 110px;
    gap: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #category #amazzing_filter .block_content .af-form .af_filter .af_filter_content ul .af-checkbox-label {
    padding: 10px 20px;
    border-radius: 30px;
    background: #F8F6F4;
  }
  #category #amazzing_filter .block_content .af-form .af_filter .af_filter_content ul .af-checkbox-label .count {
    display: none;
  }
  #category #amazzing_filter .block_content .af-form .af_filter .af_filter_content .toggle-cut-off {
    padding-bottom: 100px;
  }
  #category #amazzing_filter .block_content .af-form .af_filter .af_filter_content .af-color-label .name {
    font-size: 15px;
  }
  #category #amazzing_filter .block_content .selectedFilters .clearAll {
    display: none;
  }
  #category #amazzing_filter .compact-toggle .icon-filter::before {
    color: #fff;
  }
  #category #amazzing_filter .compact-toggle .compact-toggle-text {
    color: #fff;
  }
  #category #amazzing_filter .btn-holder {
    background: #fff;
    box-shadow: 0px 4px 14px 10px rgba(0, 0, 0, 0.05);
    display: -ms-flexbox;
    display: flex;
    column-gap: 10px;
  }
  #category #amazzing_filter .btn-holder .btn {
    text-transform: capitalize;
  }
  #category #amazzing_filter .btn-holder .viewFilteredProducts, #category #amazzing_filter .btn-holder .clearAll-action {
    width: 50%;
  }
  #category #amazzing_filter .btn-holder .clearAll-action .btn {
    background: #fff;
    color: #383838;
    border: 1px solid #383838;
    font-size: 17px;
    text-align: center;
    font-family: "Geologica";
    font-style: normal;
    font-weight: 400;
    line-height: 39px;
  }
  #category #amazzing_filter .btn-holder .viewFilteredProducts {
    -ms-flex-order: 1;
        order: 1;
    background: #383838;
    font-size: 17px;
    text-align: center;
    font-family: "Geologica";
    font-style: normal;
    font-weight: 400;
    line-height: 39px;
  }
  #category #amazzing_filter .btn-holder .viewFilteredProducts .af-total-count {
    color: #fff;
  }
}
#category.category-id-32 #sd-uspblock {
  display: none !important;
}
#category #mobile-header #mobile-header-sticky {
  box-shadow: unset;
}

#category #wrapper {
  color: #464646;
}
#category #wrapper #content-wrapper .page-title {
  margin-bottom: 10px;
  padding-bottom: unset;
  font-size: 59px;
  text-align: left;
  color: #000000;
}
@media screen and (max-width: 991px) {
  #category #wrapper #content-wrapper .page-title {
    font-size: 26px;
  }
}
#category #wrapper #products {
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  #category #wrapper #products {
    padding-bottom: 15px;
  }
}
#category #wrapper .showing-pagination {
  display: none;
}
#category #wrapper .category-description-outer {
  text-align: left;
}
#category #wrapper .category-description-outer .category-description {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  text-align: left;
}
#category #wrapper .category-description-outer .category-description.special-block {
  padding-bottom: 0;
  margin-bottom: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #category #wrapper .category-description-outer .category-description.special-block {
    overflow: hidden;
  }
}
#category #wrapper .category-description-outer .category-description.special-block a {
  color: #606C6A;
}
#category #wrapper .category-description-outer .category-description.special-block a:hover {
  color: #F4896C;
}
#category #wrapper .category-description-outer .category-description:not(.special-block) {
  height: 86px;
}
#category #wrapper .category-description-outer .read-more-button {
  color: #F4896C;
  display: none;
}
@media screen and (max-width: 768px) {
  #category #wrapper .category-description-outer .read-more-button {
    display: block;
  }
}
#category #wrapper .category-description-outer .read-more-button:hover {
  color: #606C6A;
}
@media screen and (max-width: 768px) {
  #category #wrapper .category-description-outer .data {
    overflow: hidden;
  }
}
#category #wrapper #js-product-list .products {
  row-gap: 35px;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #category #wrapper #js-product-list .products {
    row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #category #wrapper #js-product-list .products {
    padding-top: 0;
    row-gap: 10px;
  }
}
#category #wrapper #js-product-list .products .product-description a:hover {
  color: #606C6A;
}
#category #wrapper #js-product-list .products .product-description .product-price-and-shipping {
  text-align: left;
}
#category #wrapper #js-product-list .products .more-color-available {
  position: absolute;
  right: 0;
  bottom: 0;
}
#category #wrapper #js-product-list .products .more-color-available span {
  background: #007B68;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  padding: 1px 11px 3px 12px;
  border-top-left-radius: 5px;
}
#category #wrapper .feature-product {
  padding: 45px 0 45px 0;
}
@media (max-width: 768px) {
  #category #wrapper .feature-product {
    padding: 15px 0 15px 0;
  }
}
@media screen and (max-width: 768px) {
  #category #wrapper .category-description-outer .category-description.special-block p {
    width: 100%;
  }
  #category #wrapper .featured-collection-section .elementor-row {
    row-gap: 30px;
    padding-top: 30px;
  }
}
#category .category-blocks .elementor {
  width: 95%;
  margin: auto;
}
#category .featured-heading-section .featured-heading-column .elementor-widget-wrap {
  max-width: 674px;
  margin: auto;
}
#category .featured-heading-section .featured-heading-column .elementor-widget-wrap .read-more-button {
  color: #383838 !important;
  text-decoration: underline;
  font-size: 13px;
}
#category .featured-heading-section .featured-heading-column .elementor-widget-wrap .heading {
  margin-bottom: 14px;
}
#category .featured-heading-section .featured-heading-column .elementor-widget-wrap .heading .elementor-heading-title span {
  color: #383838;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 46px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 93.913% */
}
@media screen and (max-width: 768px) {
  #category .featured-heading-section .featured-heading-column .elementor-widget-wrap .heading .elementor-heading-title span {
    font-size: 26px;
    line-height: 32px;
  }
}
#category .featured-heading-section .featured-heading-column .elementor-widget-wrap .text .category-description-outer {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #category .featured-heading-section .featured-heading-column .elementor-widget-wrap .text .category-description-outer {
    margin-bottom: 15px;
  }
}
#category .featured-heading-section .featured-heading-column .elementor-widget-wrap .text .elementor-text-editor p {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #category .featured-heading-section .featured-heading-column .elementor-widget-wrap .text .elementor-text-editor p {
    font-size: 13px;
    line-height: 19px;
    text-align: left;
  }
}
#category .different-seating-section .all-cube-collection-section .all-cube-collection-column .all-cube-collection {
  max-width: 275px;
  margin: auto;
}
#category .different-seating-section .all-cube-collection-section .all-cube-collection-column .all-cube-collection .btn-traditional {
  padding: 0;
  background: #383838;
}
#category .different-seating-section .all-cube-collection-section .all-cube-collection-column .all-cube-collection .btn-traditional .elementor-button-text {
  color: #fff;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px; /* 160.714% */
  display: -ms-flexbox;
  display: flex;
  height: 68px;
  padding: 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #category .different-seating-section .all-cube-collection-section .all-cube-collection-column .all-cube-collection .btn-traditional .elementor-button-text {
    height: 46px;
    font-size: 15px;
  }
}
#category .different-seating-section .all-cube-collection-section .all-cube-collection-column .all-cube-collection .btn-traditional:hover {
  background: #606C6A;
}

.category-id-32 .filter-block {
  display: none;
}
.category-id-32 .contact-banner-section .elementor-image-box-content .elementor-image-box-description a {
  color: #fff;
}
.category-id-32 .contact-banner-section .elementor-image-box-content .elementor-image-box-description a:hover {
  color: #fff;
}
.category-id-32 .feature-product .swiper-wrapper .thumbnail-container {
  padding: 0;
}
.category-id-32 .feature-product .swiper-wrapper .product-shop-now {
  display: none;
}

#category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-wrapper .elementor-image-box-img {
  overflow: hidden;
}
#category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-wrapper:hover img {
  transform: scale(1.05);
  transition: 1s ease-in-out;
}
#category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-wrapper:hover .elementor-image-box-title a {
  color: #606C6A;
}
#category .different-seating-section .elementor-widget-wrap .elementor-section .elementor-container .elementor-row .different-seating-column .image-box .elementor-image-box-wrapper img {
  aspect-ratio: unset;
  transition: transform 1s ease-in-out;
}

#category .sector-we-target-section .top-section {
  margin: 0;
}
#category .sector-we-target-section .image-col {
  padding: 0;
}
#category .sector-we-target-section .text-col {
  padding: 0;
}

.second-section .bespoke-button a {
  width: 276px;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #383838 !important;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px;
  background: #fff;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .second-section .bespoke-button a {
    width: 100%;
  }
}

.second-section .bespoke-button a:hover {
  background: #606C6A;
  color: #fff !important;
}

/* ==========================================================================
   Yarwood Leather category block (.category-block-outer.yarwood-leather)
   Finalised against the "Yarwood Leather.svg" design comp.
   Palette reuses the theme variables; the lime caption accent has no close
   match so it is defined locally.
   ========================================================================== */
.yarwood-leather {
  padding-top: 80px;
  padding-bottom: 120px;
  background-color: #383838;
  /* --- Image --- */
  /* --- Text block --- */
  /* --- Bottom panel (samples CTA) --- */
  /* --- Sample CTA modifiers --- */
  /* --- Responsive --- */
}
.yarwood-leather .image-block {
  position: relative;
}
.yarwood-leather .image-area {
  position: relative;
  z-index: 2;
  max-width: 80%;
}
.yarwood-leather .image-area::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  background: repeating-linear-gradient(to right, rgb(255, 255, 255) 0, rgb(255, 255, 255) 12px, transparent 12px, transparent 22px) top left/100% 3px no-repeat, repeating-linear-gradient(to right, rgb(255, 255, 255) 0, rgb(255, 255, 255) 12px, transparent 12px, transparent 22px) bottom left/100% 3px no-repeat, repeating-linear-gradient(to bottom, rgb(255, 255, 255) 0, rgb(255, 255, 255) 12px, transparent 12px, transparent 22px) top left/3px 100% no-repeat, repeating-linear-gradient(to bottom, rgb(255, 255, 255) 0, rgb(255, 255, 255) 12px, transparent 12px, transparent 22px) top right/3px 100% no-repeat;
}
.yarwood-leather .main-image {
  position: relative;
  overflow: hidden;
}
.yarwood-leather .main-image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1 !important;
}
.yarwood-leather .main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.yarwood-leather .image-content {
  position: absolute;
  bottom: 80px;
  left: 130px;
  z-index: 2;
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.yarwood-leather .image-content p {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: "mixta-pro";
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.yarwood-leather .image-content p::after {
  content: "";
  position: absolute;
  top: 4.8rem;
  left: 0;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 12px, transparent 12px, transparent 24px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.yarwood-leather .image-content .leather-accent {
  display: block;
  margin-top: 15px;
  font-family: "Geologica";
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: #7fbb02;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.yarwood-leather .block-custom-text h2 {
  margin-bottom: 30px;
  font-family: "mixta-pro";
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  animation: fadeUp 0.8s ease-out forwards;
}
@media screen and (max-width: 1024px) {
  .yarwood-leather .block-custom-text h2 {
    font-size: 2.5rem;
  }
}
.yarwood-leather .block-custom-text p {
  max-width: 550px;
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}
@media screen and (min-width: 992px) {
  .yarwood-leather .block-custom-text:not(.sample-info-cta) {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .yarwood-leather .block-custom-text {
    text-align: left;
  }
  .yarwood-leather .block-custom-text h2::after {
    margin: 25px auto 0;
  }
  .yarwood-leather .block-custom-text p {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 520px) {
  .yarwood-leather .block-custom-text h2 {
    font-size: 32px;
    line-height: 35px;
  }
  .yarwood-leather .block-custom-text p {
    font-size: 13px;
    line-height: 20px;
  }
}
.yarwood-leather .sample-info-cta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 40px 60px;
}
@media screen and (max-width: 1000px) {
  .yarwood-leather .sample-info-cta {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 30px;
    padding: 20px 0;
    text-align: center;
  }
}
.yarwood-leather .samples-info {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .yarwood-leather .samples-info {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 20px;
  }
}
.yarwood-leather .samples-info p {
  max-width: 700px;
  margin: 0;
  font-family: "mixta-pro";
  font-size: 1.3rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #383838;
  opacity: 1;
  animation: none;
}
.yarwood-leather .swatches {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 10px;
}
@media screen and (max-width: 1000px) {
  .yarwood-leather .swatches {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.yarwood-leather .swatch {
  width: 50px;
  height: 50px;
  margin-right: -15px;
  border-radius: 50%;
  border: 4px solid #F2EFEB;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.yarwood-leather .swatch:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  z-index: 10 !important;
}
@media screen and (max-width: 768px) {
  .yarwood-leather .swatch:last-child {
    margin-right: 0;
  }
}
.yarwood-leather .swatch-1 {
  background-color: #534b41;
  z-index: 1;
}
.yarwood-leather .swatch-2 {
  background-color: #a79c90;
  z-index: 2;
}
.yarwood-leather .swatch-3 {
  background-color: #2b3935;
  z-index: 3;
}
.yarwood-leather .samples-action {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .yarwood-leather .samples-action {
    margin-left: 0;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
  }
  .yarwood-leather .samples-action a {
    display: block;
  }
}
.yarwood-leather .btn {
  padding: 20px 45px;
  border: none;
  border-radius: 0;
  background-color: #383838;
  color: #fff;
  font-family: "Geologica";
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.yarwood-leather .btn:hover {
  background-color: #383838;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.yarwood-leather .btn:active {
  transform: translateY(1px);
}
@media screen and (max-width: 1000px) {
  .yarwood-leather .btn {
    padding: 15px 45px;
  }
}
.yarwood-leather.sample-cta {
  padding-top: 0;
  padding-bottom: 0;
  background: #F2EFEB;
}
.yarwood-leather.sample-cta.sample-cta-gray {
  background: #5f6c6a;
}
.yarwood-leather.sample-cta.sample-cta-gray .samples-info p {
  color: #fff;
}
.yarwood-leather.sample-cta.sample-cta-gray .btn {
  background-color: #fff;
  color: #383838;
}
.yarwood-leather.sample-cta.sample-cta-gray .btn:hover {
  background-color: #F2EFEB;
}
@media screen and (min-width: 1001px) and (max-width: 1500px) {
  .yarwood-leather .image-area {
    max-width: 95%;
  }
  .yarwood-leather .image-content {
    font-size: 4.5rem;
  }
  .yarwood-leather .image-content p {
    font-size: 3.2rem;
  }
  .yarwood-leather .image-content p::after {
    top: 3.8rem;
  }
  .yarwood-leather .block-custom-text h2 {
    font-size: 2.5rem;
  }
  .yarwood-leather .block-custom-text p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .yarwood-leather {
    padding-top: 0;
    padding-bottom: 30px;
  }
  .yarwood-leather .col-md-6 {
    width: 100%;
    max-width: 100%;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
  .yarwood-leather .image-area {
    max-width: 92%;
    margin-bottom: 30px;
    margin-left: -15px;
  }
  .yarwood-leather .image-content {
    font-size: 4.5rem;
  }
  .yarwood-leather .image-content p {
    font-size: 3.2rem;
  }
  .yarwood-leather .image-content p::after {
    top: 3.8rem;
  }
  .yarwood-leather .block-custom-text h2 {
    padding: 0 15px;
    margin-top: 50px;
  }
  .yarwood-leather .block-custom-text p {
    padding: 0 15px;
    max-width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .yarwood-leather .image-area {
    max-width: 90%;
  }
  .yarwood-leather .image-area::before {
    top: 35px;
    left: 35px;
    background: repeating-linear-gradient(to right, rgb(255, 255, 255) 0, rgb(255, 255, 255) 12px, transparent 12px, transparent 22px) top left/100% 2px no-repeat, repeating-linear-gradient(to right, rgb(255, 255, 255) 0, rgb(255, 255, 255) 12px, transparent 12px, transparent 22px) bottom left/100% 2px no-repeat, repeating-linear-gradient(to bottom, rgb(255, 255, 255) 0, rgb(255, 255, 255) 12px, transparent 12px, transparent 22px) top left/2px 100% no-repeat, repeating-linear-gradient(to bottom, rgb(255, 255, 255) 0, rgb(255, 255, 255) 12px, transparent 12px, transparent 22px) top right/2px 100% no-repeat;
  }
  .yarwood-leather .image-content {
    font-size: 3.5rem;
    left: 100px;
  }
  .yarwood-leather .image-content p {
    font-size: 2.2rem;
  }
  .yarwood-leather .image-content p::after {
    top: 2.8rem;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 12px, transparent 12px, transparent 24px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  .yarwood-leather .image-content p .leather-accent {
    font-size: 2.2rem;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#module-sshopsearch-search .showing-pagination .sort-by-filter {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
#module-sshopsearch-search .pagination {
  margin-bottom: 30px;
}

#product #main {
  padding-left: 0;
  padding-right: 0;
}
#product #productdaas-accordion .content .tab-pane {
  margin: 15px;
}
#product .product-info-row .sticky-top {
  z-index: 50;
}
@media screen and (min-width: 1531px) {
  #product .product-info-row .sticky-top {
    top: 180px;
  }
}
@media screen and (max-width: 768px) {
  #product .product-info-row .col-product-image {
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  #product .product-info-row .col-product-image {
    display: contents;
  }
  #product .product-info-row .col-product-image .sticky-top {
    display: contents;
  }
  #product .product-info-row .col-product-image .images-container {
    display: contents;
  }
  #product .product-info-row .col-product-image .no-gutters {
    display: contents;
  }
  #product .product-info-row .col-product-image .col-left-product-thumbs {
    -ms-flex-order: 1;
        order: 1;
  }
  #product .product-info-row .col-product-image .col-left-product-cover {
    -ms-flex-order: 0;
        order: 0;
    position: sticky;
    top: 0;
    z-index: 99;
    background: #ffffff;
  }
}
@media screen and (max-width: 576px) {
  #product .product-info-row .col-product-image .images-container {
    margin-bottom: 0;
  }
}
#product .product-info-row .col-product-image .images-container .js-qv-mask {
  position: relative;
}
@media screen and (min-width: 769px) {
  #product .product-info-row .col-product-image .images-container .js-qv-mask:hover .swiper-button-arrow {
    opacity: 1 !important;
    visibility: visible !important;
  }
  #product .product-info-row .col-product-image .images-container .js-qv-mask .swiper-button-arrow {
    width: calc(100% - 14px);
    height: 27px;
    left: 7px;
    right: auto;
  }
  #product .product-info-row .col-product-image .images-container .js-qv-mask .swiper-button-arrow:after {
    content: "";
    background: url("../../assets/img/down-angle.svg");
    width: 15px;
    height: 7px;
    display: block;
    background-size: 100% 100%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(7446%) hue-rotate(185deg) brightness(103%) contrast(109%);
  }
  #product .product-info-row .col-product-image .images-container .js-qv-mask .swiper-button-arrow.swiper-button-prev {
    top: 22px;
  }
  #product .product-info-row .col-product-image .images-container .js-qv-mask .swiper-button-arrow.swiper-button-prev:after {
    transform: rotate(180deg);
  }
  #product .product-info-row .col-product-image .images-container .js-qv-mask .swiper-button-arrow.swiper-button-next {
    bottom: 0;
    top: auto;
  }
  #product .product-info-row .col-product-image .images-container .js-qv-mask .swiper-button-arrow.swiper-button-disabled {
    opacity: 0.35 !important;
  }
}
#product .product-info-row .col-product-image .images-container .js-qv-mask #product-images-thumbs {
  position: absolute;
  overflow: hidden;
}
#product .product-info-row .col-product-image .images-container .js-qv-mask #product-images-thumbs .swiper-wrapper {
  gap: 10px;
}
#product .product-info-row .col-product-image .images-container .js-qv-mask #product-images-thumbs .swiper-wrapper .swiper-slide {
  height: auto !important;
}
#product .product-info-row .col-product-image .images-container .js-qv-mask #product-images-thumbs .swiper-wrapper .swiper-slide img {
  border: 1px solid transparent;
}
#product .product-info-row .col-product-image .images-container .js-qv-mask #product-images-thumbs .swiper-wrapper .swiper-slide img:hover {
  opacity: 1;
  border: 3px solid #606C6A;
}
#product .product-info-row .col-product-image .images-container .js-qv-mask #product-images-thumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
  opacity: 1;
  border: 1px solid #606C6A;
}
#product .product-info-row .col-product-info {
  color: #464646;
}
@media screen and (max-width: 576px) {
  #product .product-info-row .col-product-info {
    -ms-flex-order: 3;
        order: 3;
  }
}
#product .product-info-row .col-product-info .product_header_container {
  border-bottom: none;
  padding-bottom: unset;
}
#product .product-info-row .col-product-info .product_header_container h1 {
  font-size: 26px;
}
@media screen and (max-width: 576px) {
  #product .product-info-row .col-product-info .product_header_container h1 {
    margin-top: 25px;
  }
}
#product .product-info-row .col-product-info .product_header_container .product-prices {
  margin: 20px 0;
  padding-bottom: 10px;
}
#product .product-info-row .col-product-info .product_header_container .product-prices .product-reference {
  display: none;
}
#product .product-info-row .col-product-info .product_header_container .product-prices .current-price .free-delivery-message {
  display: none;
}
#product .product-info-row .col-product-info .product_header_container .product-prices .current-price .current-price-value {
  font-size: 28px;
  color: #464646;
}
#product .product-info-row .col-product-info .product_header_container .product-description h4 {
  color: #232323;
  font-size: 18px;
  font-weight: unset;
}
#product .product-info-row .col-product-info .product_header_container .sd-uspblock-product {
  padding-top: 10px;
}
#product .product-info-row .col-product-info .product_header_container .sd-uspblock-product ul {
  padding-left: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  row-gap: 10px;
  margin-left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
}
#product .product-info-row .col-product-info .product_header_container .sd-uspblock-product ul li {
  font-size: 16px;
  list-style: none;
  line-height: 34px;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 0;
}
#product .product-info-row .col-product-info .product_header_container .sd-uspblock-product ul li .img-usp img {
  width: 25px;
  height: 25px;
}
#product .product-info-row .col-product-info .product_header_container .sd-uspblock-product ul li a:hover {
  text-decoration: underline;
}
#product .product-info-row .col-product-info .product_header_container .sd-uspblock-product ul li .text span {
  font-size: 16px;
  color: #232323;
  font-weight: 700;
}
#product .product-info-row .col-product-info .product_header_container #listing-review-star {
  margin: unset;
}
@media screen and (max-width: 768px) {
  #product .product-info-row .col-product-info .product_header_container .product-short-description {
    display: none;
  }
}
#product .product-info-row .col-product-info .stock-availability {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 25px;
  color: #232323;
}
#product .product-info-row .col-product-info .stock-availability img {
  width: 25px;
  height: 40px;
}
#product .product-info-row .col-product-info .stock-availability .stock-txt {
  font-size: 16px;
}
#product .product-info-row .col-product-info .stock-availability .stock-availability-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
#product .product-info-row .col-product-info .row-product-quantity {
  display: -ms-flexbox;
  display: flex;
}
#product .product-info-row .col-product-info .row-product-quantity .col-add-qty {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 22.5%;
  column-gap: 10px;
}
#product .product-info-row .col-product-info .row-product-quantity .col-add-qty .input-group-btn-vertical {
  display: block;
}
#product .product-info-row .col-product-info .row-product-quantity .col-add-qty .input-group input {
  box-shadow: none;
  border-radius: 5px;
  height: 50px;
  text-align: center;
  color: #232323;
}
#product .product-info-row .col-product-info .row-product-quantity .col-add-qty .input-group input:focus {
  border: 1px solid #e3e3e3;
}
@media screen and (max-width: 1300px) and (min-width: 869px) {
  #product .product-info-row .col-product-info .row-product-quantity .col-add-qty {
    width: 35.5%;
  }
}
@media screen and (max-width: 868px) and (min-width: 768px) {
  #product .product-info-row .col-product-info .row-product-quantity .col-add-qty {
    width: 45.5%;
  }
}
@media screen and (max-width: 767px) and (min-width: 430px) {
  #product .product-info-row .col-product-info .row-product-quantity .col-add-qty {
    width: 35.5%;
  }
}
@media screen and (max-width: 429px) and (min-width: 350px) {
  #product .product-info-row .col-product-info .row-product-quantity .col-add-qty {
    width: 45.5%;
  }
}
#product .product-info-row .col-product-info .row-product-quantity .col-add-btn {
  -ms-flex: 1;
      flex: 1;
  padding-left: 15px;
}
#product .product-info-row .col-product-info .row-product-quantity .col-add-btn .add {
  -ms-grid-column-align: end;
      justify-items: end;
}
#product .product-info-row .col-product-info .row-product-quantity .col-add-btn .add .add-to-cart {
  width: 100%;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-transform: capitalize;
  background: #383838;
  box-shadow: none;
  display: -ms-flexbox;
  display: flex;
  max-width: 532px;
  height: 60px;
  padding: 10px 20px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: unset;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 769px) {
  #product .product-info-row .col-product-info .row-product-quantity .col-add-btn .add .add-to-cart {
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  #product .product-info-row .col-product-info .row-product-quantity .col-add-btn .add .add-to-cart {
    height: auto;
  }
}
#product .product-info-row .col-product-info .row-product-quantity .col-add-btn .add .add-to-cart:hover {
  background: #fff;
  border: 1px solid #383838;
  color: #383838;
}
#product .product-info-row .col-product-info .product-variants {
  margin: 25px 0 15px 0;
}
@media screen and (min-width: 769px) {
  #product .product-info-row .col-product-info .product-variants {
    margin: 25px 0 25px 0;
  }
}
#product .product-info-row .col-product-info .product-variants .tab-accordion {
  background: #F7F7F7;
  border-radius: 4px;
  margin-bottom: 10px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .no-after .collapsed:after {
  display: none !important;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row {
  column-gap: 10px;
  margin-bottom: 35px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row .single-variant {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 80px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row .single-variant .attribute-name {
  display: none;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row .single-variant .color {
  border-radius: 5px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .selected-variant {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 20.4px; /* 136% */
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .block-custom-content {
  margin-top: 35px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .block-custom-content .own-fabric {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .block-custom-content .own-fabric img {
  width: 25px;
  height: 25px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .block-custom-content .own-fabric .text {
  margin-left: 10px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .block-custom-content .own-fabric .text span {
  color: #383838;
  font-family: "Geologica";
  font-size: 13px;
  font-style: normal;
  font-weight: 250;
  line-height: 43.2px; /* 332.308% */
}
@media screen and (max-width: 768px) {
  #product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .block-custom-content .own-fabric .text span {
    line-height: 18px;
  }
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .block-custom-content .own-fabric .text span a {
  font-size: 13px;
  font-weight: 500;
  line-height: 43.2px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .block-custom-content .own-fabric .text span a {
    line-height: 18px;
  }
}
#product .product-info-row .col-product-info .product-variants .product-front-variants {
  background: #F7F7F7;
  border-radius: 10px;
  margin-bottom: 20px;
}
#product .product-info-row .col-product-info .product-variants .product-front-variants .attribute-front-variants {
  column-gap: 15px;
  row-gap: 15px;
  margin: 0;
  padding-bottom: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
#product .product-info-row .col-product-info .product-variants .product-front-variants .attribute-front-variants .input-container .radio-label {
  outline: none;
  width: 100%;
  text-align: left;
  background: #fff;
  -ms-flex-line-pack: center;
      align-content: center;
  border: 1px solid transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 20.4px;
  padding: 13px 18px;
}
@media screen and (max-width: 768px) {
  #product .product-info-row .col-product-info .product-variants .product-front-variants .attribute-front-variants .input-container .radio-label {
    font-size: 14px;
    font-style: normal;
    font-weight: 250;
    line-height: 20.4px; /* 145.714% */
  }
}
#product .product-info-row .col-product-info .product-variants .product-front-variants .attribute-front-variants .input-container .radio-label:after {
  content: "";
  outline: 1px solid;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
#product .product-info-row .col-product-info .product-variants .product-front-variants .attribute-front-variants .input-radio:checked + .radio-label:after {
  content: "";
  outline: 1px solid;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #383838;
  box-shadow: inset 0 0 0 2px white;
}
#product .product-info-row .col-product-info .product-variants .product-front-variants .attribute-front-variants .input-radio:checked + span, #product .product-info-row .col-product-info .product-variants .product-front-variants .attribute-front-variants :hover + span {
  border: 1px solid #383838 !important;
  border-radius: 2px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion {
  padding: 15px 26px;
}
@media screen and (max-width: 768px) {
  #product .product-info-row .col-product-info .product-variants .tab-accordion {
    padding: 15px 13px;
  }
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .title .select-acc {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .title .select-acc:after {
  content: "";
  transform: rotate(0deg);
  width: 26px !important;
  height: 26px !important;
  display: block;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .title .select-acc .variant-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 25px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .title .select-acc .variant-header .heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .title .select-acc.collapsed:after {
  margin-right: 0;
  transform: rotate(180deg);
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .title .form-control-label {
  padding: 0;
  font-size: 15px;
  color: #383838;
  font-family: "Geologica";
  font-style: normal;
  font-weight: 500;
  line-height: 20.4px; /* 136% */
  text-transform: capitalize;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .title .selected-variant {
  margin-top: 0px;
  display: block;
  font-size: 13px;
  color: #383838;
  font-family: "Geologica";
  font-style: normal;
  font-weight: 250;
  line-height: 20.4px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row {
  padding: 15px 0;
  row-gap: 15px;
}
@media screen and (min-width: 768px) {
  #product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row {
    margin: 14px 0;
  }
}
@media screen and (max-width: 768px) {
  #product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row {
    margin: 0;
  }
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row .single-variant {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  padding-left: 0;
  padding-right: 0;
  max-width: 60px;
  height: 60px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row .single-variant:has(.input-color:checked) {
  padding: 1px;
  border: 1px solid #383838;
  border-radius: 5px;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row .single-variant .input-color {
  top: 0;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  #product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row .single-variant {
    max-width: 48px;
    height: 48px;
  }
  #product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row .single-variant .input-color {
    max-width: 48px;
    height: 48px;
  }
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row .single-variant .color {
  width: 100%;
  height: 70px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% 100% !important;
  background-color: #fff;
  outline: none;
  border: unset;
  margin: 0;
}
#product .product-info-row .col-product-info .product-variants .tab-accordion .variant-options .row .single-variant .attribute-name {
  font-size: 12px;
  text-align: center;
  width: 75%;
  line-height: 16px;
}
#product .product-payment-logo {
  margin-top: 25px;
}
#product .product-payment-logo p {
  color: #464646;
  font-size: 16px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 0;
}
#product .product-payment-logo p:before {
  content: "";
  background: url("../../assets/img/lock.svg") no-repeat;
  width: 20px;
  height: 23px;
  display: block;
}
#product .product-payment-logo .logos {
  background: #f8f8f8;
  padding: 18px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 10px;
}
@media (max-width: 768px) {
  #product .product-payment-logo .logos {
    margin-top: 5px;
  }
}
#product .product-additional-info {
  border-top: none;
  padding-top: unset;
}
#product .product-information .product-usp-1 {
  display: none;
}
#product .product-tabs {
  background: #f8f8f8;
}
#product .product-tabs #products-tab-anchor {
  display: none;
}
#product .product-tabs #product-infos-tabs.nav-tabs {
  border-bottom: none;
}
#product .product-tabs #product-infos-tabs .nav-item {
  -ms-flex: 1;
      flex: 1;
  text-align: center;
  border-right: 3px solid #ffffff;
}
#product .product-tabs #product-infos-tabs .nav-item a {
  padding: 11px 35px;
  background-color: #0c5660;
  opacity: 1;
  color: #ffffff;
  letter-spacing: 1.4px;
}
#product .product-tabs #product-infos-tabs .nav-item a.active {
  color: #464646;
  background-color: #f8f8f8;
}
#product .product-tabs #product-infos-tabs .nav-item a:hover {
  background-color: #606C6A;
}
#product .product-tabs #product-infos-tabs .nav-item .nav-link {
  text-transform: uppercase;
}
#product .product-tabs #product-infos-tabs .nav-item.active {
  border-bottom: none;
}
#product .product-tabs #product-infos-tabs-content {
  padding: 35px 65px;
  color: #464646;
  font-size: 15px;
}
#product .product-tabs #product-infos-tabs-content #description .product-description .rte-content p {
  line-height: 19px;
}
#product .product-tabs #product-infos-tabs-content #product-details .data-sheet {
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #dadada;
}
#product .product-tabs #product-infos-tabs-content #product-details .data-sheet:first-child {
  border-top: 1px solid #dadada;
}
#product .product-tabs #product-infos-tabs-content #product-details .data-sheet.product-features {
  margin-top: unset;
}
#product .product-tabs #product-infos-tabs-content #product-details .data-sheet .label {
  padding: 12px 5px;
  -ms-flex: 1;
      flex: 1;
}
#product .product-tabs #product-infos-tabs-content #product-details .data-sheet .data {
  padding: 12px 5px;
  -ms-flex: 1;
      flex: 1;
}
#product .nav-tabs .nav-item {
  margin-right: unset;
}
#product .nav-tabs .nav-link.active, #product .nav-tabs .nav-link:hover, #product .nav-tabs .nav-link:focus {
  border-bottom: none;
}
#product .product-page-banner {
  margin-bottom: 45px;
}
#product .product-page-banner h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 15px 0;
}
#product .product-page-banner p {
  font-size: 17px;
  letter-spacing: 1px;
}
#product .product-page-banner .own-fabrics {
  display: -ms-flexbox;
  display: flex;
  background: #0C5660;
  padding: 55px 65px;
  border-radius: 5px;
}
#product .product-page-banner .own-fabrics .fabric-image {
  padding-right: 15px;
}
#product .product-page-banner .own-fabrics .fabric-image img {
  height: auto;
  width: 104px;
  min-width: 90px;
  max-width: 100%;
  aspect-ratio: 90/98;
}
#product .product-page-banner .own-fabrics .fabric-content {
  color: #ffffff;
}
#product .product-page-banner .own-fabrics .fabric-content p {
  width: 90%;
  letter-spacing: 1px;
}
#product .product-page-banner .own-fabrics .fabric-content p a {
  color: #F4896C;
  font-weight: 700;
  text-decoration: underline;
}
#product .product-page-banner .hire-cubes {
  background: #f8f8f8 url("../../assets/img/rainbow-cubes.png") no-repeat right 0 bottom 0;
  padding: 50px 65px;
  border-radius: 5px;
  min-height: 250px;
}
#product .product-page-banner .hire-cubes h2 {
  color: #464646;
}
#product .product-page-banner .hire-cubes .hire-cube-content {
  display: -ms-flexbox;
  display: flex;
}
#product .product-page-banner .hire-cubes .hire-cube-content p {
  color: #464646;
  letter-spacing: 1px;
}
#product .product-page-banner .hire-cubes .hire-cube-content p a {
  color: #F4896C;
  text-decoration: underline;
  font-weight: 700;
}
#product .product-page-banner .hire-cubes .hire-cube-content p a:hover {
  color: #606C6A;
}
@media (max-width: 768px) {
  #product .product-page-banner {
    padding-right: 15px;
    padding-left: 15px;
  }
}
#product .reviews.row .reviewsinner {
  margin: 30px 0;
}
@media screen and (min-width: 991px) {
  #product .reviews.row .reviewsinner {
    margin: 50px 0;
  }
}
#product .reviews #reviewsio-product-review {
  color: #464646;
  background: #f8f8f8;
  padding: 20px 65px;
}
#product .reviews #reviewsio-product-review h2.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  font-family: "mixta-pro";
  margin-top: 20px;
}
#product .reviews .review-section-inner {
  color: #464646;
}
#product .reviews .review-section-inner .review-content .reviewer-name {
  padding: 0;
}
#product .reviews .review-section-inner .review-content .review-slide {
  padding-bottom: 15px;
  border-bottom: 1px solid #dadada;
  border-radius: 0;
  margin-bottom: 22px;
  padding-left: 0;
  margin-left: 15px;
}
#product .reviews .review-section-inner .review-content .review-slide .review-stars .studio-review-star {
  font-size: 14px;
}
#product .reviews .review-section-inner .review-content .review-slide p {
  color: #464646;
  padding-top: 5px;
  margin-bottom: 0;
}
#product .reviews .review-section-inner .review-content .review-slide .review-user-name p {
  font-weight: 700;
}
#product .reviews .review-section-inner .all-reviews {
  margin: 0 0 30px 0;
  color: #464646;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  border-radius: 5px;
  text-decoration: underline;
  cursor: pointer;
}
#product .reviews .review-section-inner .all-reviews:hover {
  color: #606C6A;
}
#product .reviews .review-section-inner .review-io-icon a img {
  width: 140px;
  height: 22px;
  margin-top: 18px;
}
#product .all-reviews-modal .modal-body h4 {
  font-size: 15px;
}
#product .crossselling-products .products .product-description .product-price-and-shipping {
  text-align: left;
}
@media screen and (max-width: 768px) {
  #product .reviews #reviewsio-product-review {
    padding: 20px 20px;
  }
  #product .reviews #reviewsio-product-review h2.section-title {
    text-align: center !important;
    font-size: 26px;
  }
  #product .reviews #reviewsio-product-review .review-section-inner .review-content {
    font-size: 17px;
  }
  #product .product-info-row .col-product-info .product_header_container h1 {
    font-size: 22px;
  }
  #product .product-info-row .col-product-info .product_header_container .product-reference {
    display: none;
  }
  #product .product-info-row .col-product-info .product_header_container .product-usp-1 {
    display: none;
  }
  #product .product-info-row .col-product-info .col-add-qty label.qty-name {
    display: block;
  }
  #product .product-info-row .col-product-info .product-information .product-usp-1 {
    clear: both;
    margin-top: 10px;
    display: block;
  }
  #product .product-info-row .col-product-info .product-information .product-usp-1 .sd-uspblock-product ul li .img-usp img {
    height: 25px;
    width: 25px;
  }
  #product .product-info-row .col-product-info .product-information .product-usp-1 .sd-uspblock-product ul li .text span {
    font-size: 13px;
    font-weight: 700;
  }
  #product .product-info-row .col-product-info .product-information .product-usp-1 .sd-uspblock-product ul li .text span:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #product .product-info-row .col-product-info .product-information .product-usp-1 {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  #product .product-tabs #product-infos-tabs-content {
    padding: 15px;
  }
  #product .product-page-banner .row {
    row-gap: 20px;
  }
  #product .product-page-banner .row .col-sm-12 {
    padding-right: unset;
    padding-left: unset;
  }
  #product .product-page-banner .own-fabrics {
    display: block;
    padding: 20px 20px;
  }
  #product .product-page-banner .own-fabrics .fabric-image {
    text-align: center;
  }
  #product .product-page-banner .own-fabrics .fabric-image img {
    min-width: 55px;
    max-width: 55px;
    aspect-ratio: 1/1;
  }
  #product .product-page-banner .own-fabrics .fabric-content h2 {
    font-size: 21px;
    text-align: center;
  }
  #product .product-page-banner .own-fabrics .fabric-content p {
    text-align: center;
    font-size: 16px;
  }
  #product .product-page-banner .hire-cubes {
    padding: 30px 30px 215px 30px;
  }
  #product .product-page-banner .hire-cubes h2 {
    font-size: 21px;
    text-align: center;
  }
  #product .product-page-banner .hire-cubes .hire-cube-content {
    text-align: center;
  }
  #product .product-page-banner .hire-cubes .hire-cube-content p {
    font-size: 16px;
    width: 100%;
  }
}
#product .feature-product {
  margin: 50px 0 50px;
}
#product .block-custom-content.feature-product {
  padding-top: 0;
  padding-bottom: 0;
}
#product .block-custom-content.feature-product .crossselling-products.feature-product {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #product .crossselling-products.feature-product {
    margin-bottom: 0;
  }
  #product .crossselling-products.feature-product .products {
    position: relative;
  }
  #product .crossselling-products.feature-product .swiper-button-next, #product .crossselling-products.feature-product .swiper-button-prev {
    border-radius: 50%;
    height: 35px;
    width: 35px;
    top: 24%;
    background: #F2F2F2;
    color: #464646;
  }
  #product .crossselling-products.feature-product .swiper-button-next:after, #product .crossselling-products.feature-product .swiper-button-prev:after {
    font-size: 20px !important;
  }
  #product .crossselling-products.feature-product .swiper-button-next {
    right: 0;
  }
  #product .crossselling-products.feature-product .swiper-button-prev {
    left: 0;
  }
  #product .crossselling-products.feature-product .swiper-slide {
    padding: 0 !important;
  }
  #product .expander {
    display: none;
  }
}
#product .crossselling-products-modal .products .swiper-wrapper {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#product #product-infos-accordion-mobile {
  margin-bottom: 2rem;
}
#product #product-infos-accordion-mobile .nav-tabs .nav-link {
  border: none;
  border-bottom: none;
  background: #f8f8f8;
  padding: 11px;
  font-size: 16px;
  text-transform: capitalize !important;
  font-weight: unset;
  line-height: 22px;
  padding-right: 20px;
  color: #464646;
  margin-bottom: 0;
}
#product #product-infos-accordion-mobile .nav-tabs .nav-link i:before {
  font-size: 25px;
}
#product #product-infos-accordion-mobile .tab-content {
  padding: 15px;
}
#product .breadcrumb .col {
  padding-left: 0;
}
@media (max-width: 768px) {
  #product .breadcrumb {
    display: none;
  }
}
#product #displayProductListReviews_product .rating-txt {
  font-size: 16px;
  color: #818181;
  line-height: 19px;
}
#product .attachment {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
#product .attachment .download-guide {
  display: none;
}
#product .attachment .guide-title {
  color: #337079;
  text-decoration: underline;
  font-size: 20px;
  margin-bottom: 15px;
}
#product .attachment .guide-desc {
  margin-top: 10px;
  font-size: 16px;
  color: #000000;
}
#product .attachment:before {
  content: "";
  background: url("../../assets/img/guide-download.svg") no-repeat;
  width: 30px;
  height: 30px;
  display: block;
  background-size: 100% 100%;
}
#product #mobile-header #mobile-header-sticky {
  box-shadow: unset;
}
#product .has-discount div[itemprop=offers] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
#product #sd-uspblock-product ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #product #sd-uspblock-product ul {
    -ms-flex-pack: center;
        justify-content: center;
    gap: 10px;
  }
}
#product #sd-uspblock-product ul .img-usp img {
  width: 50px;
  height: 50px;
}
#product #growls {
  z-index: 9999999 !important;
}
#product .b2b-section {
  margin-top: 35px;
}
#product .b2b-section .reverse {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
#product .b2b-section .reverse .text-block {
  padding-left: 165px;
}
@media screen and (max-width: 1350px) and (min-width: 991px) {
  #product .b2b-section .reverse .text-block {
    padding-left: 100px;
  }
}
@media screen and (max-width: 1350px) and (min-width: 991px) {
  #product .b2b-section .reverse .img-block .img {
    padding-left: 75px;
  }
}

#product-modal #thumbnails .product-images {
  opacity: 1;
}
#product-modal .modal-content {
  background: rgba(255, 255, 255, 0);
}
#product-modal .modal-header {
  background: #fff;
}
#product-modal .modal-body {
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
}
#product-modal .modal-body .easyzoom-modal {
  background: #ffffff;
  width: 50%;
  -ms-flex: 0 0 80%;
      flex: 0 0 80%;
}
@media (max-width: 768px) {
  #product-modal .modal-body .easyzoom-modal {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (min-width: 767.99px) {
  #product-modal .modal-body .js-modal-mask .swiper-wrapper {
    display: block;
  }
}
@media (min-width: 767.99px) {
  #product-modal .modal-body .js-modal-mask .swiper-wrapper .thumb-container img {
    min-width: 100px;
  }
}
#product-modal .modal-body .js-modal-mask .swiper-wrapper .swiper-slide img {
  opacity: 0.5;
  border: 3px solid transparent;
}
#product-modal .modal-body .js-modal-mask .swiper-wrapper .swiper-slide img:hover {
  opacity: 1;
  border: 3px solid #1aaa8e;
}
#product-modal .modal-body .js-modal-mask .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
  opacity: 1;
  border: 1px solid #606C6A;
}

#product #main-page-content {
  overflow: hidden;
}
#product #main-page-content #wrapper {
  overflow: visible;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main:has(#main-product-wrapper) {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row {
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .sticky-top {
    top: auto;
  }
}
@media screen and (min-width: 769px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-thumbs {
    padding-right: 10px;
    max-width: 10.66%;
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-thumbs {
    min-height: 100px;
    margin-top: 0;
  }
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-thumbs .product-images {
    margin: 0;
  }
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-thumbs .swiper-wrapper .swiper-slide {
    width: -moz-max-content !important;
    width: max-content !important;
  }
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-thumbs .swiper-wrapper .swiper-slide .thumb-container {
    padding: 0;
  }
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-thumbs .swiper-wrapper .swiper-slide .thumb-container img {
    width: 92px;
    height: 92px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-thumbs #product-images-thumbs {
  height: 100%;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-thumbs #product-images-thumbs {
    padding: 0 15px;
  }
}
@media screen and (min-width: 769px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover:not(:has(.swiper-button-lock)) {
    max-width: 89.33%;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large {
  background: #EBE9EA;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 35px;
  margin-right: 35px;
  width: 100%;
  z-index: 99;
  max-width: 260px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content {
    margin-bottom: 25px;
    margin-left: 25px;
    left: 0;
    max-width: 186px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content .get-fabric {
  cursor: pointer;
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content .get-fabric {
    height: 50px;
  }
}
@media screen and (min-width: 769px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content .get-fabric {
    height: 60px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content .get-fabric .text {
  color: #383838;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px; /* 160.714% */
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
  -ms-flex-align: center;
      align-items: center;
  background: #fff;
  height: 60px;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content .get-fabric .text {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content .get-fabric .text {
    height: 50px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content .get-fabric .text img {
  width: 24px;
  height: 24px;
  margin: 0;
  transition: filter ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content .get-fabric .text img {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content .get-fabric .text {
    height: 32px;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .block-custom-content .get-fabric .text:hover {
  background: #383838;
  color: #fff;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .swiper-wrapper .expander {
  display: none;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .swiper-button-lock {
  display: none !important;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .swiper-button-next {
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .swiper-button-next {
    width: 32px;
    height: 32px;
    padding: 0;
    left: auto;
  }
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .swiper-button-next:after {
    font-size: 11px !important;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .swiper-button-next:after {
  content: "";
  background-image: url("../../assets/img/arrow-right.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 16px; /* Adjust based on the image size */
  height: 16px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .swiper-button-prev {
  visibility: visible !important;
  opacity: 1 !important;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .swiper-button-prev:after {
  content: "";
  background-image: url("../../assets/img/arrow-right.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 16px; /* Adjust based on the image size */
  height: 16px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
  rotate: 180deg;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-image .images-container .row .col-left-product-cover .product-cover #product-images-large .product-lmage-large img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info {
    max-width: 676px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product_header_container .page-title span {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
  line-height: 39px; /* 102.632% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product_header_container .page-title span {
    font-size: 26px;
    line-height: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product_header_container .page-title span {
    font-size: 28px;
    line-height: 30px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product_header_container .product-short-description .product-description h4 {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product_header_container .product-short-description .product-description h4 {
    font-size: 13px;
    line-height: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product_header_container .product-short-description .product-description h4 {
    font-size: 14px;
    line-height: 20px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information form .stock-availability {
  display: none;
}
@media screen and (min-width: 1020px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information form .product-add-to-cart {
    position: sticky;
    bottom: 0;
    background: #fff;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information form .product-add-to-cart .product-quantity {
  -ms-flex-align: center;
      align-items: center;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information form .product-add-to-cart .product-quantity .product_p_price_container {
  border: unset;
  margin: 0;
  padding: 0;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information form .product-add-to-cart .product-quantity .product_p_price_container .product-prices .current-price span {
  color: #383838;
  font-family: "Geologica";
  font-size: 32px;
  line-height: 34.4px; /* 107.5% */
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information form .product-add-to-cart .product-quantity .product_p_price_container .product-prices .current-price span {
    font-size: 24px;
    line-height: 34px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information form .block-custom-content .tag-line p {
  color: #3F8136;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 27.5px; /* 183.333% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information form .block-custom-content .tag-line p {
    font-size: 14px;
    text-align: center;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions {
  margin: 45px 0 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions {
    margin: 45px 0 0;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-width, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-depth, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-height {
  -ms-grid-column-align: center;
      justify-items: center;
}
@media screen and (min-width: 769px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-width, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-depth, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-height {
    display: -ms-flexbox;
    display: flex;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-width .text, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-depth .text, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-height .text {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-width .text span, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-depth .text span, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-height .text span {
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-width .text, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-depth .text, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-height .text {
    font-size: 13px;
    margin-top: 10px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-width .img {
  display: -ms-flexbox;
  display: flex;
  margin-right: 60px;
  height: 45px;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-width .img:before {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/width.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 46px;
  height: 46px;
  z-index: 2;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-width .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-depth .img {
  display: -ms-flexbox;
  display: flex;
  margin-right: 60px;
  height: 45px;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-depth .img:before {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/depth.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 46px;
  height: 46px;
  z-index: 2;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-depth .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-height .img {
  display: -ms-flexbox;
  display: flex;
  margin-right: 60px;
  height: 45px;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-height .img:before {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/height.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 46px;
  height: 46px;
  z-index: 2;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .formatted-dimensions .dimension-item-height .text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #products-tab-anchor {
  display: none;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card {
  border-bottom: 1px solid #E8E8E8;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card#product-details-tab-card {
  display: none;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title {
  border: unset;
}
@media screen and (min-width: 769px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title {
    padding: 0 15px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title a {
  color: #383838;
  font-family: "Geologica";
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.4px; /* 102.105% */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title a {
    font-size: 16px;
    padding: 15px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title a {
    font-size: 17px;
    padding: 15px 0;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title a .fa-angle-down, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title a .fa-angle-up {
  display: none;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title a:after {
  content: "";
  background-image: url("../../assets/img/product-arrow-up.svg");
  width: 28px;
  height: 28px;
  display: block;
  transition: tranform ease-in-out 300ms;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title a.collapsed:after {
  background-image: url("../../assets/img/product-arrow-up.svg");
  background-repeat: no-repeat;
  transform: rotate(-180deg);
  transition: tranform ease-in-out 300ms;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .productdaas-accordion-details, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card #productdaas-accordion-attachments {
  margin: 10px;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .content {
  border: unset;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 576px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .content {
    padding: 0;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .content .rte-content {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 250;
  line-height: 27.5px; /* 183.333% */
  padding: 0;
  padding-bottom: 20px;
  display: block !important;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .content .product-manufacturer .label, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .content .product-reference .label {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 27.5px; /* 183.333% */
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .content .product-manufacturer .data, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .content .product-reference .data {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 27.5px; /* 183.333% */
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .care-guides img {
  width: 50px;
  height: 50px;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information .care-guides a {
  font-size: 15px;
  font-weight: 250;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  column-gap: 149px;
  margin: 59px 0;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section {
    margin: 25px 0;
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section {
    margin-bottom: 30px;
    margin-top: 30px;
    column-gap: 50px;
  }
}
@media screen and (min-width: 1170px) and (max-width: 1280px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section {
    column-gap: 100px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section .usp-block:nth-of-type(3):hover img {
  filter: unset;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section .usp-block {
  -ms-flex-line-pack: center;
      align-content: center;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section .usp-block:hover a {
  text-decoration: underline;
  color: #606C6A;
  cursor: pointer;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section .usp-block:hover img {
  filter: brightness(0) saturate(100%) invert(41%) sepia(5%) saturate(788%) hue-rotate(120deg) brightness(95%) contrast(83%);
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section .usp-block a {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 15.57px;
  font-style: normal;
  font-weight: 400;
  line-height: 40.404px; /* 259.495% */
  margin-left: 5px;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section .usp-block a:hover {
  text-decoration: underline;
  color: #606C6A;
  cursor: pointer;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .usp-section .usp-block img:hover {
  filter: brightness(0) saturate(100%) invert(41%) sepia(5%) saturate(788%) hue-rotate(120deg) brightness(95%) contrast(83%);
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product {
  margin-bottom: 62px;
  overflow: hidden;
  position: relative;
  margin-top: 86px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product {
    margin-right: -15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product {
    margin-top: 49px;
    margin-bottom: 39px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product h2 {
  text-align: left;
  color: #383838;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
  padding: 0;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product h2 {
    font-size: 24px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container {
  padding: 15px;
  width: 100%;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-wrapper {
  display: -ms-flexbox;
  display: flex;
  transition-timing-function: ease-in-out !important;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-wrapper .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-wrapper .swiper-slide {
    max-width: 25%;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-prev, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-next {
  background: transparent;
  width: 46px;
  top: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-prev, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-next {
    width: 32px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-prev:after, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-next:after {
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-prev:after, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-next:after {
    font-size: 11px !important;
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-prev, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-next {
    width: 32px;
    height: 32px;
    padding: 0;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-next:after {
  content: "";
  background-image: url("../../assets/img/white-bg-arrow-right.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 46px; /* Adjust based on the image size */
  height: 46px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-prev {
  left: auto;
  right: 80px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-prev {
    right: 50px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-prev:after {
  content: "";
  background-image: url("../../assets/img/white-bg-arrow-left.svg"); /* Replace with actual image path */
  background-size: contain; /* Ensure the image scales properly */
  background-repeat: no-repeat;
  background-position: center;
  width: 46px; /* Adjust based on the image size */
  height: 46px; /* Adjust based on the image size */
  z-index: 2; /* Ensure it's above other elements */
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row {
  gap: unset;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row {
    padding: 10px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper {
  padding: 0;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature:hover .thumbnail-container {
  background: #f8f8f8;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature:hover .product-title a {
  color: #606C6A !important;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .thumbnail-container {
  background: #ebe9ea;
  border: unset;
  border-radius: unset;
  padding: 0;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .thumbnail-container a .product-thumbnail-first {
  width: 100%;
  aspect-ratio: 425/400;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .thumbnail-container .more-color-available {
  width: 100%;
  background: #007B68;
  text-align: center;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .thumbnail-container .more-color-available span {
  border-radius: unset;
  padding: 0;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .product-description .product-title.h3 {
  line-height: 0;
  margin-bottom: 0;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .product-description .product-title a {
  color: #383838;
  font-family: "Geologica";
  font-size: 20px;
  font-style: normal;
  font-weight: 250;
  line-height: 24px; /* 120% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .product-description .product-title a {
    font-size: 16px;
    display: block;
    padding-top: 13px;
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .product-description .product-title {
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping {
    text-align: left !important;
    margin-top: -5px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping .product-price strong {
  color: #383838;
  font-family: "Geologica";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .product-description .product-price-and-shipping .product-price strong {
    font-size: 13px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .js-product-miniature-wrapper .product-miniature .product-description .product-shop-now {
  display: none;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .col-md-12 .homecustomtext h2 {
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  color: #383838;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .row .col-md-12 .homecustomtext h2 {
    font-size: 24px;
    line-height: 117%;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list {
  background: #F2EFEB;
  margin-left: calc(50% - 50vw + 3.5px);
  margin-right: calc(50% - 50vw + 3.5px);
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row {
  max-width: 1160px;
  margin: auto;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 .anchor-desc {
  padding-top: 69px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 .anchor-desc {
    padding-top: 14px;
    margin: 0 !important;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 .anchor-desc .text-center {
  color: #383838;
  text-align: left !important;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 .anchor-desc .text-center {
    font-size: 24px;
    line-height: 28.2px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .title .section-title span {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 33.2px; /* 132.8% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .title .section-title span {
    font-size: 19px;
    line-height: 23.2px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content {
  max-width: 1018px;
  margin-bottom: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content {
    padding-right: 20px;
    margin-top: 0px;
  }
}
@media screen and (min-width: 769px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content {
    padding-right: 100px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p {
    font-size: 13px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p span {
  font-weight: 300 !important;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 #accordion1 .tab-accordion .faq-content p a {
  font-weight: 300 !important;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 .expert-team {
  display: -ms-flexbox;
  display: flex;
  color: #606C6A;
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 33.2px; /* 184.444% */
  margin-top: 57px;
  margin-bottom: 67px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 .expert-team {
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 31px;
    margin-bottom: 30px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content {
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content {
    margin-left: 0;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content p a {
  text-decoration: underline;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .sd-anchor-list .sticky-block-row .col-12 .expert-team .block-custom-content p a {
    font-size: 13px;
    line-height: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks:has(.why-love-it) {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it {
  background: #F8F6F4;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 0;
}
@media screen and (min-width: 1551px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it {
    padding: 78px 0;
  }
}
@media screen and (max-width: 991px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it {
    display: block;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .img-block {
    -ms-grid-column-align: end;
        justify-items: end;
  }
}
@media screen and (max-width: 991px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .img-block {
    padding: 0;
    max-width: 100%;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .img-block .img {
  padding-right: 70px;
  padding-left: 149px;
}
@media screen and (max-width: 1350px) and (min-width: 991px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .img-block .img {
    padding-left: 65px;
  }
}
@media screen and (max-width: 991px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .img-block .img {
    padding: 0;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .img-block .img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
@media screen and (min-width: 1551px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .img-block .img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100% !important;
  }
}
@media screen and (max-width: 991px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .img-block .img img {
    height: 100%;
    max-height: 550px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block {
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (max-width: 991px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block {
    padding: 35px 15px;
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text {
    max-width: 574px;
    margin-right: auto;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text h2 {
  color: #383838;
  font-family: "mixta-pro";
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 19.4px; /* 40.417% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text h2 {
    font-size: 24px;
    line-height: 28.2px; /* 117.5% */
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1400px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text h2 {
    font-size: 38px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text p {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
  margin-top: 38px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text p {
    font-size: 13px;
    margin-top: 13px;
    margin-bottom: 5px;
    font-weight: 300;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text p {
    font-size: 14px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text ul {
    margin-top: 15px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text ul li {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 37.5px; /* 250% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text ul li {
    font-size: 13px;
    line-height: 26.5px;
    font-weight: 400;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .product-blocks .why-love-it .text-block .text ul li {
    font-size: 14px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section {
  padding-right: 15px;
  padding-left: 15px;
  margin-left: calc(50% - 50vw + 3.5px);
  margin-right: calc(50% - 50vw + 3.5px);
  background: #383838;
  text-align: center;
  padding-top: 75px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section {
    padding-top: 35px;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section .text h2 {
  color: #fff;
  text-align: center;
  font-family: "mixta-pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px; /* 120% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section .text h2 {
    font-size: 24px;
    line-height: 28.2px;
    max-width: 178px;
    margin: auto;
    margin-bottom: 20px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section .text p {
  color: #fff;
  text-align: center;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px; /* 150% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section .text p {
    font-size: 15px;
    line-height: 22.5px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section .fabric-btn {
  max-width: 330px;
  margin: auto;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-top: 27px;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section .fabric-btn a {
  color: #fff;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.5px; /* 160.714% */
  padding: 10px;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 60px;
  border: 1px solid #FEE;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  column-gap: 10px;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section .fabric-btn a:before {
  content: "";
  background-image: url("../../assets/img/fabric-swatches.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  z-index: 2;
  transition: filter ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section .fabric-btn a {
    height: 60px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section .fabric-btn a:hover {
  background: #fff;
  color: #383838;
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .guide-you-section .fabric-btn a:hover:before {
  filter: brightness(0) saturate(100%) invert(19%) sepia(8%) saturate(0%) hue-rotate(211deg) brightness(107%) contrast(95%);
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore {
  margin-top: 73px;
  margin-bottom: 95px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore {
    margin-top: 42px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 575px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore {
    -ms-grid-column-align: start;
        justify-items: start;
  }
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .explore {
    -ms-flex: auto;
        flex: auto;
    text-align: center;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .heading {
  margin-bottom: 37px;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .heading {
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .heading h2 {
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px; /* 144% */
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .heading h2 {
    font-size: 20px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .text {
  row-gap: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  column-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .text {
    -ms-flex-pack: start;
        justify-content: start;
    row-gap: 12px;
    column-gap: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .text {
    row-gap: 30px;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .text .explore a {
  padding: 16px 32px;
  color: #383838;
  text-align: center;
  font-family: "Geologica";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px; /* 240% */
  border-radius: 70px;
  border: 1px solid #383838;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .text .explore a {
    font-size: 16px;
    padding: 9px 15px;
    width: 100%;
    display: block;
    line-height: normal;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .block-custom-content .more-to-explore .text .explore a:hover {
  background: #383838;
  color: #fff;
}

#authentication {
  color: #464646;
}
#authentication .login-form .forgot-password a {
  color: #606C6A;
}
#authentication .login-form .forgot-password a:hover {
  color: #383838;
}
#authentication .no-account a {
  color: #606C6A;
}
#authentication .no-account a:hover {
  color: #606C6A;
}

#password #back-to-login {
  color: #F4896C;
}
#password #back-to-login:hover {
  color: #606C6A;
}

#registration .register-form p {
  color: #464646;
}
#registration .register-form p a {
  color: #F4896C;
}
#registration .register-form p a:hover {
  color: #606C6A;
}

#my-account .my-account-side-links .link-item {
  color: #464646;
}

@media screen and (min-width: 769px) {
  #cart .home-usp-section {
    background: #F5F5F5;
    border: none;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  #cart .home-usp-section #sd-uspblock {
    width: 97%;
    max-width: 1791px;
    padding: 0 15px;
    margin: 0 auto;
  }
}
#cart h1.page-title {
  margin-top: 48px;
  text-align: center;
  color: #000;
  font-family: "mixta-pro";
  font-size: 36px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.26px;
  border: none;
  padding-bottom: 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  #cart h1.page-title {
    margin-top: 1.4em;
    margin-bottom: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  #cart h1.page-title {
    font-size: calc(19px + 0.390625vw);
  }
}
@media screen and (min-width: 992px) {
  #cart .mobile-checkout-btn {
    display: none;
  }
}
#cart .mobile-checkout-btn .btn-primary {
  color: #fff !important;
  text-align: center;
  font-size: 16px;
  line-height: normal;
  font-weight: 900;
  background: #606C6A !important;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 44px;
}
@media screen and (min-width: 769px) {
  #cart .mobile-checkout-btn .btn-primary {
    font-size: 20px;
  }
}
#cart .mobile-checkout-btn .btn-primary:after {
  content: unset;
}
#cart .mobile-checkout-btn .btn-primary:hover {
  opacity: 0.9;
}
#cart .alert {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 768px) {
  #cart .alert {
    margin-bottom: 20px;
  }
}
#cart .cart-grid {
  max-width: 1484px;
  margin-top: 50px;
  row-gap: 40px;
}
@media screen and (min-width: 1500px) {
  #cart .cart-grid {
    margin: 50px auto 6.6vmax;
  }
}
@media screen and (max-width: 991px) {
  #cart .cart-grid {
    row-gap: 0;
  }
}
@media screen and (max-width: 768px) {
  #cart .cart-grid {
    margin-top: 30px;
  }
}
@media screen and (min-width: 992px) {
  #cart .cart-grid .cart-grid-body {
    -ms-flex: 0 0 60%;
        flex: 0 0 60%;
    max-width: 60%;
    padding: 0 10px;
  }
}
@media screen and (min-width: 992px) {
  #cart .cart-grid .cart-grid-right {
    -ms-flex: 0 0 40%;
        flex: 0 0 40%;
    max-width: 40%;
  }
}
@media screen and (min-width: 769px) {
  #cart .cart-grid .cart-grid-right {
    padding: 0 10px;
  }
}
#cart .cart-grid .product-remove {
  margin-top: 12px;
}
#cart .cart-grid .product-remove a {
  color: #383838;
  font-size: 14px;
  line-height: normal;
  column-gap: 7px;
}
#cart .cart-grid .product-price-section {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .product-price-section {
    margin-bottom: 8px;
  }
}
#cart .cart-grid .product-price-section .value {
  color: #383838;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.32px;
}
@media (max-width: 768px) {
  #cart .cart-grid .product-price-section .value {
    font-size: 14px;
  }
}
#cart .cart-grid .product-price-section .product-discount .regular-price {
  color: #CACACA !important;
  font-family: "Geologica";
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.14px;
}
@media (max-width: 768px) {
  #cart .cart-grid .product-price-section .product-discount .regular-price {
    font-size: 11px;
  }
}
#cart .cart-grid .product-price-section .discount {
  padding-left: 0;
  background: transparent;
  color: #8D8D8D;
  font-family: "Geologica";
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.14px;
}
@media (max-width: 768px) {
  #cart .cart-grid .product-price-section .discount {
    font-size: 11px;
  }
}
#cart .cart-grid .actions-col {
  margin-top: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  column-gap: 17px;
}
#cart .cart-grid .actions-col .qty {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  border-radius: 6px;
  border: 1px solid #E4E8EC;
}
#cart .cart-grid .actions-col .qty .input-group {
  height: 34px;
  min-height: 34px;
  border: none;
}
#cart .cart-grid .actions-col .qty .input-group input {
  padding: 5px 10px 0;
  font-size: 13px;
  border: none;
}
#cart .cart-grid .actions-col .qty .input-group .input-group-btn-vertical {
  display: block !important;
  padding-right: 5px;
}
#cart .cart-grid .actions-col .qty .input-group .input-group-btn-vertical button {
  border: none;
  height: 45%;
  background: transparent !important;
  padding: 0 10px;
}
#cart .cart-grid .actions-col .qty .input-group .input-group-btn-vertical button i {
  color: #383838;
}
#cart .cart-grid .actions-col .qty .qty-text {
  position: absolute;
  top: -5px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  color: var(--Dark-Blue, #313943);
  font-family: "Geologica";
  font-size: 10px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.1px;
  width: 35px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  #cart .cart-grid .actions-col .price-total {
    display: none;
  }
}
#cart .cart-grid .actions-col .product-remove {
  margin-top: 0;
  margin-left: auto;
}
#cart .cart-grid .actions-col .product-remove a {
  color: #383838;
  font-family: "Geologica";
  font-size: 13px;
  line-height: normal;
  column-gap: 8px;
  letter-spacing: 0.13px;
  font-weight: 600;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-align: center;
      align-items: center;
}
#cart .cart-grid .actions-col .product-remove a i {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .actions-col .product-remove a span {
    display: none;
  }
}
#cart .cart-grid .cart-container {
  margin-bottom: 20px;
  border: 2px solid #EFEFEF;
  padding: 28px 16px 22px;
}
@media screen and (min-width: 992px) and (max-width: 1024px) {
  #cart .cart-grid .cart-container {
    border-radius: 10px;
  }
}
@media screen and (min-width: 1025px) {
  #cart .cart-grid .cart-container {
    padding: 40px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1360px) {
  #cart .cart-grid .cart-container {
    padding: 30px;
  }
}
#cart .cart-grid .cart-container .cart-item-header {
  border-bottom: 1px solid #EFEFEF;
  border-top: 0;
  display: none;
}
#cart .cart-grid .cart-container .cart-item-header .heading-title {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
  margin-right: 30px;
}
#cart .cart-grid .cart-container .cart-items {
  margin-bottom: 0;
}
#cart .cart-grid .cart-container .cart-items .cart-item {
  border-bottom: none;
  padding: 0 !important;
}
#cart .cart-grid .cart-container .cart-items .cart-item:not(:last-child) .product-line-grid {
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 22px !important;
  margin-bottom: 22px !important;
}
@media (max-width: 768px) {
  #cart .cart-grid .cart-container .cart-items .cart-item .product-line-grid {
    -ms-flex-pack: end;
        justify-content: end;
    -ms-flex-align: end;
        align-items: end;
    row-gap: 30px;
  }
}
#cart .cart-grid .cart-container .unit-price {
  font-weight: 800;
}
#cart .cart-grid .cart-container .quantity-and-delete {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (min-width: 769px) {
  #cart .cart-grid .cart-container .quantity-and-delete {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .cart-container .quantity-and-delete {
    -ms-flex-align: center;
        align-items: center;
  }
}
#cart .cart-grid .cart-container .quantity-and-delete .col {
  padding: 0;
}
#cart .cart-grid .cart-container .quantity-and-delete .remove-from-cart {
  font-size: 14px;
  color: #383838;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  column-gap: 8px;
  -ms-flex-align: center;
      align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .cart-container .quantity-and-delete .remove-from-cart {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  #cart .cart-grid .cart-container .quantity-and-delete .remove-from-cart .text {
    display: none;
  }
}
#cart .cart-grid .cart-container .quantity-and-delete .remove-from-cart:hover {
  text-decoration: underline;
}
#cart .cart-grid .cart-container .quantity-and-delete .remove-from-cart i {
  color: #383838;
}
#cart .cart-grid .cart-container .quantity-and-delete .qty {
  margin-bottom: 0;
}
#cart .cart-grid .cart-container .quantity-and-delete .qty .input-group {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  background: #F5F5F5;
  border-radius: 10px;
  padding: 3px 48px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1270px) {
  #cart .cart-grid .cart-container .quantity-and-delete .qty .input-group {
    padding: 2px 30px;
  }
}
#cart .cart-grid .cart-container .quantity-and-delete .qty .input-group input {
  color: #383838;
  font-family: "Geologica";
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  background: #F5F5F5;
  border: none;
  border-radius: 0;
  outline: none;
  max-width: 53px;
  padding: 8px 0;
}
@media screen and (max-width: 1270px) {
  #cart .cart-grid .cart-container .quantity-and-delete .qty .input-group input {
    font-size: 13px;
    max-width: 36px;
  }
}
#cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical {
  position: unset;
}
#cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical .btn.btn-touchspin {
  top: 0;
  position: absolute;
  width: 48px;
  height: 100%;
  min-width: 48px;
  background: #F5F5F5;
  color: #383838;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border: none;
}
@media screen and (max-width: 1270px) {
  #cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical .btn.btn-touchspin {
    width: 30px;
    min-width: 30px;
  }
}
#cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical .btn.btn-touchspin:hover {
  opacity: 0.9;
}
#cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical .btn.btn-touchspin i {
  display: block;
  position: unset;
}
#cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical .btn.btn-touchspin.bootstrap-touchspin-up {
  right: 0;
}
#cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical .btn.btn-touchspin.bootstrap-touchspin-up i:before {
  display: block;
  content: "";
  background: url("./../../assets/img/quantity-plus-icon.svg");
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1270px) {
  #cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical .btn.btn-touchspin.bootstrap-touchspin-up i:before {
    width: 13px;
    height: 13px;
  }
}
#cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical .btn.btn-touchspin.bootstrap-touchspin-down {
  left: 0;
}
#cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical .btn.btn-touchspin.bootstrap-touchspin-down i:before {
  display: block;
  content: "";
  background: url("./../../assets/img/quantity-minus-icon.svg");
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1270px) {
  #cart .cart-grid .cart-container .quantity-and-delete .qty .input-group .input-group-btn-vertical .btn.btn-touchspin.bootstrap-touchspin-down i:before {
    width: 13px;
    height: 13px;
  }
}
#cart .cart-grid .cart-container .product-line-actions {
  text-align: right;
}
@media screen and (max-width: 1023.99px) {
  #cart .cart-grid .cart-container .product-line-actions .justify-content-end {
    -ms-flex-pack: center !important;
        justify-content: center !important;
  }
}
#cart .cart-grid .cart-container .cart-item-header {
  padding: 20px 35px;
}
#cart .cart-grid .cart-container .cart-item {
  padding: 25px 35px 0;
}
@media screen and (max-width: 1023.99px) {
  #cart .cart-grid .cart-container .cart-item {
    padding: 15px;
  }
}
#cart .cart-grid .cart-container .cart-item .product-image {
  max-width: 196px;
}
@media screen and (max-width: 576px) {
  #cart .cart-grid .cart-container .cart-item .product-image {
    max-width: 107px;
  }
}
#cart .cart-grid .cart-container .cart-item .product-image img {
  width: 100%;
  height: auto;
}
#cart .cart-grid .cart-container .cart-item .product-info {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .cart-container .cart-item .product-info {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
#cart .cart-grid .cart-container .cart-item .product-info .left {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1271px) {
  #cart .cart-grid .cart-container .cart-item .product-info .left .product-price {
    padding-bottom: 10px;
    -ms-flex-order: 1;
        order: 1;
  }
}
@media screen and (min-width: 769px) {
  #cart .cart-grid .cart-container .cart-item .product-info .quantity-and-delete {
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex: 0 0 fit-content;
        flex: 0 0 fit-content;
  }
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .cart-container .cart-item .product-info .quantity-and-delete {
    margin-top: 15px;
  }
}
#cart .cart-grid .cart-container .cart-item .price-total .product-price {
  color: #383838 !important;
  font-family: "Geologica";
  font-size: 18px;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 0.18px;
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .cart-container .cart-item .price-total .product-price {
    font-size: 16px;
    letter-spacing: 0.16px;
  }
}
#cart .cart-grid .cart-container .heading-title {
  font-weight: 500;
}
#cart .cart-grid .cart-container .product-line-info {
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
  color: #383838;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .cart-container .product-line-info {
    font-size: calc(12px + 0.390625vw);
  }
}
#cart .cart-grid .cart-container .product-line-info a {
  color: #383838;
}
#cart .cart-grid .cart-container .product-line-info.product-line-info-secondary {
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: #383838 !important;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #cart .cart-grid .cart-container .product-line-info.product-line-info-secondary {
    font-size: 11px;
    letter-spacing: 0.11px;
    line-height: 16px;
  }
}
#cart .cart-grid .cart-container .product-price {
  margin-top: auto;
  color: #606C6A;
  font-family: "Geologica";
  font-size: 24px;
  font-weight: 900;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .cart-container .product-price {
    font-size: calc(15px + 0.390625vw);
  }
}
#cart .cart-grid .installation-query {
  border: 2px solid #efefef;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 14px 16px;
}
@media screen and (min-width: 1025px) {
  #cart .cart-grid .installation-query {
    padding: 14px 40px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1360px) {
  #cart .cart-grid .installation-query {
    padding: 14px 30px;
  }
}
#cart .cart-grid .installation-query form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  column-gap: 15px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 15px;
}
#cart .cart-grid .installation-query form .heading {
  color: #383838;
  font-family: "Geologica";
  font-size: 22px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.22px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .installation-query form .heading {
    font-size: calc(16px + 0.390625vw);
    letter-spacing: 0.16px;
  }
}
#cart .cart-grid .installation-query form .options {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: end;
  column-gap: 10px;
}
#cart .cart-grid .installation-query form .options label {
  font-family: "Geologica";
  font-size: 16px;
  font-weight: 900;
  padding: 12px 20px;
  line-height: 20px;
  border-radius: 10px;
  color: #0B0B0B !important;
  border: 2px solid #f4f4f4 !important;
  background: #f4f4f4 !important;
  transition: none;
  width: 100%;
  max-width: 90px;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #cart .cart-grid .installation-query form .options label {
    font-size: calc(11px + 0.390625vw);
    padding: 8px 15px;
    line-height: normal;
    border-radius: 8px;
  }
}
#cart .cart-grid .installation-query form .options label input {
  visibility: hidden;
  height: 0;
  width: 0;
  position: absolute;
}
#cart .cart-grid .installation-query form .options label:hover, #cart .cart-grid .installation-query form .options label:has(input:checked) {
  opacity: 1;
  background: #606C6A !important;
  color: #fff !important;
  border-color: #606C6A !important;
}
#cart .cart-summary {
  border: 2px solid #EFEFEF;
  padding: 25px 16px 17px;
}
@media screen and (min-width: 992px) and (max-width: 1024px) {
  #cart .cart-summary {
    border-radius: 10px;
  }
}
@media screen and (min-width: 1025px) {
  #cart .cart-summary {
    padding: 40px 40px 25px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1360px) {
  #cart .cart-summary {
    padding: 30px 30px 20px;
  }
}
#cart .cart-summary > hr {
  display: none;
}
#cart .cart-summary h2 {
  color: #383838;
  font-family: "Geologica";
  font-size: 22px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.22px;
  margin-bottom: 36px;
}
@media screen and (max-width: 991px) {
  #cart .cart-summary h2 {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #cart .cart-summary h2 {
    font-size: calc(16px + 0.390625vw);
    letter-spacing: 0.16px;
    margin-bottom: 28px;
  }
}
#cart .cart-summary #cartSummaryAccordion {
  margin-bottom: 55px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #cart .cart-summary #cartSummaryAccordion {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #cart .cart-summary #cartSummaryAccordion {
    margin-bottom: 30px;
  }
}
#cart .cart-summary #cartSummaryAccordion .card {
  border: none;
}
#cart .cart-summary #cartSummaryAccordion .card:not(:last-child) {
  margin-bottom: 28px;
}
#cart .cart-summary #cartSummaryAccordion .card .card-header {
  background: none;
  border: none;
  padding: 0;
}
#cart .cart-summary #cartSummaryAccordion .card .card-header .card-link {
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #cart .cart-summary #cartSummaryAccordion .card .card-header .card-link {
    font-size: calc(12px + 0.390625vw);
    letter-spacing: 0.13px;
  }
}
#cart .cart-summary #cartSummaryAccordion .card .card-header .card-link:after {
  content: "";
  background: url("./../../assets/img/ph_caret-up-bold.svg");
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  transition: transform ease-in-out 300ms;
  transform: rotate(180deg);
}
#cart .cart-summary #cartSummaryAccordion .card .card-header .card-link.collapsed:after {
  transform: none;
}
#cart .cart-summary #cartSummaryAccordion .card .card-body {
  padding: 25px 0 0;
}
#cart .cart-summary #cartSummaryAccordion .card .card-body .block-promo .cart-voucher .cart-voucher-area {
  padding: 0;
  background: none;
}
#cart .cart-summary #cartSummaryAccordion .card .card-body .block-promo .cart-voucher .cart-voucher-area input {
  box-shadow: none;
  outline: none !important;
  border-radius: 10px 0 0 10px;
}
#cart .cart-summary #cartSummaryAccordion .card .card-body .block-promo .cart-voucher .cart-voucher-area .btn-secondary {
  border-radius: 0 10px 10px 0;
}
#cart .cart-summary .cart-detailed-subtotals {
  padding: 0;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  #cart .cart-summary .cart-detailed-subtotals {
    margin-bottom: 30px;
  }
}
#cart .cart-summary .cart-summary-line {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  color: #383838;
  font-family: "Geologica";
  font-size: 15px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.15px;
}
@media screen and (max-width: 768px) {
  #cart .cart-summary .cart-summary-line {
    font-size: calc(12px + 0.390625vw);
  }
}
#cart .cart-summary .cart-summary-line:not(:last-child) {
  padding-bottom: 14px;
}
@media screen and (max-width: 768px) {
  #cart .cart-summary .cart-summary-line:not(:last-child) {
    padding-bottom: 12px;
  }
}
#cart .cart-summary .cart-summary-line.cart-total .value {
  font-weight: 800;
}
#cart .cart-summary .cart-summary-line .value {
  font-weight: 600;
}
#cart .cart-summary .cart-summary-line:after {
  content: unset;
}
#cart .cart-summary .cart-summary-line.cart-total {
  padding-top: 15px;
  padding-bottom: 15px;
}
#cart .cart-summary .cart-summary-line#cart-subtotal-shipping .value .green {
  color: #606C6A;
  font-weight: 800;
}
#cart .cart-summary .cart-summary-totals {
  padding: 0;
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  #cart .cart-summary .cart-summary-totals {
    margin-bottom: 26px;
  }
}
#cart .cart-summary .cart-summary-totals .cart-summary-line {
  color: #383838;
  font-family: "Geologica";
  font-size: 25px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.25px;
  padding: 0;
}
#cart .cart-summary .cart-summary-totals .cart-summary-line:not(:last-child) {
  padding-bottom: 14px;
}
#cart .cart-summary .cart-detailed-actions, #cart .cart-summary .checkout.card-body {
  padding: 0;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  #cart .cart-summary .cart-detailed-actions, #cart .cart-summary .checkout.card-body {
    margin-bottom: 10px;
  }
}
#cart .cart-summary .cart-detailed-actions .btn-primary, #cart .cart-summary .checkout.card-body .btn-primary {
  width: 100%;
  background: #606C6A !important;
  color: #fff !important;
  font-size: 20px;
  -ms-flex-pack: center;
      justify-content: center;
  letter-spacing: 0.2px;
  padding: 15px 20px;
}
@media screen and (max-width: 768px) {
  #cart .cart-summary .cart-detailed-actions .btn-primary, #cart .cart-summary .checkout.card-body .btn-primary {
    font-size: 16px;
    border-radius: 44px;
    padding: 11px 20px;
  }
}
#cart .cart-summary .cart-detailed-actions .btn-primary:after, #cart .cart-summary .checkout.card-body .btn-primary:after {
  content: unset;
}
#cart .cart-summary .cart-detailed-actions .btn-primary:hover, #cart .cart-summary .checkout.card-body .btn-primary:hover {
  opacity: 0.9;
}
#cart .cart-summary .cart-detailed-actions .btn-primary:disabled, #cart .cart-summary .checkout.card-body .btn-primary:disabled {
  opacity: 0.4;
}
#cart .cart-summary .alert-expected-delivery-date {
  font-size: 15px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #cart .cart-summary .alert-expected-delivery-date {
    font-size: calc(9px + 0.390625vw);
    letter-spacing: 0.1px;
  }
}
#cart .cart-summary .cart-payment-logos-section {
  margin-top: 5px;
}
#cart .cart-summary .cart-payment-logos-section .cart-payment-logos {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  column-gap: 10px;
}
#cart .cart-summary .cart-payment-logos-section .cart-payment-logos img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 39px;
}
#cart .continue-shopping {
  margin-left: 35px;
  padding: 10px 15px;
  font-size: 17px;
  color: #383838;
  font-weight: 500;
  background: transparent;
  border: 1px solid #383838;
}
#cart .continue-shopping:hover {
  background: #383838;
  color: #fff;
}
#cart .product-customization {
  display: none;
}
@media screen and (max-width: 991px) {
  #cart .cart-trust-cards {
    margin-bottom: 40px;
  }
}
#cart .cart-trust-cards .cards {
  display: -ms-flexbox;
  display: flex;
  column-gap: 14px;
}
@media screen and (min-width: 1350px) {
  #cart .cart-trust-cards .cards {
    column-gap: 19px;
  }
}
@media screen and (max-width: 1150px) and (min-width: 992px) {
  #cart .cart-trust-cards .cards {
    -ms-flex-direction: column;
        flex-direction: column;
    row-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  #cart .cart-trust-cards .cards {
    -ms-flex-direction: column;
        flex-direction: column;
    row-gap: 8px;
  }
}
#cart .cart-trust-cards .cards .card {
  -ms-flex: 1;
      flex: 1;
  border: none;
  background: #F3F3F3;
  padding: 16px 16px 22px;
}
@media screen and (max-width: 1150px) and (min-width: 992px) {
  #cart .cart-trust-cards .cards .card {
    padding: 14px 26px 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    column-gap: 23px;
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  #cart .cart-trust-cards .cards .card {
    padding: 14px 26px 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    column-gap: 23px;
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
#cart .cart-trust-cards .cards .card .image {
  height: 40px;
}
#cart .cart-trust-cards .cards .card img {
  display: block;
  max-width: 26px;
  max-height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media screen and (min-width: 1151px) {
  #cart .cart-trust-cards .cards .card img {
    margin: 0 auto 14px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cart .cart-trust-cards .cards .card img {
    margin: 0 auto 14px;
  }
}
#cart .cart-trust-cards .cards .card h3, #cart .cart-trust-cards .cards .card h4 {
  color: #383838;
  font-size: 13px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.13px;
  margin-bottom: 2px;
}
@media screen and (min-width: 1151px) {
  #cart .cart-trust-cards .cards .card h3, #cart .cart-trust-cards .cards .card h4 {
    text-align: center;
    margin-bottom: 3px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #cart .cart-trust-cards .cards .card h3, #cart .cart-trust-cards .cards .card h4 {
    text-align: center;
    margin-bottom: 3px;
  }
}
#cart .cart-trust-cards .cards .card h4 {
  margin-bottom: 0;
  font-weight: 300;
}

#_desktop_blockcart-content #blockcart-content {
  border-radius: 10px;
  z-index: 1001;
}
#_desktop_blockcart-content .cart-products a {
  color: #383838;
}
#_desktop_blockcart-content .cart-buttons .btn-primary {
  -ms-flex-pack: center;
      justify-content: center;
}
#_desktop_blockcart-content .cart-buttons .btn-primary:after {
  content: unset;
}

#blockcart-content .input-group.bootstrap-touchspin {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
  background: #F5F5F5;
  border-radius: 10px;
  padding: 2px 30px;
  margin-right: 0;
  margin-left: auto;
}
#blockcart-content .input-group.bootstrap-touchspin input {
  color: #383838;
  font-family: "Geologica";
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  background: #F5F5F5;
  border: none;
  border-radius: 0;
  outline: none;
  max-width: 36px;
  padding: 8px 0;
}
#blockcart-content .input-group.bootstrap-touchspin .input-group-btn-vertical {
  position: unset;
}
#blockcart-content .input-group.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin {
  top: 0;
  position: absolute;
  width: 30px;
  height: 100%;
  min-width: 30px;
  background: #F5F5F5;
  color: #383838;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border: none;
}
#blockcart-content .input-group.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin:hover {
  opacity: 0.9;
}
#blockcart-content .input-group.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin i {
  display: block;
  position: unset;
}
#blockcart-content .input-group.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.bootstrap-touchspin-up {
  right: 0;
}
#blockcart-content .input-group.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.bootstrap-touchspin-up i:before {
  display: block;
  content: "";
  background: url("../../assets/img/quantity-plus-icon.svg");
  background-size: 100% 100%;
  width: 13px;
  height: 13px;
}
#blockcart-content .input-group.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.bootstrap-touchspin-down {
  left: 0;
}
#blockcart-content .input-group.bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin.bootstrap-touchspin-down i:before {
  display: block;
  content: "";
  background: url("./../../assets/img/quantity-minus-icon.svg");
  background-size: 100% 100%;
  width: 13px;
  height: 13px;
}

#module-ph_simpleblog-page .simpleblog__listing .row, #module-ph_simpleblog-list .simpleblog__listing .row, #module-ph_simpleblog-category .simpleblog__listing .row {
  row-gap: 50px;
}
#module-ph_simpleblog-page .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper a img, #module-ph_simpleblog-list .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper a img, #module-ph_simpleblog-category .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper a img {
  width: 100%;
  margin-bottom: 0 !important;
  aspect-ratio: 573/552;
  height: 100%;
}
#module-ph_simpleblog-page .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper a:hover, #module-ph_simpleblog-list .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper a:hover, #module-ph_simpleblog-category .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper a:hover {
  color: #606C6A;
}
#module-ph_simpleblog-page .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content, #module-ph_simpleblog-list .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content, #module-ph_simpleblog-category .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content {
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  #module-ph_simpleblog-page .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content, #module-ph_simpleblog-list .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content, #module-ph_simpleblog-category .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content {
    margin-top: 15px;
  }
}
#module-ph_simpleblog-page .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title, #module-ph_simpleblog-list .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title, #module-ph_simpleblog-category .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title {
  font-family: "Geologica";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  #module-ph_simpleblog-page .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title, #module-ph_simpleblog-list .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title, #module-ph_simpleblog-category .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title {
    font-size: 24px;
  }
}
#module-ph_simpleblog-page .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title a, #module-ph_simpleblog-list .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title a, #module-ph_simpleblog-category .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title a {
  color: #383838;
}
#module-ph_simpleblog-page .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title a:hover, #module-ph_simpleblog-list .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title a:hover, #module-ph_simpleblog-category .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content h3.post-title a:hover {
  color: #606C6A;
}
#module-ph_simpleblog-page .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content p, #module-ph_simpleblog-list .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content p, #module-ph_simpleblog-category .simpleblog__listing .simpleblog__listing__post .simpleblog__listing__post__wrapper .simpleblog__listing__post__wrapper__content p {
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px;
  margin-bottom: 0;
}
#module-ph_simpleblog-page .blogSubcat .blogSubcat__list, #module-ph_simpleblog-list .blogSubcat .blogSubcat__list, #module-ph_simpleblog-category .blogSubcat .blogSubcat__list {
  display: -ms-flexbox;
  display: flex;
}
#module-ph_simpleblog-page .blogSubcat .blogSubcat__list .blogSubcat__item a, #module-ph_simpleblog-list .blogSubcat .blogSubcat__list .blogSubcat__item a, #module-ph_simpleblog-category .blogSubcat .blogSubcat__list .blogSubcat__item a {
  font-size: 19px;
  font-weight: 700;
  color: #383838;
}
#module-ph_simpleblog-page .blogSubcat .blogSubcat__list .blogSubcat__item a:hover, #module-ph_simpleblog-list .blogSubcat .blogSubcat__list .blogSubcat__item a:hover, #module-ph_simpleblog-category .blogSubcat .blogSubcat__list .blogSubcat__item a:hover {
  color: #606C6A;
}
@media screen and (min-width: 992px) {
  #module-ph_simpleblog-page .simpleblog__listing__pagination, #module-ph_simpleblog-list .simpleblog__listing__pagination, #module-ph_simpleblog-category .simpleblog__listing__pagination {
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media screen and (max-width: 768px) {
  #module-ph_simpleblog-page .simpleblog__listing__pagination, #module-ph_simpleblog-list .simpleblog__listing__pagination, #module-ph_simpleblog-category .simpleblog__listing__pagination {
    gap: 15px;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media screen and (max-width: 768px) {
  #module-ph_simpleblog-page .simpleblog__listing__pagination .col-md-4, #module-ph_simpleblog-page .simpleblog__listing__pagination .col-md-6, #module-ph_simpleblog-list .simpleblog__listing__pagination .col-md-4, #module-ph_simpleblog-list .simpleblog__listing__pagination .col-md-6, #module-ph_simpleblog-category .simpleblog__listing__pagination .col-md-4, #module-ph_simpleblog-category .simpleblog__listing__pagination .col-md-6 {
    padding: 0;
    font-size: 13px;
    line-height: 20px;
  }
}
@media screen and (max-width: 768px) {
  #module-ph_simpleblog-page .simpleblog__listing__pagination .col-md-4 .col-md-6, #module-ph_simpleblog-page .simpleblog__listing__pagination .col-md-6 .col-md-6, #module-ph_simpleblog-list .simpleblog__listing__pagination .col-md-4 .col-md-6, #module-ph_simpleblog-list .simpleblog__listing__pagination .col-md-6 .col-md-6, #module-ph_simpleblog-category .simpleblog__listing__pagination .col-md-4 .col-md-6, #module-ph_simpleblog-category .simpleblog__listing__pagination .col-md-6 .col-md-6 {
    -ms-flex: 0 0 fit-content;
        flex: 0 0 fit-content;
  }
}

#module-ph_simpleblog-category .blogSubcat__list {
  display: -ms-flexbox;
  display: flex;
}
#module-ph_simpleblog-category .blogSubcat__list .blogSubcat__item a {
  font-size: 19px;
  font-weight: 700;
}
#module-ph_simpleblog-category .blogSubcat__list .blogSubcat__item a:hover {
  color: #606C6A;
}

#module-ph_simpleblog-list .breadcrumb, #module-ph_simpleblog-page .breadcrumb {
  display: none;
}
#module-ph_simpleblog-list .blog-main-banner-content, #module-ph_simpleblog-page .blog-main-banner-content {
  position: relative;
}
#module-ph_simpleblog-list .blog-main-banner-content .blog-page-main-banner, #module-ph_simpleblog-page .blog-main-banner-content .blog-page-main-banner {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #module-ph_simpleblog-list .blog-main-banner-content .blog-page-main-banner, #module-ph_simpleblog-page .blog-main-banner-content .blog-page-main-banner {
    margin-bottom: 35px;
  }
}
#module-ph_simpleblog-list .blog-main-banner-content .blog-page-main-banner .blog-banner, #module-ph_simpleblog-page .blog-main-banner-content .blog-page-main-banner .blog-banner {
  position: relative;
}
#module-ph_simpleblog-list .blog-main-banner-content .blog-page-main-banner .blog-banner img, #module-ph_simpleblog-page .blog-main-banner-content .blog-page-main-banner .blog-banner img {
  width: 100%;
  max-height: 635px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #module-ph_simpleblog-list .blog-main-banner-content .blog-page-main-banner .blog-banner img, #module-ph_simpleblog-page .blog-main-banner-content .blog-page-main-banner .blog-banner img {
    max-height: 500px;
  }
}
#module-ph_simpleblog-list .blog-main-banner-content .blog-page-main-banner .blog-banner:after, #module-ph_simpleblog-page .blog-main-banner-content .blog-page-main-banner .blog-banner:after {
  display: block;
  content: "";
  opacity: 0.96;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#module-ph_simpleblog-list .blog-main-banner-content .banner-content, #module-ph_simpleblog-page .blog-main-banner-content .banner-content {
  position: absolute;
  bottom: 10%;
  color: #fff;
}
#module-ph_simpleblog-list .blog-main-banner-content .banner-content .h1, #module-ph_simpleblog-page .blog-main-banner-content .banner-content .h1 {
  font-family: "mixta-pro";
  font-size: 52px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.2px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  #module-ph_simpleblog-list .blog-main-banner-content .banner-content .h1, #module-ph_simpleblog-page .blog-main-banner-content .banner-content .h1 {
    font-size: 32px;
    line-height: 40.2px;
    margin-bottom: 10px;
  }
}
#module-ph_simpleblog-list .blog-main-banner-content .banner-content p, #module-ph_simpleblog-page .blog-main-banner-content .banner-content p {
  color: #fff;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 250;
  line-height: 22.5px;
}

.blogSubcat__item {
  padding: 0 !important;
}

#module-ph_simpleblog-page .blogSubcat .blogSubcat__list,
#module-ph_simpleblog-list .blogSubcat .blogSubcat__list,
#module-ph_simpleblog-category .blogSubcat .blogSubcat__list {
  gap: 15px;
  margin-bottom: 35px !important;
}
@media screen and (max-width: 768px) {
  #module-ph_simpleblog-page .blogSubcat .blogSubcat__list,
  #module-ph_simpleblog-list .blogSubcat .blogSubcat__list,
  #module-ph_simpleblog-category .blogSubcat .blogSubcat__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: scroll;
    padding: 0 15px;
    margin: 0 -15px;
  }
}
#module-ph_simpleblog-page .blogSubcat .blogSubcat__list::-webkit-scrollbar,
#module-ph_simpleblog-list .blogSubcat .blogSubcat__list::-webkit-scrollbar,
#module-ph_simpleblog-category .blogSubcat .blogSubcat__list::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  #module-ph_simpleblog-page .blogSubcat .blogSubcat__list .blogSubcat__item,
  #module-ph_simpleblog-list .blogSubcat .blogSubcat__list .blogSubcat__item,
  #module-ph_simpleblog-category .blogSubcat .blogSubcat__list .blogSubcat__item {
    -ms-flex: 0 0 fit-content;
        flex: 0 0 fit-content;
  }
}
#module-ph_simpleblog-page .blogSubcat .blogSubcat__list .blogSubcat__item a,
#module-ph_simpleblog-list .blogSubcat .blogSubcat__list .blogSubcat__item a,
#module-ph_simpleblog-category .blogSubcat .blogSubcat__list .blogSubcat__item a {
  border: 1px solid #383838;
  border-radius: 50px;
  text-align: center;
  font-family: "Geologica";
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 43.2px;
  padding: 5px 30px !important;
  background: #fff !important;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  #module-ph_simpleblog-page .blogSubcat .blogSubcat__list .blogSubcat__item a,
  #module-ph_simpleblog-list .blogSubcat .blogSubcat__list .blogSubcat__item a,
  #module-ph_simpleblog-category .blogSubcat .blogSubcat__list .blogSubcat__item a {
    padding: 0 20px !important;
  }
}
#module-ph_simpleblog-page .blogSubcat .blogSubcat__list .blogSubcat__item a:hover,
#module-ph_simpleblog-list .blogSubcat .blogSubcat__list .blogSubcat__item a:hover,
#module-ph_simpleblog-category .blogSubcat .blogSubcat__list .blogSubcat__item a:hover {
  background: #383838 !important;
  color: #fff !important;
}
#module-ph_simpleblog-page .simpleblog__listing__post__wrapper__content__headline,
#module-ph_simpleblog-list .simpleblog__listing__post__wrapper__content__headline,
#module-ph_simpleblog-category .simpleblog__listing__post__wrapper__content__headline {
  font-size: 0;
  background: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
#module-ph_simpleblog-page .simpleblog__listing__post__wrapper__footer,
#module-ph_simpleblog-list .simpleblog__listing__post__wrapper__footer,
#module-ph_simpleblog-category .simpleblog__listing__post__wrapper__footer {
  display: none;
}
#module-ph_simpleblog-page .simpleblog__listing__post__wrapper__content__readmore,
#module-ph_simpleblog-list .simpleblog__listing__post__wrapper__content__readmore,
#module-ph_simpleblog-category .simpleblog__listing__post__wrapper__content__readmore {
  display: none;
}
#module-ph_simpleblog-page .simpleblog__listing__post__wrapper,
#module-ph_simpleblog-list .simpleblog__listing__post__wrapper,
#module-ph_simpleblog-category .simpleblog__listing__post__wrapper {
  margin-bottom: 0;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
#module-ph_simpleblog-page .read-more-blog,
#module-ph_simpleblog-list .read-more-blog,
#module-ph_simpleblog-category .read-more-blog {
  margin-top: auto;
}
#module-ph_simpleblog-page .read-more-blog a,
#module-ph_simpleblog-list .read-more-blog a,
#module-ph_simpleblog-category .read-more-blog a {
  color: #606C6A;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 43.2px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
}
#module-ph_simpleblog-page .read-more-blog a:after,
#module-ph_simpleblog-list .read-more-blog a:after,
#module-ph_simpleblog-category .read-more-blog a:after {
  content: "";
  display: block;
  background-image: url("./../../assets/img/darksage_arrow-up.svg");
  height: 28px;
  width: 28px;
}

#module-ph_simpleblog-category .blog-banner, #module-ph_simpleblog-categorypage .blog-banner {
  display: none;
}
#module-ph_simpleblog-category .banner-content p, #module-ph_simpleblog-categorypage .banner-content p {
  display: none;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap, .fancybox-skin, .fancybox-outer, .fancybox-inner, .fancybox-image, .fancybox-wrap iframe, .fancybox-wrap object, .fancybox-nav, .fancybox-nav span, .fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../img/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../img/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../img/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: visible !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../img/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../img/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: url("../img/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
.custom-get-quote {
  background: #0C5660;
  border-radius: 7px;
  text-transform: capitalize;
  font-weight: 600;
  padding: 8px 35px;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  #cms.cms-id-39 .how-to-guide-care .care-guides-intro-heading .elementor-widget-container {
    display: block !important;
  }
}
#cms.cms-id-39 .elementor-element.elementor-element-nj3fygq {
  background-size: 100% auto;
}
@media (max-width: 575px) {
  #cms.cms-id-39 .elementor-element.elementor-element-nj3fygq {
    max-height: 300px;
    background-size: cover !important;
  }
}
#cms .own-fabric-make-it-personal.how-to-care-guide .elementor-heading-title {
  line-height: 120%;
}
#cms .own-fabric-make-it-personal.how-to-care-guide p {
  width: 90%;
  margin: auto;
}
@media (max-width: 768px) {
  #cms .own-fabric-make-it-personal.how-to-care-guide p {
    width: 100%;
  }
}
#cms .own-fabric-make-it-personal .bespoke-seating-common-img {
  margin: 22px 0 22px !important;
}

.care-guides-intro-heading h2 {
  font-size: 42px !important;
  text-align: left !important;
}
@media screen and (max-width: 540px) {
  .care-guides-intro-heading h2 {
    font-size: 32px !important;
    text-align: center !important;
  }
}

.care-guide-intro .rte-content p {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  line-height: 150%;
}

@media (min-width: 768px) {
  .cms-id-43,
  .cms-id-40,
  .cms-id-41,
  .cms-id-42,
  .elementor-column-gap-default .elementor-element-populated {
    padding: 0 !important;
  }
  .cms-id-39 .our-guide-collection .elementor-column-gap-default .elementor-element-populated {
    padding: 15px;
  }
  .cms-id-39 .elementor-column-gap-default .elementor-element-populated {
    padding: 0;
  }
}
.all-guide-desc .contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.all-guide-desc .btn-contact {
  padding: 10px 30px;
  border-radius: 5px;
}

#cms.cms-id-43 .brand-seating-heading h2, #cms.cms-id-40 .brand-seating-heading h2, #cms.cms-id-41 .brand-seating-heading h2, #cms.cms-id-42 .brand-seating-heading h2 {
  font-size: 42px !important;
}
#cms.cms-id-43 .page-header, #cms.cms-id-40 .page-header, #cms.cms-id-41 .page-header, #cms.cms-id-42 .page-header {
  display: none;
}

.products .product-description .products-variants .variant-links .variant-colours {
  color: #000 !important;
  opacity: 0.4;
}

@media screen and (max-width: 768px) {
  .layout-full-width .reviewsio-floating-widget {
    right: 25px !important;
    bottom: 85px !important;
  }
}
#product .product-prices .product-unit-price {
  display: none !important;
}

#category .select-title .select-title-name {
  max-width: 200px;
}

#product .product-information .product-additional-info .formatted-dimensions {
  display: none !important;
}

#index .homeblocks .sd-uspblock {
  display: unset !important;
  animation: unset !important;
}

#sd-uspblock .section-content.swiper-container-wrapper:nth-of-type(2) {
  display: none !important;
}

#desktop-header .business-event-left > a {
  background: unset !important;
}

#cms.cms-id-43 .products-variants,
#cms.cms-id-37 .products-variants,
#cms.cms-id-36 .products-variants {
  display: none;
}

@media (max-width: 1023px) {
  body#cms .mobile-main-usp .swiper {
    overflow: hidden !important;
  }
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper {
    column-gap: 13px;
  }
  body#cms .mobile-main-usp .swiper-wrapper .swiper-slide, #category .mobile-main-usp .swiper-wrapper .swiper-slide {
    width: auto !important;
    margin-right: 80px !important;
  }
  #cms .mobile-main-usp .swiper-wrapper .elementor-element-populated, #category .mobile-main-usp .swiper-wrapper .elementor-element-populated {
    margin: 12px !important;
  }
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column:not(.swiper-slide), #category .mobile-main-usp .elementor-container .elementor-row .elementor-column:not(.swiper-slide) {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
  }
  #cms .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot, #category .mobile-main-usp .elementor-container .elementor-row .elementor-column .elementor-column-wrap .elementor-widget-container .elementor-image-hotspots-wrapper .elementor-image-hotspots .elementor-hotspot {
    position: unset;
  }
}
@media screen and (max-width: 768px) {
  #cms .simple-para-section .simple-para-column .elementor-widget-wrap .text .elementor-text-editor p {
    font-size: 16px !important;
  }
}
#product .product-information .care-guides {
  padding-bottom: 15px;
}

@media screen and (max-width: 992px) {
  #contact #module-sd_customform-display .form-header h2 {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 992px) {
  #contact .page-title {
    margin-top: 25px !important;
    padding-bottom: 5px !important;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact-top-section .short-description {
    margin-bottom: 20px !important;
  }
  #contact #module-sd_customform-display {
    padding-bottom: 0 !important;
  }
  #contact #main .page-content {
    margin-bottom: 0 !important;
  }
  #contact #module-sd_customform-display .form-header {
    margin-bottom: 20px !important;
  }
  #contact .contact-top-section {
    max-width: 100%;
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 769px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-6 .homeblock-inner .homeblock-main-image .main-image .image-description h3 a {
    font-weight: 600 !important;
  }
}
@media screen and (max-width: 769px) {
  .page-home .homeblocks .main-categories-block .container .row .col-md-3 .homeblock-inner .homeblock-main-image .main-image .image-description h3 a {
    font-weight: 600 !important;
  }
}
@media (max-width: 767px) {
  #category.category-id-32 .mobile-main-usp .swiper-wrapper .swiper-slide {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #cms.cms-id-35 #footer {
    margin-top: -50px;
  }
  #category.category-id-32 .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-button-prev {
    left: 0 !important;
  }
  #category .brand-image-carousel-swiper .elementor-container .elementor-row .swipper-images .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-button-next {
    right: 0 !important;
  }
  #cms.cms-id-35 .personalised-quote-section .personalised-quote-column .heading .elementor-widget-container .elementor-heading-title span {
    line-height: 30px !important;
    display: block;
  }
}
.brand-review .elementor-element-populated {
  margin: 0 !important;
}

@media screen and (max-width: 768px) {
  #cms .get-quote-btn-section, #category .get-quote-btn-section {
    display: block !important;
  }
  #cms .get-quote-btn-section.get-quote-btn-section-bespoke, #category .get-quote-btn-section.get-quote-btn-section-bespoke {
    display: none !important;
  }
  #cms .get-quote-btn-section .get-quote-btn-column .get-quote-btn, #category .get-quote-btn-section .get-quote-btn-column .get-quote-btn {
    max-width: 100% !important;
  }
  #cms .get-quote-btn-section .get-quote-btn-column .get-quote-btn .btn-traditional .elementor-button-text, #category .get-quote-btn-section .get-quote-btn-column .get-quote-btn .btn-traditional .elementor-button-text {
    height: 46px !important;
  }
}
@media screen and (min-width: 991px) and (max-width: 1300px) {
  #footer #footer-container-main .block-scontactform {
    -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  #footer #footer-container-main .row {
    row-gap: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #footer-copyrights .align-items-center {
    -ms-flex-align: end !important;
        align-items: end !important;
  }
}
#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title a.collapsed:after {
  background-image: url("/img/cms/product-arrow-up.svg") !important;
}

#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information #productdaas-accordion .card .title a:after {
  background-image: url("/img/cms/product-arrow-up.svg") !important;
  rotate: 180deg;
}

.second-section .bespoke-button a {
  width: 276px;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #383838 !important;
  font-family: "Geologica";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px;
  background: #fff;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
  margin-top: 30px;
}

.second-section .bespoke-button a:hover {
  background: #606C6A;
  color: #fff !important;
}

#cms .sector-we-target-section .image-col .elementor-widget .elementor-widget-container .elementor-image img, #category .sector-we-target-section .image-col .elementor-widget .elementor-widget-container .elementor-image img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote {
    margin-top: 40px !important;
  }
}
#header #desktop-header .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul {
  width: 100% !important;
  color: #606c6a !important;
}

.business-event-left {
  margin-left: auto;
  background: #383838;
  transition: background-color ease-in-out 300ms, color ease-in-out 300ms;
}

.business-event-left:hover {
  background: #f2efeb;
  color: #606c6a;
}

.business-event-left a:hover {
  color: #606c6a !important;
}

.business-event-left .expand-span {
  display: none;
}

.displayB2bCubeSeating {
  display: none;
}

#header #desktop-header .header-top #desktop-header-container .align-items-center .ets_prmn_megamenu .ets_prmn_megamenu_content .ets_prmn_megamenu_content_content .prmn_menus_ul .prmn_menus_li .prmn_columns_ul {
  border-radius: unset;
}

.sd-anchor-list .select-acc.select-arrow:after {
  content: "" !important;
}

.crossselling-products .swiper-button-next, .crossselling-products .swiper-button-prev {
  display: none;
}

.sd-anchor-list .select-acc {
  padding-left: 0 !important;
  padding-bottom: 15px !important;
  font-size: 19px !important;
}

.sd-anchor-list .anchor-desc h2 {
  font-weight: 900;
  font-size: 34px;
  color: #464646;
}

.pa-captcha-inf.col-md-6 {
  display: block !important;
}

.sd_form#module-sd_customform-display .form-container .sd_form-group input {
  padding: 0.6rem 1rem !important;
}

#cms .common-column-width .elementor-text-editor .beautiful-heading {
  width: 90%;
  padding-top: 15px !important;
  text-align: left !important;
  margin-bottom: 20px;
  line-height: 40px;
}

#category .category-additional-description {
  margin-bottom: 35px !important;
}

#contact .sd_form#module-sd_customform-display .form-container .sd_captcha-form label {
  line-height: 18px !important;
}

.sd_form#module-sd_customform-display .form-container .form-header h2 {
  padding-top: 30px;
}

.sd_form#module-sd_customform-display .form-container .form-header p {
  padding-bottom: 15px;
}

#lgcookieslaw_banner {
  max-width: 505px !important;
}

@media screen and (max-width: 768px) {
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .img-usp img {
    max-height: 35px !important;
  }
}

@media screen and (max-width: 768px) {
  .page-home .homeblocks .usp-block-full-width #sd-uspblock .text span {
    font-size: 15px !important;
  }
}

.category-blocks .image-block .image-scalable .main-image img {
  aspect-ratio: 425/425 !important;
}

#category #main-page-content #wrapper .category-blocks .category-block-outer #products #js-product-list .products .js-product-miniature-wrapper .product-miniature .happy-customers {
  aspect-ratio: 425/425 !important;
}

#product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-prev, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-next {
  background: transparent !important;
  width: 46px !important;
}
@media screen and (max-width: 768px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-prev, #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main .feature-product .swiper-container .swiper-button-next {
    width: 32px !important;
  }
}

.ets_prmn_megamenu .prmn_columns_ul {
  visibility: visible !important;
}

.product-shop-now {
  margin-bottom: 10px !important;
}

@media screen and (min-width: 769px) {
  .hire-cubes {
    margin-bottom: 68px !important;
  }
}

#category #main-page-content #wrapper .category-header-section.no-image .category-overlay .category-description-outer .category-description {
  text-align: center;
  max-width: 100%;
}

#category #main-page-content #wrapper .category-blocks .title-description .row .col-md-12 .categories-list {
  display: none;
}

.category-id-43#category #main-page-content #wrapper .category-blocks .title-description .row .col-md-12 .categories-list {
  display: block;
}

#mobile-header .col-mobile-btn .cart-products-count {
  display: block !important;
}

#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote a {
  max-width: 275px;
  width: 275px;
  height: 68px;
  border: 1px solid #383838;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: anchor-center;
      align-items: anchor-center;
  -ms-flex-pack: center;
      justify-content: center;
}

#cms .world-class-seating-section .world-class-seating-column .text-content .world-class-section .get-a-quote {
  padding: unset !important;
  border: unset !important;
}

@media screen and (max-width: 768px) {
  #module-ph_simpleblog-page .simpleblog__listing__pagination .col-md-6, #module-ph_simpleblog-list .simpleblog__listing__pagination .col-md-6, #module-ph_simpleblog-category .simpleblog__listing__pagination .col-md-6 {
    -ms-flex: 0 0 fit-content;
        flex: 0 0 fit-content;
  }
  .has-discount div[itemprop=offers] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
#cms.cms-id-25 #main-page-content #wrapper #content-wrapper .page-content > .sd-anchor-list {
  display: block;
}

#cms.cms-id-25 .sd-anchor-list .layout2 .tab-accordion .title:hover {
  background: #F2EFEB;
}

#cms.cms-id-25 .sd-anchor-list .layout2 .tab-accordion .faq-content div {
  padding: 0 10px;
}

#cms.cms-id-25 .expert-team {
  display: none;
}

#cms.cms-id-25 .sd-anchor-list .layout2 .tab-accordion .title {
  background: #F2EFEB;
  padding: 0 25px;
}

#cms.cms-id-25 .sd-anchor-list .layout2 .tab-accordion .title .section-title {
  background: #F2EFEB;
  color: #383838;
  font-family: "mixta-pro";
}

@media screen and (max-width: 576px) {
  #lgcookieslaw_banner #lgcookieslaw_customize_cookies_link {
    padding: 0 !important;
  }
}
@media screen and (max-width: 992px) {
  .product-information .tax-shipping-delivery-label {
    display: none;
  }
}
.product-information .tax-shipping-delivery-label .delivery-information {
  color: #3F8136;
  font-family: "Geologica";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.5px;
}

@media screen and (min-width: 1020px) {
  #product #main-page-content #wrapper #inner-wrapper #content-wrapper #main #main-product-wrapper .product-info-row .col-product-info #col-product-info .product-information form .product-add-to-cart {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1300px) {
  #category #main-page-content #wrapper .category-blocks .title-description:not(:has(.no-image)) {
    min-height: 70vh;
  }
}
#product .product-information .block-custom-content {
  display: block !important;
}

.block-custom-content:nth-child(5) {
  display: none !important;
}

@media screen and (min-width: 768px) {
  #footer .newsletter-footer .container .block-newsletter .col-md-5 .block-custom-content img {
    min-height: 237px !important;
  }
}
@media screen and (min-width: 992px) {
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-content {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }
  #module-sd_sampleproduct-sampleproduct #content-wrapper .sample-order-form .can-decide-fabric .can-decide-button {
    margin-right: 30px !important;
  }
}
@media screen and (max-width: 1500px) and (min-width: 992px) {
  #content-wrapper .sample-order-form .sample-fabric-main-banner img {
    width: 110px !important;
  }
}
.block-custom-content:nth-child(4) {
  display: none !important;
}

.cms-id-35 .products-variants {
  display: none;
}

.cms-id-44 .page-header {
  display: none;
}

.page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div .btn-primary:hover {
  border: 1px solid transparent !important;
}

@media screen and (min-width: 992px) {
  .simpleblog__listing__pagination {
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    gap: 30px;
  }
  .simpleblog__listing__pagination .col-md-4,
  .simpleblog__listing__pagination .col-md-6 {
    padding: 0 !important;
    -ms-flex: 0 0 fit-content;
        flex: 0 0 fit-content;
  }
  .simpleblog__listing__pagination .col-md-6 {
    margin-left: 0 !important;
  }
}
body .h1 {
  font-family: "mixta-pro";
}
@media screen and (max-width: 768px) {
  body .h1 {
    font-size: 28px;
  }
}

@media screen and (min-width: 992px) {
  #category .category-description-outer .learn-more-description {
    display: block !important;
  }
}
@media screen and (max-width: 769px) {
  #category.category-cube-seating #main-page-content #wrapper .mobile-view {
    padding-bottom: 17px !important;
  }
}
#content-wrapper .sample-order-form .sample-fabric-main-banner img {
  max-height: 100% !important;
}

.page-home #sdImageSlider.layout2 .sdimageslider-container .swiper-slide .overlay_div {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cart-grid .cart-grid-body {
    padding: 0;
  }
  #cart .cart-grid .cart-container .quantity-and-delete {
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-bottom: 15px;
  }
  #cart .cart-grid .cart-container .cart-item .product-image .col-8 {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #cms .get-quote-btn-section.get-quote-btn-section-bespoke, #category .get-quote-btn-section.get-quote-btn-section-bespoke {
    display: none !important;
  }
}
