@font-face {
  font-family: 'PlayfairDisplay';
  src: url('./fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('./fonts/PlayfairDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('./fonts/PlayfairDisplay-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('./fonts/PlayfairDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('./fonts/PlayfairDisplay-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('./fonts/PlayfairDisplay-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('./fonts/SourceSansPro-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('./fonts/SourceSansPro-Light.otf') format('opentype');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('./fonts/SourceSansPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('./fonts/SourceSansPro-Semibold.otf') format('opentype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('./fonts/SourceSansPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('./fonts/SourceSansPro-Black.otf') format('opentype');
  font-weight: 900;
  font-display: swap;
}

:root {
  --primary-color: black;
  --secondary-color: white;
  --text-color: black;
  --gap: 100px;
  --mobile-gap: 70px;
  --line-height: 1.5;
  --header-line-height: 1.2;
  --h1: 45px;
  --h2: 40px;
  --h3: 35px;
  --h4: 30px;
  --h5: 25px;
  --h6: 20px;
  --h7: 18px;
  --mobile-h1: 30px;
  --mobile-h2: 25px;
  --mobile-h3: 20px;
  --p: 16px;
  --max-height: min(60vh, 450px);
  --fontFamily: 'Source Sans Pro', sans-serif;
  /* --container-width-base: calc(100% - 170px); */


  --paletteColor1:#BA80E6;
  --paletteColor2: #D1ABEF;
  --paletteColor3: #E9D6F8;
  --paletteColor4: #6C4099;
  --paletteColor5: black;
  --paletteColor6: #363636;
  --paletteColor7: #FAFBFC;
  --paletteColor8: #ffffff;
}

@media (min-width: 690px) {
  :root {
    --container-width-base: calc(90vw - var(--frame-size, 0px) * 2);
  }
}

@media (max-width: 689.98px) {
  :root {
    --container-width-base: calc(88vw - var(--frame-size, 0px) * 2);
  }
}

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

body {
  line-height: var(--line-height);
  font-family: var(--fontFamily);
}

/* alignment */
/* body {
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: '';
  height: 100%;
  width: 1px;
  background: var(--paletteColor1);
  z-index: 100;
  position: absolute;
  top: 0;
}

body::before {
  left: calc((100% - var(--container-width-base)) / 2 + 15px);
  transform: translateX(-50%);
}

body::after {
  right: calc((100% - var(--container-width-base)) / 2 + 15px);
  transform: translateX(50%);
} */
/* alignment */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--header-line-height);
  text-align: left;
  margin-top: 0 !important;
}

.wpb_text_column h1,
h1.vc_custom_heading {
  font-size: var(--h1);
}

.wpb_text_column h2,
h2.vc_custom_heading {
  font-size: var(--h2);
}

.wpb_text_column h3,
h3.vc_custom_heading {
  font-size: var(--h3);
}

.wpb_text_column h4,
h4.vc_custom_heading {
  font-size: var(--h4);
}

.wpb_text_column h5,
h5.vc_custom_heading {
  font-size: var(--h5);
}

.wpb_text_column h6,
h6.vc_custom_heading {
  font-size: var(--h6);
}

.text_justify,
.text_justify_last {
  text-align: justify;
}

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

.text_center,
.text_center :is(h1, h2, h3, h4, h5, h6) {
  text-align: center !important;
}

.text_left,
.text_left :is(h1, h2, h3, h4, h5, h6) {
  text-align: left !important;
}

.text_right,
.text_right :is(h1, h2, h3, h4, h5, h6) {
  text-align: right !important;
}

.text_white,
.text_white h1,
.text_white h2,
.text_white h3,
.text_white h4,
.text_white h5,
.text_white h6,
.text_white a {
  color: white !important;
}

.text_black,
.text_black h1,
.text_black h2,
.text_black h3,
.text_black h4,
.text_black h5,
.text_black h6,
.text_black a {
  color: black !important;
}

.image-w-full,
.image-w-full * {
  width: 100%;
}

.image-w-full img {
  object-fit: cover;
}

.image-hover-scale {
  overflow: hidden;
}

.image-hover-scale img {
  transition: transform 500ms ease-out;
}

.image-hover-scale:hover img {
  transform: scale(1.05);
}

.image-br {
  border-radius: 15px;
  overflow: hidden;
}

.image-mh img {
  max-height: var(--max-height);
}

.image-mh-300 img {
  max-height: 300px;
}

.image-mh-400 img {
  max-height: 400px;
}

.image-mh-500 img {
  max-height: 500px;
}

@media screen and (min-width: 375px) {
  .span-inline-block span {
    display: inline-block;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.custom-table table {
  width: auto;
}

.custom-table table,
.custom-table table td {
  border: none;
}

.custom-table table td {
  padding: 2.5px 5px;
  vertical-align: top;
}

.custom-table table td:first-child {
  padding-left: 0 !important;
}

.custom-table table td:last-child {
  padding-right: 0 !important;
}

.custom-table table tr:first-child td {
  padding-top: 0 !important;
}

.custom-table table tr:last-child td {
  padding-bottom: 0 !important;
}

.wpcf7 p::after {
  display: none;
}

.wpb_text_column ul,
.wpb_text_column ol {
  padding-left: 20px;
}

.mobile_view {
  display: none !important;
}

.ul-gap :is(ul, ol) > li:not(:last-child) {
  margin-bottom: 15px;
}

.ul-gap :is(ul, ol) :is(ul, ol) {
  margin-top: 15px;
}

.ul-gap :is(ul, ol) ul {
  list-style-type: circle;
}

.ul-gap :is(ul, ol) > li {
  text-align: left;
}

.reg_no h1 span,
.reg_no h2 span,
.reg_no h3 span,
.reg_no h4 span,
.reg_no h5 span,
.reg_no h6 span {
  font-size: 16px !important;
  font-weight: 400;
}

.lh-header {
  line-height: var(--header-line-height);
}

.fs-h1,
.span-fs-h1 span {
  font-size: var(--h1);
}

.fs-h2,
.span-fs-h2 span {
  font-size: var(--h2);
}

.fs-h3,
.span-fs-h3 span {
  font-size: var(--h3);
}

.fs-h4,
.span-fs-h4 span {
  font-size: var(--h4);
}

.fs-h5,
.span-fs-h5 span {
  font-size: var(--h5);
}

.fs-h6,
.span-fs-h6 span {
  font-size: var(--h6);
}

.fs-h7,
.span-fs-h7 span {
  font-size: var(--h7);
}

.fs-p,
.span-fs-p span {
  font-size: var(--p);
}

.fw-100,
.span-fw-100 span:first-child,
.title-100 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 100;
}

.fw-200,
.span-fw-200 span:first-child,
.title-200 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 200;
}

.fw-300,
.span-fw-300 span:first-child,
.title-300 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 300;
}

.fw-400,
.span-fw-400 span:first-child,
.title-400 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 400;
}

.fw-500,
.span-fw-500 span:first-child,
.title-500 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 500;
}

.fw-600,
.span-fw-600 span:first-child,
.title-600 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 600;
}

.fw-700,
.span-fw-700 span:first-child,
.title-700 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 700;
}

.fw-800,
.span-fw-800 span:first-child,
.title-800 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 800;
}

.fw-900,
.span-fw-900 span:first-child,
.title-900 :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 900;
}

.title-fs-h7 :is(h1, h2, h3, h4, h5, h6) {
  font-size: var(--h7);
}

.background-fixed {
  background-attachment: fixed !important;
}

.mb {
  margin-bottom: 35px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-half {
  margin-bottom: calc(var(--gap) / 2) !important;
}

.mt {
  margin-top: 35px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-half {
  margin-top: calc(var(--gap) / 2) !important;
}

.gap {
  padding-top: var(--gap) !important;
  padding-bottom: calc(var(--gap) - 35px) !important;
}

.gap-t {
  padding-top: var(--gap) !important;
}

.gap-b {
  padding-bottom: calc(var(--gap) - 35px) !important;
}

.gap.full,
.gap-b.full {
  padding-bottom: var(--gap) !important;
}

.gap-m {
  margin-top: var(--gap) !important;
  margin-bottom: var(--gap) !important;
}

.gap-m-t {
  margin-top: var(--gap) !important;
}

.gap-m-b {
  margin-bottom: var(--gap) !important;
}

.row-mb-10 > div > div > div > *:not(:last-child) {
  margin-bottom: 10px;
}

.row-mb-20 > div > div > div > *:not(:last-child) {
  margin-bottom: 20px;
}

.row-mb-30 > div > div > div > *:not(:last-child) {
  margin-bottom: 30px;
}

.vc_section.column-inner-0,
.vc_row.column-inner-0 > div > div {
  padding-top: 0 !important;
}

.grid {
  display: grid !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  gap: 30px;
}

.grid::before,
.grid::after {
  display: none !important;
}

.grid > div {
  width: 100% !important;
}

.grid > div > div {
  height: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* .grid > div > div > div > *:last-child {
  margin-bottom: 0;
} */

.grid-row-gap {
  row-gap: var(--gap);
}

.grid-row-gap-half {
  row-gap: calc(var(--gap) / 2);
}

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

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

.grid-column-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-column-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-column-6 {
  grid-template-columns: repeat(6, 1fr);
}

.relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.display-none {
  display: none !important;
}

@media screen and (min-width: 576px) {
  .grid-sm {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-sm::before,
  .grid-sm::after {
    display: none !important;
  }

  .grid-sm > div {
    width: 100% !important;
  }

  .grid-sm > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* .grid-sm > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

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

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

  .grid-column-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-column-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-column-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media screen and (min-width: 768px) {
  /* body:not(.single-product) .vc_row > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

  .desktop_text_center,
  .desktop_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

  .desktop_text_left,
  .desktop_text_left :is(h1, h2, h3, h4, h5, h6) {
    text-align: left !important;
  }

  .desktop_text_right,
  .desktop_text_right :is(h1, h2, h3, h4, h5, h6) {
    text-align: right !important;
  }

  .desktop-mb {
    margin-bottom: 35px !important;
  }

  .desktop-mb-0 {
    margin-bottom: 0 !important;
	width: auto;
  }

  .desktop-mb-10 {
    margin-bottom: 10px !important;
  }

  .desktop-mb-20 {
    margin-bottom: 20px !important;
  }

  .desktop-mb-30 {
    margin-bottom: 30px !important;
  }

  .desktop-mb-50 {
    margin-bottom: 50px !important;
  }

  .desktop-mb-half {
    margin-bottom: calc(var(--gap) / 2) !important;
  }

  .column-gap {
    --column-gap: max(30px, 2vw);
  }

  .column-gap > div {
    padding-left: var(--column-gap) !important;
    padding-right: var(--column-gap) !important;
  }

  .column-gap > div:first-child {
    padding-left: 0 !important;
  }

  .column-gap > div:last-child {
    padding-right: 0 !important;
  }

  .column-gap.vc_row-no-padding,
  .vc_row-no-padding .column-gap {
    --column-gap: max(30px, 2.5vw);
  }

  .column-gap .grid-md {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .desktop-image-mh-300 img {
    max-height: 300px;
  }

  .desktop-image-mh-400 img {
    max-height: 400px;
  }

  .desktop-image-mh-500 img {
    max-height: 500px;
  }

  /* new version 2.xxx --theme-normal-container-max-width */
  .padding-left-gap.vc_row:not(.vc_inner) > div:first-child {
    padding-left: calc((100vw - min(var(--container-width-base), var(--theme-normal-container-max-width))) / 2) !important;
  }

  .padding-left-gap.vc_row-no-padding:not(.vc_inner) > div:first-child,
  .vc_row.vc_row-no-padding .padding-left-gap.vc_row.vc_inner > div:first-child {
    padding-left: calc((100vw - min(var(--container-width-base), var(--theme-normal-container-max-width))) / 2 + 15px) !important;
  }

  .padding-right-gap:not(.vc_inner) > div:last-child {
    padding-right: calc((100vw - min(var(--container-width-base), var(--theme-normal-container-max-width))) / 2) !important;
  }

  .padding-right-gap.vc_row-no-padding:not(.vc_inner) > div:last-child,
  .vc_row.vc_row-no-padding .padding-right-gap.vc_row.vc_inner > div:last-child {
    padding-right: calc((100vw - min(var(--container-width-base), var(--theme-normal-container-max-width))) / 2 + 15px) !important;
  }
  

    /*  old ver 1.xx --normal-container-max-width */
  /* .padding-left-gap.vc_row:not(.vc_inner) > div:first-child {
    padding-left: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2) !important;
  }

  .padding-left-gap.vc_row-no-padding:not(.vc_inner) > div:first-child,
  .vc_row.vc_row-no-padding .padding-left-gap.vc_row.vc_inner > div:first-child {
    padding-left: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2 + 15px) !important;
  }

  .padding-right-gap:not(.vc_inner) > div:last-child {
    padding-right: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2) !important;
  }

  .padding-right-gap.vc_row-no-padding:not(.vc_inner) > div:last-child,
  .vc_row.vc_row-no-padding .padding-right-gap.vc_row.vc_inner > div:last-child {
    padding-right: calc((100vw - min(var(--container-width-base), var(--normal-container-max-width))) / 2 + 15px) !important;
  } */

  .grid-md {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-md::before,
  .grid-md::after {
    display: none !important;
  }

  .grid-md > div {
    width: 100% !important;
  }

  .grid-md > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* .grid-md > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

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

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

  .grid-column-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-column-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-column-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .align-center {
    display: flex;
    align-items: center;
  }

  .align-end {
    display: flex;
    align-items: flex-end;
  }

  .equal-height {
    display: flex;
  }

  .equal-height > div > div {
    height: 100%;
  }
}

@media screen and (min-width: 992px) {
  .grid-lg {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-lg::before,
  .grid-lg::after {
    display: none !important;
  }

  .grid-lg > div {
    width: 100% !important;
  }

  .grid-lg > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* .grid-lg > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

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

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

  .grid-column-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-column-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-column-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .grid-xl {
    display: grid !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 30px;
  }

  .grid-xl::before,
  .grid-xl::after {
    display: none !important;
  }

  .grid-xl > div {
    width: 100% !important;
  }

  .grid-xl > div > div {
    height: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* .grid-xl > div > div > div > *:last-child {
    margin-bottom: 0;
  } */

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

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

  .grid-column-xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-column-xl-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .grid-column-xl-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}

.grid-gap-0 {
  gap: 0;
}

@media screen and (max-width: 991px) {
  :root {
    --gap: var(--mobile-gap);
    --h1: var(--mobile-h1);
    --h2: var(--mobile-h1);
    --h3: var(--mobile-h2);
    --h4: var(--mobile-h2);
    --h5: var(--mobile-h3);
    --h6: var(--mobile-h3);
  }
}

@media screen and (max-width: 767px) {
  .gap.full,
  .gap-b.full {
    padding-bottom: var(--gap) !important;
  }

  .mobile_text_center,
  .mobile_text_center :is(h1, h2, h3, h4, h5, h6) {
    text-align: center !important;
  }

  .mobile_text_left,
  .mobile_text_left :is(h1, h2, h3, h4, h5, h6) {
    text-align: left !important;
  }

  .mobile_text_right,
  .mobile_text_right :is(h1, h2, h3, h4, h5, h6) {
    text-align: right !important;
  }

  .mobile-image-br {
    border-radius: 15px;
    overflow: hidden;
  }

  .mobile-mb {
    margin-bottom: 35px !important;
  }

  .mobile-mb-0 {
    margin-bottom: 0 !important;
  }

  .mobile-mb-10 {
    margin-bottom: 10px !important;
  }

  .mobile-mb-20 {
    margin-bottom: 20px !important;
  }

  .mobile-mb-30 {
    margin-bottom: 30px !important;
  }

  .mobile-mb-50 {
    margin-bottom: 50px !important;
  }

  .mobile-mb-half {
    margin-bottom: calc(var(--gap) / 2) !important;
  }

  .mobile-mt {
    margin-top: 35px !important;
  }

  .mobile-mt-0 {
    margin-top: 0 !important;
  }

  .mobile-mt-10 {
    margin-top: 10px !important;
  }

  .mobile-mt-20 {
    margin-top: 20px !important;
  }

  .mobile-mt-30 {
    margin-top: 30px !important;
  }

  .mobile-mt-50 {
    margin-top: 50px !important;
  }

  .mobile-mt-half {
    margin-top: calc(var(--gap) / 2) !important;
  }

  .mobile-image-mh-300 img {
    max-height: 300px;
  }

  .mobile-image-mh-400 img {
    max-height: 400px;
  }

  .mobile-image-mh-500 img {
    max-height: 500px;
  }

  .reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .desktop_view {
    display: none !important;
  }

  .mobile_view {
    display: block !important;
  }

  .mobile-br-none br {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

/* Blocksy */

[data-vertical-spacing*='top'] {
  padding-top: 0;
}

[data-vertical-spacing*='bottom'] {
  padding-bottom: 0;
}

.entry-content > * {
  margin-bottom: 0;
}

.vc_btn3-container,
.vc_tta-container {
  margin-bottom: 35px;
}

.ct-menu-link:not(:empty) {
  padding-left: 0;
  padding-right: 0;
}

ul.menu {
  display: flex;
  column-gap: 55px;
}

.vc_row:not([vc-full-width-init], .vc_grid, .vc_gitem_row),
.vc_section[data-vc-full-width]:not([data-vc-stretch-content]) > .vc_row:not(.vc_row-has-fill) {
  margin-left: -15px;
  margin-right: -15px;
}

.vc_row.vc_row-has-fill:not(.vc_inner) {
  margin-left: 0;
  margin-right: 0;
}

/* .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner {
  padding-top: 0;
} */

.wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}

.ct-footer-copyright > *:not(:first-child) {
  margin-top: 0;
}

#footer [data-row='bottom'] .inspiren br {
  display: none;
}

/* .woocommerce-page.archive #header > div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
} */

.post-edit-link,
.vc_inline-link {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .ct-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .ct-container,
  .ct-container-full {
    width: calc(100% - 30px);
  }

  .wpb_gmaps_widget .wpb_map_wraper iframe {
    height: 300px;
  }

  .woocommerce-notices-wrapper,
  article > .related,
  article > .upsells,
  article > .page-links,
  article > .entry-tags,
  article > .author-box,
  article > .ct-comments,
  article > .ct-share-box,
  article > .hero-section,
  article > .post-edit-link,
  article > .post-navigation,
  article > .ct-related-posts,
  article > .ct-newsletter-subscribe-block,
  article > .product .wc-tabs,
  article > .post-password-form,
  article > .product .product-entry-wrapper {
    width: 100% !important;
  }
}

@media screen and (max-width: 600px) {
  .admin-bar {
    --admin-bar: 46px;
  }
}

/* Custom End */

.font-sourcesanspro,
.font-sourcesanspro :is(h1, h2, h3, h4, h5, h6) {
  font-family: 'Source Sans Pro', sans-serif !important;
}

.font-playfair,
.font-playfair :is(h1, h2, h3, h4, h5, h6) {
  font-family: 'PlayfairDisplay', sans-serif !important;
}

.home-banner-row {
  position: relative;
  isolation: isolate;
}

.home-banner-row::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block !important;
  background: center / cover no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/purplecurveline-1.png);
}

.home-regimen-row .regimen-image img {
  aspect-ratio: 227 / 188;
}

.home-regimen-row .vc_row.vc_inner {
  padding: 30px 50px;
  border-radius: 30px;
}

.pin-spacer {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home-regimen-row {
  position: relative;
  min-height: 100vh;
}

.home-regimen-row .vc_row.vc_inner {
  position: absolute;
  top: 0;
  width: 100%;
}

.home-regimen-row .vc_row.vc_inner:nth-child(2) {
  top: calc(var(--gap)*1/3);
}

.home-regimen-row .vc_row.vc_inner:nth-child(3) {
  top: calc(var(--gap)*2/3);
}

.home-regimen-row .vc_row.vc_inner:nth-child(4) {
  top: calc(var(--gap)*3/3);
}

.home-regimen-row .vc_row.vc_inner:nth-child(5) {
  top: calc(var(--gap)*4/3);
}

.home-regimen-row .vc_row.vc_inner.custom-scale-1 {
  transform-origin: top center;
  transform: scale(0.9) !important;
  transition: all 250ms ease-out !important;
}

.home-regimen-row .vc_row.vc_inner.custom-scale-2 {
  transform-origin: top center;
  transform: scale(0.8) !important;
  transition: all 250ms ease-out !important;
}

.home-regimen-row .vc_row.vc_inner.custom-scale-3 {
  transform-origin: top center;
  transform: scale(0.7) !important;
  transition: all 250ms ease-out !important;
}

.home-regimen-row .vc_row.vc_inner.custom-scale-4 {
  transform-origin: top center;
  transform: scale(0.6) !important;
  transition: all 250ms ease-out !important;
}

/* .home-regimen-row::before,
.home-regimen-row::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block !important;
  transform-origin: top center;
  border-radius: 30px;
} */

/* .home-regimen-row::before {
  background: var(--paletteColor3);
  transform: translate(-50%, calc(var(--gap) * -1)) scale(0.8);
}

.home-regimen-row::after {
  background: var(--paletteColor2);
  transform: translate(-50%, calc(var(--gap) * -0.5)) scale(0.9);
} */

.home-adjustment-row .adjustment-icon img {
  height: 70px;
  width: auto;
}

.home-adjustment-row .vc_row.vc_inner.grid > div > div {
  padding: 60px 15px !important;
  border-radius: 15px;
}

/* .home-adjustment-row .vc_row.vc_inner.grid > div > div > div {
  min-height: 200px;
} */

.slick-dots,
.woosq-product .thumbnails .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding-left: 0;
}

.woosq-product .thumbnails .slick-dots {
  gap: 10px;
}

.woosq-product .thumbnails .slick-dots li {
  width: auto;
}

.slick-dots button,
.woosq-product .thumbnails .slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 100vmax;
  background: #8e91b0;
  opacity: 0.82;
  cursor: pointer;
  transition: all 500ms ease-out;
}

.slick-dots .slick-active button,
.woosq-product .thumbnails .slick-dots li.slick-active button {
  background: var(--paletteColor4);
  width: 20px;
}

.slick-dots,
.woosq-product .thumbnails .slick-dots {
  position: static;
  margin-top: 10px;
  margin-bottom: 10px;
}

.woosq-product .thumbnails .slick-dots li button:before {
  display: none !important;
}

#contact_form label {
  font-weight: 400;
}

#contact_form {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

#contact_form textarea {
  height: auto;
}

#contact_button {
  margin-top: 20px;
  position: relative;
}

#contact_button [type='submit'] {
  background: var(--paletteColor4);
  float: none;
  display: block;
  width: 100%;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  transition: all 250ms ease-out;
  border: 1px solid var(--paletteColor4);
}

#contact_button [type='submit']:hover {
  background: none !important;
  /* box-shadow: 0 0 20px var(--paletteColor4), 0 0 5px var(--paletteColor4) inset; */
  color: var(--paletteColor4) !important;
}

#contact_button .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.contact-company-row .company-image img {
  aspect-ratio: 603 / 583;
}

.contact-company-row.blog-page > div:last-child .vc_row.vc_inner > div > div > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-post #main {
  padding-top: var(--gap);
  padding-bottom: calc(var(--gap) / 2);
}

.ct-breadcrumbs .separator,
.ct-breadcrumbs .ct-separator{
  display: none !important;
}

.ct-breadcrumbs > span:not(:last-child)::after {
  content: '|';
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

.ct-breadcrumbs > span:last-child {
  color: var(--paletteColor4);
  font-weight: 600;
}

.ct-breadcrumbs {
  margin-bottom: calc(var(--gap) / 2);
}

.hero-section {
  margin-bottom: 20px !important;
}

.single-post .ct-featured-image {
  padding-bottom: 35px;
}

.single-post .ct-featured-image img {
  aspect-ratio: 947 / 491 !important;
}

.custom-button .vc_general,
.vc_pageable-load-more-btn .vc_btn3,
#survey_button [type='submit'] {
  background: var(--paletteColor1) !important;
  color: white !important;
  border-radius: 5px !important;
  outline: none !important;
  border: 1px solid var(--paletteColor1) !important;
  font-family: var(--fontFamily);
  text-transform: uppercase;
  font-weight: 300;
  padding: 8px 25px;
  transition: all 250ms ease-out;
}

.custom-button .vc_general:hover,
.vc_pageable-load-more-btn .vc_btn3:hover,
#survey_button [type='submit']:hover {
  background: none !important;
  /* box-shadow: 0 0 20px var(--paletteColor1), 0 0 5px var(--paletteColor1) inset; */
  color: var(--paletteColor1) !important;
}

#survey_button [type='submit'] {
  display: inline-block;
  float: none;
}

.vc_pageable-load-more-btn .vc_btn3-container {
  margin-bottom: 0;
}

.vc_gitem-zone.vc_gitem-zone-a {
  aspect-ratio: 119 / 86;
}

.vc_gitem-animated-block {
  border-radius: 20px;
  overflow: hidden;
}

.vc_gitem_row .vc_gitem-col {
  padding: 0;
  padding-top: 20px;
}

.vc_gitem-zone.vc_gitem-zone-c {
  background: none !important;
}

.vc_gitem-post-data.vc_gitem-post-data-source-post_title > * {
  font-size: var(--h5);
  font-weight: 600;
  color: var(--paletteColor1);
}

.vc_pageable-slide-wrapper {
  display: grid;
  gap: 35px;
}

.vc_pageable-slide-wrapper::before,
.vc_pageable-slide-wrapper::after {
  display: none !important;
}

.products-new-row > div:first-child .vc_row.vc_inner {
  position: relative;
}

.products-new-row > div:first-child .vc_row.vc_inner > div:first-child {
  width: 75%;
  transition: all 1000ms ease-out;
}

.products-new-row > div:first-child .vc_row.vc_inner > div:last-child {
  width: 50%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1000ms ease-out;
}

.products-new-row > div:first-child .vc_row.vc_inner:not(.slick-current) > div:first-child {
  transform: translateY(-200px);
  opacity: 0;
}

.products-new-row > div:first-child .vc_row.vc_inner:not(.slick-current) > div:last-child {
  transform: translateY(calc(-50% + 200px));
  opacity: 0;
}

.products-new-row > div:first-child .vc_row.vc_inner.slick-current > div:last-child {
  transition-delay: 900ms;
}

.products-new-row > div:first-child .vc_row.vc_inner > div:first-child .wpb_single_image img {
  aspect-ratio: 434 / 607;
}

.products-new-row > div:first-child .vc_row.vc_inner > div:last-child .wpb_single_image img {
  aspect-ratio: 279 / 385;
}

.woosq-product > .product {
  flex-direction: column;
}

.woosq-popup {
  width: auto;
  max-width: 460px;
  max-height: none;
}

.woosq-product > .product > div {
  width: auto !important;
  height: auto;
}

.woosq-product .thumbnails {
  max-height: none;
  background: #f8f8f8;
}

.single-product .product_title {
  font-family: 'PlayfairDisplay', sans-serif;
  text-transform: uppercase;
}

.mfp-content {
  padding-top: calc(var(--gap) / 2);
  padding-bottom: calc(var(--gap) / 2);
}

.woosq-product > .product .summary .summary-content {
  padding-top: calc(var(--gap) / 2);
  padding-bottom: calc(var(--gap) / 2);
}

.single-product .woocommerce-product-details__short-description :is(ol, ul) {
  padding-left: 20px;
}

.single-product .woocommerce-product-details__short-description :is(ul, ol) > li:not(:last-child) {
  margin-bottom: 5px;
}

.single-product .woocommerce-product-details__short-description :is(ul, ol) :is(ul, ol) {
  margin-top: 5px;
}

.single-product .woocommerce-product-details__short-description :is(ul, ol) ul {
  list-style-type: circle;
}

.single-product .woocommerce-product-details__short-description :is(ul, ol) > li {
  text-align: left;
}

.single-product .product_meta {
  display: none !important;
}

.custom-whatsapp-button {
  background: #55cd6c;
  color: white !important;
  border-radius: 5px;
  padding: 8px 25px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 20px;
  margin-top:20px;
}

.custom-whatsapp-button i {
  margin-left: 10px;
}

.variations_form table.variations th label {
  color: var(--paletteColor4);
  font-size: var(--h7);
  position: relative;
  isolation: isolate;
}

.variations_form table.variations th label::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  display: block !important;
  background: currentColor;
}

.variations_form .single_variation_wrap {
  display: none !important;
}

.price {
  display: none !important;
}

form.variations_form table.variations {
  margin-bottom: 0;
}

.color-variable-item {
  padding: 0 !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  overflow: hidden;
}

.woosq-product .thumbnails .slick-arrow {
  border-radius: 50%;
  cursor: pointer;
  transition: all 250ms ease-out;
}

.woosq-product .thumbnails .slick-arrow:hover {
  background-color: var(--paletteColor1);
}

.woosq-product .thumbnails .slick-arrow.slick-prev {
  left: 15px;
}

.woosq-product .thumbnails .slick-arrow.slick-next {
  right: 15px;
}

.custom-brands {
  position: absolute;
  top: 15px;
  left: 30px;
  text-transform: uppercase;
}

.custom-brand {
  font-family: 'PlayfairDisplay', sans-serif;
  font-size: var(--h6);
  text-align: left;
  color: var(--paletteColor4);
  display: none;
}

[class*='product_cat-brand-yuka'] .custom-brand-yuka,
[class*='product_cat-brand-camisole'] .custom-brand-camisole,
[class*='product_cat-brand-hoshi'] .custom-brand-hoshi,
[class*='product_cat-brand-princess'] .custom-brand-princess,
[class*='product_cat-brand-pure'] .custom-brand-pure,
[class*='product_cat-brand-girdle'] .custom-brand-girdle,
[class*='product_cat-brand-gold-black'] .custom-brand-gold-black,
[class*='product_cat-brand-brilliant'] .custom-brand-brilliant,
[class*='product_cat-brand-selen'] .custom-brand-selen,
[class*='product_cat-brand-ortho'] .custom-brand-ortho,
[class*='product_cat-ortho'] .custom-brand-ortho,
[class*='product_cat-brand-sport'] .custom-brand-sport,
[class*='product_cat-sport'] .custom-brand-sport,
[class*='product_cat-brand-harmony'] .custom-brand-harmony,
[class*='product_cat-harmony'] .custom-brand-harmony,
[class*='product_cat-brand-dream'] .custom-brand-dream,
[class*='product_cat-dream'] .custom-brand-dream,
[class*='product_cat-brand-move'] .custom-brand-move,
[class*='product_cat-move'] .custom-brand-move,
[class*='product_cat-brand-grace'] .custom-brand-grace {
  display: block;
}

.custom-functions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.custom-functions img {
  height: 40px;
  width: auto;
}

.custom-function {
  display: none;
}

.woocommerce-product-details__short-description {
  font-weight: 300;
}

[class*='product_cat-function_stay_away_from_infrared_rays'] .custom-function-stay-away-from-infrared-rays,
[class*='product_cat-function_support_the_spine'] .custom-function-support-the-spine,
[class*='product_cat-function_insulation'] .custom-function-insulation,
[class*='product_cat-function_prevent_chest_expansion'] .custom-function-prevent-chest-expansion,
[class*='product_cat-function_prevent_fat_accumulation'] .custom-function-prevent-fat-accumulation,
[class*='product_cat-function_uv_protection'] .custom-function-anti-uv {
  display: block;
}

.woocommerce-page #main {
  padding-bottom: var(--gap);
}

.woocommerce-page .ct-breadcrumbs {
  margin-bottom: 0;
}

.woocommerce-page .hero-section {
  margin-top: calc(var(--gap) / 2);
  margin-bottom: 0 !important;
}

.woocommerce-page .hero-section .ct-breadcrumbs {
	display:none !important;
}

.woocommerce-page .page-title {
  padding-top: var(--gap);
  text-align: center;
  font-family: 'PlayfairDisplay', sans-serif;
  text-transform: uppercase;
}

.woocommerce-page .page-title::before {
  content: 'DISCOVER';
  display: block;
  color: var(--paletteColor6);
  font-size: var(--p);
  font-family: var(--fontFamily);
  margin-bottom: 10px;
}

.woocommerce-page .hero-section .page-description {
	display: block;
	text-align: center;
	font-weight: 300;
/* 	max-width: 800px; */
/* 	margin-inline: auto; */
/* 	text-wrap: balance; */
}

@media (max-width: 689.98px) {
.woocommerce-page .hero-section .page-description br{display:none !important}
}

.custom-product-description {
  color: var(--paletteColor6);
  font-weight: 300;
}

.custom-product-description-wrapper {
  padding-top: 25px;
  padding-bottom: 25px;
  background: white;
  max-height: 137px;
  width: 100%;
  flex: 1;
}

ul.products li.product {
  background: #f8f8f8;
  overflow: visible;
}

.woosq-btn,
ul.products li.product .product_type_simple {
  background: none;
  font-family: var(--fontFamily);
  font-size: var(--h7);
  color: var(--paletteColor4);
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  isolation: isolate;
}

/* .woosq-btn::before, */
ul.products li.product .product_type_simple::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  display: block !important;
  background: currentColor;
}

.woosq-btn{
  text-decoration: underline;
  text-underline-offset: 5px;
}

ul.products li.product figure,
ul.products li.product > *{margin-bottom: 0;}

ul.products li.product .product_type_simple::before {
  top: auto;
  right: auto;
  filter: none;
  opacity: 1;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-category__title {
  font-family: 'PlayfairDisplay', sans-serif;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

ul.products li.product:not(.product-category) .ct-woo-card-actions,
ul.products li.product:not(.product-category) .woosq-btn {
  padding: 30px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #f8f8f8;
  transition: transform 250ms ease-out, opacity 250ms ease-out;
  min-height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  left:0;
  transform: translateY(0);
  opacity: 1;
}

ul.products li.product:not(.product-category):not(:hover) .ct-woo-card-actions,
ul.products li.product:not(.product-category):not(:hover) .woosq-btn {
    transform: translateY(100%);
    opacity: 0;
}

ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-category__title,
.custom-product-description,
ul.products li.product .entry-excerpt {
  padding-left: 15px;
  padding-right: 15px;
}

ul.products li.product .custom-functions {
  margin-bottom: 0;
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 1;
  flex-direction: column;
  gap: 20px;
}

ul.products li.product :is(.ct-image-container, .ct-media-container) {
  padding-left: 100px;
  padding-right: 100px;
  /*   padding-top: 30px; */
  margin-bottom: 0;
}

ul.products li.product:not(.product-category) :is(.ct-image-container, .ct-media-container) img {
  object-fit: contain;
}

ul.products li.product .woocommerce-LoopProduct-link {
  flex: 1;
  cursor:pointer;
  display:flex;
  flex-direction:column;
}

.custom-sort-container {
  display: grid;
  gap: 30px;
}

.custom-sort-container .show-sort-function-wrapper {
  position: relative;
}

.custom-sort-container .show-sort-function > i {
  position: absolute;
  top: 0;
  right: 0;
  height: 51px;
  width: 51px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 250ms ease-out;
}

.custom-sort-container .show-sort-function.open > i {
  transform: rotate(180deg);
}

.custom-sort-container .show-sort-function h6 {
  color: var(--paletteColor6);
  font-size: var(--h7);
  margin-bottom: 0;
  padding: 12px 15px;
  line-height: 1.5;
  background: #f8f8f8;
  font-weight: 300;
}

.custom-sort-container .show-sort-function ul {
  border: 1px solid #ebebeb;
  overflow: hidden;
  transition: all 250ms ease-out;
  background: white;
}

.custom-sort-container .show-sort-function:not(.open) ul {
  height: 0;
  opacity: 0;
}

.custom-sort-container .show-sort-function ul button {
  width: 100%;
  padding: 8px 15px;
  background: none;
  font-family: var(--fontFamily);
  text-transform: capitalize;
  cursor: pointer;
  color: var(--paletteColor6);
  position: relative;
  isolation: isolate;
  padding-right: 46px;
  padding-left: 48px;
  font-weight: 300;
}

.custom-sort-container .show-sort-function ul button::after {
  content: '\f00c';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  height: 25px;
  width: auto;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paletteColor1);
  border-radius: 50%;
  color: white;
  font-size: 12px;
}

.custom-sort-container .show-sort-function ul button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  height: 30px;
  width: auto;
  aspect-ratio: 1;
}

.custom-sort-container .show-sort-function ul button[custom-filter*='product_cat-function_stay_away_from_infrared_rays']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2687@2x.png);
}

.custom-sort-container .show-sort-function ul button[custom-filter*='product_cat-function_support_the_spine']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2689@2x.png);
}

.custom-sort-container .show-sort-function ul button[custom-filter*='product_cat-function_insulation']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2690@2x.png);
}

.custom-sort-container .show-sort-function ul button[custom-filter*='product_cat-function_prevent_chest_expansion']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2688@2x.png);
}

.custom-sort-container .show-sort-function ul button[custom-filter*='product_cat-function_prevent_fat_accumulation']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2691@2x.png);
}

.custom-sort-container .show-sort-function ul button[custom-filter*='product_cat-function_uv_protection']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2692@2x.png);
}

.custom-sort-container .show-sort-function ul button.custom-filter-active::after {
  display: none;
}

.custom-sort-container .show-sort-function ul li:not(:last-child) button {
  border-bottom: 1px solid #ebebeb;
}

.custom-sort-container .show-sort-container ul {
  display: grid;
  gap: 15px 30px;
}

.custom-sort-container .show-sort-container ul button {
  background: var(--paletteColor1);
  color: white;
  width: 100%;
  padding: 12px 25px;
  text-transform: capitalize;
  font-family: var(--fontFamily);
  cursor: pointer;
  border-radius: 10px;
  position: relative;
  isolation: isolate;
  padding-right: 40px;
  padding-left: 50px;
  height: 100%;
  line-height: 1.2;
  font-weight: 300;
}

.custom-sort-container .show-sort-container ul button::after {
  content: '\f00d';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: -1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background: white;
  font-size: 12px;
  border-radius: 50%;
  color: var(--paletteColor1);
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
}

.custom-sort-container .show-sort-container ul button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: -1;
  width: 40px;
  height: 40px;
}

.custom-sort-container .show-sort-container ul button[custom-filter*='product_cat-function_stay_away_from_infrared_rays']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2687@2x.png);
}

.custom-sort-container .show-sort-container ul button[custom-filter*='product_cat-function_support_the_spine']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2689@2x.png);
}

.custom-sort-container .show-sort-container ul button[custom-filter*='product_cat-function_insulation']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2690@2x.png);
}

.custom-sort-container .show-sort-container ul button[custom-filter*='product_cat-function_prevent_chest_expansion']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2688@2x.png);
}

.custom-sort-container .show-sort-container ul button[custom-filter*='product_cat-function_prevent_fat_accumulation']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2691@2x.png);
}

.custom-sort-container .show-sort-container ul button[custom-filter*='product_cat-function_uv_protection']::before {
  background: center / contain no-repeat url(https://88.inspiren.dev/Minami/wp-content/uploads/2023/08/Group-2692@2x.png);
}

.quiz-breadcrumb-row {
  padding-top: calc(var(--gap) / 2);
  padding-bottom: calc(var(--gap) - 35px);
}

.products-new-row.vc_row-has-fill {
  background-position: top right !important;
}

.home-categories-row ul.products li.product :is(.ct-image-container, .ct-media-container) {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.home-categories-row ul.products {
  display: grid;
  gap: 35px;
  grid-template-columns: none;
}

ul.products li.product .entry-excerpt {
  margin-top: 0;
  font-weight: 300;
}

ul.products li.product:not(.product-category) .entry-excerpt {
  display: none !important;
}

ul.products li.product-category :is(.ct-image-container, .ct-media-container) img {
  aspect-ratio: 134 / 131 !important;
}

ul.products li.product-category .count {
  display: none !important;
}

ul.products li.product-category :is(.ct-image-container, .ct-media-container) {
  margin-bottom: 0;
}

ul.products li.product-category .custom-product-category-wrapper {
  padding-top: 25px;
  padding-bottom: 25px;
}

ul.products li.product-category,
ul.products li.product-category .woocommerce-loop-category__title,
ul.products li.product-category .entry-excerpt,
ul.products li.product-category .product_type_simple {
  transition: background 250ms ease-out;
}

ul.products li.product-category:hover {
  background: var(--paletteColor1);
}

ul.products li.product-category:hover .woocommerce-loop-category__title,
ul.products li.product-category:hover .entry-excerpt,
ul.products li.product-category:hover .product_type_simple {
  color: white;
}

.cr-all-reviews-shortcode ol li.review:last-child {
  margin-bottom: 0;
}

.cr-all-reviews-shortcode ol.commentlist {
  padding-bottom: 0;
}

.cr-all-reviews-shortcode .cr-count-row {
  display: none !important;
}

.cr-all-reviews-shortcode .woocommerce-review__verified.verified {
  display: none !important;
}

.cr-all-reviews-shortcode ol.commentlist li .comment-text .meta .cr-meta-author-featured-date {
  padding-top: 30px;
}

.cr-all-reviews-shortcode .crstar-rating {
  position: absolute;
  top: 30px;
  margin-top: 0;
}

.cr-all-reviews-shortcode ol li.review .comment_container .meta {
  align-items: flex-start;
}

.cr-all-reviews-shortcode ol.commentlist li .comment-text {
  border-bottom: 0;
  background: white;
  padding: 30px;
  box-shadow: 0px 3px 6px #0000000d;
  border-radius: 5px;
}

.woocommerce-page .product-reviews-row {
  background: #f7f5f2 !important;
}

.product-brand-row .brand-ul ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 30px 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.product-brand-row .brand-ul ul a {
  position: relative;
  isolation: isolate;
}

.product-brand-row .brand-ul ul a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  display: block !important;
  background: currentColor;
  height: 1px;
}

.contact-company-row > div:first-child > div {
  padding-left: 0;
  padding-right: 0;
}

#survey_form .survey_formgroup > :is(h1, h2, h3, h4, h5, h6) {
  font-family: 'PlayfairDisplay', sans-serif;
  text-align: center;
  color: var(--paletteColor6);
}

#survey_form .survey_formgroup:not(:last-child) {
  padding-bottom: var(--gap);
}

#survey_form .survey_formgroup > p {
  text-align: center;
}

#survey_form .survey_formgroup .wpcf7-form-control-wrap[data-name='survey_how_old'] .wpcf7-radio,
#survey_form .survey_formgroup .wpcf7-checkbox {
  display: grid;
  gap: 20px;
}

#survey_form .survey_formgroup input {
  display: none;
}

#survey_form .survey_formgroup .wpcf7-radio > span,
#survey_form .survey_formgroup .wpcf7-checkbox > span {
  margin-left: 0;
}

#survey_form .survey_formgroup .wpcf7-radio label,
#survey_form .survey_formgroup .wpcf7-checkbox label {
  background: #f7f5f2;
  padding: 10px;
  transition: all 250ms ease-out;
  border-radius: 8px;
  position: relative;
  isolation: isolate;
}

#survey_form .survey_formgroup .wpcf7-radio .wpcf7-list-item.custom-form-active label,
#survey_form .survey_formgroup .wpcf7-checkbox .wpcf7-list-item.custom-form-active label {
  background: var(--paletteColor1);
  color: white;
}

#survey_form .survey_formgroup .wpcf7-radio .wpcf7-list-item label::after,
#survey_form .survey_formgroup .wpcf7-checkbox .wpcf7-list-item label::after {
  content: '\f00c';
  width: 30px;
  height: 30px;
  background: white;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--paletteColor1);
  transform: translateY(-50%);
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 250ms ease-out;
}

#survey_form .survey_formgroup .wpcf7-form-control-wrap:not([data-name='survey_how_old']) .wpcf7-radio label::after {
  width: 20px;
  height: 20px;
  top: 15px;
  right: 15px;
  transform: none;
  font-size: 12px;
}

#survey_form .survey_formgroup .wpcf7-radio .wpcf7-list-item.custom-form-active label::after,
#survey_form .survey_formgroup .wpcf7-checkbox .wpcf7-list-item.custom-form-active label::after {
  opacity: 1;
}

#survey_form .survey_formgroup .wpcf7-form-control-wrap:not([data-name='survey_how_old']) .wpcf7-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

#survey_form .survey_formgroup .wpcf7-form-control-wrap:not([data-name='survey_how_old']) .wpcf7-radio label {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

#survey_form {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}

#survey_button {
  margin-top: 35px;
  text-align: center;
}

#survey_button p {
  position: relative;
}

#survey_button .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#header ul.menu > li:not(:last-child) > a {
  position: relative;
  isolation: isolate;
}

#header ul.menu > li:not(:last-child) > a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -27.5px;
  width: 1px;
  height: 18px;
  transform: translate(50%, -50%);
  background: var(--paletteColor1);
  left: auto;
  opacity: 1;
}

ul[role='menubar'] li[class*='current'] > a {
  font-weight: 600;
}

/*styling fonts for menu *except color(pls use customizer) */
[id*="header-menu"] li[class*="current-menu-"] > a,
[id*="header-menu"] li[class*="current-menu-"] > .ct-sub-menu-parent{
    font-weight: 600;
}

#footer #media_image-2 img {
  height: 35px !important;
  width: auto;
}

#footer .custom-tagline-container {
  font-family: 'PlayfairDisplay', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

#footer .custom-tagline-container > div:not(:last-child) {
  position: relative;
  isolation: isolate;
}

#footer .custom-tagline-container > div:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translate(50%, -50%);
  z-index: -1;
  display: block !important;
  background: linear-gradient(to bottom, var(--paletteColor4), #bc7bff);
  width: 2px;
  height: 16px;
}

#footer .custom-social-container {
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

#footer [data-row='middle'] > div {
  padding-top: 0;
}

#footer [data-row='top'] > div {
  padding-bottom: 40px;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
  box-shadow: none;
  padding: 0;
}

.woosq-product .thumbnails .images,
ul.products li.product:not(.product-category) :is(.ct-image-container, .ct-media-container) {
  mix-blend-mode: multiply;
}

/* .woosq-product .thumbnails .thumbnail { */
  /*   padding: 50px 0 35px; */
/* } */

.woosq-product .thumbnails .slick-track {
  max-height: none;
}

.out-of-stock-badge,
p.stock.out-of-stock {
  display: none !important;
}

@media screen and (min-width: 768px) {
  #contact_form {
    grid-template-columns: repeat(2, 1fr);
  }

  #contact_form > div:last-child {
    grid-column: 1 / -1;
  }

  .about-founder-row > div:last-child > div {
    padding-top: calc(var(--gap) / 2) !important;
    padding-bottom: calc(var(--gap) / 2 - 35px) !important;
  }

  .about-founder-row > div > div {
    padding-left: calc(var(--gap) / 2) !important;
    padding-right: calc(var(--gap) / 2) !important;
  }

  .about-founder-row.vc_row-has-fill {
    position: relative;
    isolation: isolate;
  }

  .about-founder-row.vc_row-has-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - var(--height));
    z-index: -1;
    display: block !important;
    background: white;
  }

  .contact-company-row > div:last-child > div {
    padding-top: var(--gap) !important;
    padding-bottom: var(--gap) !important;
  }

  .contact-company-row .company-image img {
    height: var(--height);
    object-position: top;
  }

  .single-post .page-title,
  .single-post .ct-featured-image,
  .single-post #main .entry-content {
    padding-left: 5%;
    padding-right: 5%;
  }

  .contact-company-row.column-gap > div:last-child {
    padding-right: var(--column-gap) !important;
  }

  .vc_pageable-slide-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .home-categories-row {
    padding-left: 5%;
    padding-right: 5%;
  }

  .custom-sort-container .show-sort-container ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-regimen-row .regimen-image img {
    height: 350px;
  }

  .home-adjustment-row .vc_row.vc_inner.grid > div > div {
    min-height: 280px;
  }

  .about-intro-row {
    padding-left: 10%;
    padding-right: 10%;
  }

  .products-new-row.vc_row-has-fill {
    background-size: 40% !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about-founder-row {
    display: flex;
    flex-direction: column;
  }

  .about-founder-row > div {
    width: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-founder-row.vc_row-has-fill::before {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .single-post .page-title,
  .single-post .ct-featured-image,
  .single-post #main .entry-content {
    padding-left: 10%;
    padding-right: 10%;
  }

  .home-categories-row ul.products {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-categories-row ul.products li.product-category:nth-child(4n-2),
  .home-categories-row ul.products li.product-category:nth-child(4n-1) {
    grid-column-end: span 2;
  }

  .home-categories-row ul.products li.product-category:nth-child(4n-2) > *,
  .home-categories-row ul.products li.product-category:nth-child(4n-1) > * {
    width: 50%;
  }
  
  .home-categories-row ul.products li.product-category:is(:nth-child(4n-2),:nth-child(4n-1)) figure,
  .home-categories-row ul.products li.product-category:is(:nth-child(4n-2),:nth-child(4n-1)) figure *{
    height:100%;
  }

  /* .home-categories-row ul.products li.product-category > * {
    flex: 1;
  }

  .home-categories-row ul.products li.product-category > a,
  .home-categories-row ul.products li.product-category > a * {
    height: 100% !important;
  } */

  .home-categories-row ul.products li.product-category:nth-child(4n-2) > a,
  .home-categories-row ul.products li.product-category:nth-child(4n-2) > a *,
  .home-categories-row ul.products li.product-category:nth-child(4n-1) > a,
  .home-categories-row ul.products li.product-category:nth-child(4n-1) > a * {
    height: 100%;
  }

  .home-categories-row ul.products li.product-category:nth-child(4n-2) {
    display: flex;
    flex-direction: row-reverse;
  }

  .home-categories-row ul.products li.product-category:nth-child(4n-1) {
    display: flex;
    flex-direction: row;
  }

  .home-categories-row ul.products li.product-category:nth-child(7n-3) {
    display: flex;
    flex-direction: column-reverse;
  }

  .home-categories-row ul.products li.product-category :is(.ct-image-container, .ct-media-container) img {
    aspect-ratio: 182 / 131 !important;
  }
}

@media screen and (min-width: 1000px) {
  #main .ct-container[data-sidebar] {
    grid-template-columns: none;
    column-gap: 0;
  }

  #main .ct-container[data-sidebar] > section {
    grid-column: auto;
  }

  .custom-sort-container {
    grid-template-columns: 3fr 1fr;
  }

  .custom-sort-container .show-sort-function {
    /* position: absolute; */
    width: 100%;
  }

  #footer [data-row='middle'] > div {
    display: flex;
    justify-content: space-between;
  }

  #footer #nav_menu-2 ul.widget-menu {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 60px;
  }
}

@media screen and (min-width: 1600px) {
  #footer [data-row='middle'] > div {
    justify-content: space-evenly;
  }

  .home-regimen-row {
    position: relative;
    min-height: 65vh;
  }
}

@media screen and (max-width: 1023px) {
  .woosq-product .thumbnails img,
  .woosq-product > .product .thumbnails {
    max-height: none;
  }
}

@media screen and (max-width: 999px) {
  #footer,
  #footer .widget-title {
    text-align: center;
  }

  #footer .custom-table table {
    margin-left: auto;
    margin-right: auto;
  }

  #footer .custom-social-container {
    justify-content: center;
  }

  #footer #media_image-2 img {
    height: 25px !important;
  }

  #footer #nav_menu-2 ul.widget-menu {
    display: flex;
    align-items: center;
    gap: 5px 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  #footer #nav_menu-2 ul.widget-menu > li:not(:last-child) {
    position: relative;
    isolation: isolate;
  }

  #footer #nav_menu-2 ul.widget-menu > li:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    transform: translateX(50%);
    background: var(--paletteColor4);
    display: block !important;
  }

  #footer .custom-table-title {
    display: block;
  }

  #footer #custom_html-4 .custom-html-widget > div > div:not(:last-child),
  #footer #custom_html-5 .custom-html-widget > div > div:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .home-adjustment-row .adjustment-icon img {
    height: 60px;
  }

  .about-founder-row {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  ul.products {
    grid-template-columns: none;
  }

  .home-regimen-row .vc_row.vc_inner {
    padding: 15px;
  }

  .home-regimen-row {
    min-height: 90vh;
  }

  .product-brand-row .brand-ul ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .woocommerce-page .home-contact-row {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cr-all-reviews-shortcode ol.commentlist li .comment-text {
    padding: 15px;
  }

  .cr-all-reviews-shortcode .crstar-rating {
    top: 15px;
  }
}

#popmake-560 {
  padding: 0;
  border: none;
}

.skip-link.show-on-focus{display: none !important;}

/* ul.products li.product:not(.product-category) :is(.ct-image-container, .ct-media-container){pointer-events:none} */

@media only screen and (max-width:767.98px) {
	.woosq-popup {
    	max-height: 95vh;
    	overflow: auto;
    }
}