/*!************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./site/src/scss/site.scss ***!
  \************************************************************************************************************************************************************/
/*--------------------------
* Globals
*--------------------------*/
/*--------------------------
* Widgets
*--------------------------*/
.curious-zig-zag {
  --zig-zag-space: 16px;
}
.curious-zig-zag .zigzag-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
}
.curious-zig-zag .zigzag-section:last-child {
  margin-bottom: 0;
}
.curious-zig-zag .zigzag-section > .image, .curious-zig-zag .zigzag-section > .content {
  flex: 1 calc(50% - 32px);
}
.curious-zig-zag .zigzag-section > .image {
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  height: 100%;
  aspect-ratio: 1/1;
  position: relative;
}
.curious-zig-zag .zigzag-section > .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
  transition: scale 0.3s ease-in-out;
  scale: 1;
}
.curious-zig-zag .zigzag-section > .image:hover img {
  scale: 1.1;
}
.curious-zig-zag .zigzag-section > .image figcaption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  border-radius: 5px;
  padding: 8px 16px;
  background: #fff;
  font-size: 0.75rem;
  line-height: 1;
  font-style: normal;
}
.curious-zig-zag .zigzag-section > .content {
  margin: 32px 0;
}
.curious-zig-zag .zigzag-section > .content .bold-first-paragraph p:first-child {
  font-weight: 600;
}
.curious-zig-zag .zigzag-section > .content h3 {
  margin: 0 0 32px;
}
.curious-zig-zag .zigzag-section > .content blockquote {
  margin: 30px 0;
  padding: 32px 40px 32px 18px;
  border-top: 3px solid var(--e-global-color-primary);
  border-bottom: 3px solid var(--e-global-color-primary);
}
.curious-zig-zag .zigzag-section > .content blockquote p {
  margin: 0;
  font-weight: 400 !important;
}
.curious-zig-zag .zigzag-section > .content .curious-simple-button {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .curious-zig-zag {
    --zig-zag-space: 32px;
  }
  .curious-zig-zag .zigzag-section {
    align-items: center;
  }
  .curious-zig-zag.left .zigzag-section {
    flex-direction: row;
  }
  .curious-zig-zag.left .zigzag-section .content {
    padding: 0 calc(var(--zig-zag-space) / 2) 0 var(--zig-zag-space);
  }
  .curious-zig-zag.left .zigzag-section:nth-child(even) {
    flex-direction: row-reverse;
  }
  .curious-zig-zag.left .zigzag-section:nth-child(even) .content {
    padding: 0 var(--zig-zag-space) 0 calc(var(--zig-zag-space) / 2);
  }
  .curious-zig-zag.right .zigzag-section {
    flex-direction: row-reverse;
  }
  .curious-zig-zag.right .zigzag-section > .content {
    padding: 0 var(--zig-zag-space) 0 calc(var(--zig-zag-space) / 2);
  }
  .curious-zig-zag.right .zigzag-section:nth-child(even) {
    flex-direction: row;
  }
  .curious-zig-zag.right .zigzag-section:nth-child(even) > .content {
    padding: 0 calc(var(--zig-zag-space) / 2) 0 var(--zig-zag-space);
  }
}
@media screen and (min-width: 1024px) {
  .curious-zig-zag {
    --zig-zag-space: 64px;
  }
}

@keyframes MoveScaleUpInitial {
  to {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}
@keyframes MoveScaleUpEnd {
  from {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.curious-simple-button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.curious-simple-button .arrow {
  display: none;
}
.curious-simple-button.primary {
  font-weight: 400;
  color: #fff !important;
  background-color: var(--e-global-color-primary);
  padding: 0.75em 1.5em;
  display: inline-block;
  overflow: hidden !important;
  position: relative;
  transition: color 0.3s ease-in-out;
  pointer-events: auto;
}
.curious-simple-button.primary::before, .curious-simple-button.primary::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
}
.curious-simple-button.primary::before {
  content: "";
  background: var(--e-global-color-secondary);
  color: #fff;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}
.curious-simple-button.primary::after {
  content: "";
  background: var(--e-global-color-secondary);
  color: #fff;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.curious-simple-button.primary:hover, .curious-simple-button.primary:focus {
  color: #fff !important;
}
.curious-simple-button.primary:hover span, .curious-simple-button.primary:focus span {
  animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}
.curious-simple-button.primary:hover::before, .curious-simple-button.primary:focus::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.curious-simple-button.primary:hover::after, .curious-simple-button.primary:focus::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}
.curious-simple-button span {
  color: #fff;
  display: flex;
  gap: 0.6em;
  align-items: center;
  position: relative;
  z-index: 10;
}
.curious-simple-button.secondary {
  font-weight: 600;
  color: var(--e-global-color-text);
}
.curious-simple-button.secondary .arrow {
  display: inline-block;
}
.curious-simple-button.secondary .arrow rect {
  fill: var(--e-global-color-primary);
}
.curious-simple-button.secondary:hover, .curious-simple-button.secondary:focus {
  color: var(--e-global-color-secondary) !important;
}
.curious-simple-button.secondary:hover .arrow rect, .curious-simple-button.secondary:focus .arrow rect {
  fill: var(--e-global-color-secondary);
}

.curious-product-category-cloud .category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.curious-product-category-cloud .category-cloud .category-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9e9e9;
  padding: 8px;
  line-height: 1;
  color: var(--button-text, #333333);
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
  font-size: 0.95em;
}
.curious-product-category-cloud .category-cloud .category-button:hover {
  background-color: var(--e-global-color-primary);
  color: var(--button-hover-text, #ffffff);
  border-color: var(--e-global-color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.curious-main-hero-header {
  --hero-height: 500px;
  --image-width: 280px;
  --offset-x: 0px;
  --parallax-intensity: 35px;
  --animation-duration: 800ms;
  --animation-stagger: 150ms;
  --shadow-blur: 40px;
  --shadow-spread: 10px;
  --shadow-opacity: 0.5;
  --cta-text-color: #FBF8FF;
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--hero-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.curious-main-hero-header .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
.curious-main-hero-header .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .curious-main-hero-header .hero-background .hero-overlay {
    display: none;
  }
}
.curious-main-hero-header .hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.curious-main-hero-header .hero-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: visible;
}
@media (max-width: 1024px) {
  .curious-main-hero-header .hero-content-wrapper {
    max-width: 100%;
  }
}
.curious-main-hero-header .hero-content {
  position: relative;
  min-width: 600px;
  max-width: 600px;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .curious-main-hero-header .hero-content {
    min-width: auto;
    max-width: 100%;
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  .curious-main-hero-header .hero-content {
    padding: 0 30px;
  }
}
.curious-main-hero-header .hero-content .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  opacity: 1;
}
@media (max-width: 768px) {
  .curious-main-hero-header .hero-content .hero-title {
    font-size: 4rem;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .curious-main-hero-header .hero-content .hero-title {
    font-size: 4rem;
    margin-bottom: 12px;
  }
}
.curious-main-hero-header .hero-content .hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 32px 0;
  opacity: 0.95;
}
.curious-main-hero-header .hero-content .hero-description p {
  margin: 0;
}
.curious-main-hero-header .hero-content .hero-description p:not(:last-child) {
  margin-bottom: 12px;
}
.curious-main-hero-header .hero-content .hero-description strong {
  font-weight: 600;
}
.curious-main-hero-header .hero-content .hero-description em {
  font-style: italic;
}
@media (max-width: 768px) {
  .curious-main-hero-header .hero-content .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .curious-main-hero-header .hero-content .hero-description {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
}
.curious-main-hero-header .hero-content .curious-simple-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  opacity: 1;
  color: var(--cta-text-color) !important;
}
.curious-main-hero-header .hero-content .curious-simple-button span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cta-text-color) !important;
}
.curious-main-hero-header .hero-content .curious-simple-button p, .curious-main-hero-header .hero-content .curious-simple-button li {
  color: var(--cta-text-color) !important;
}
.curious-main-hero-header .hero-content .curious-simple-button .arrow {
  width: 52px;
  height: 52px;
}
.curious-main-hero-header .hero-content .hero-floating-image {
  position: absolute;
  width: var(--image-width);
  height: auto;
  top: 50%;
  will-change: transform;
  transition: transform 0.05s ease-out;
}
.curious-main-hero-header .hero-content .hero-floating-image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-filter: drop-shadow(0 15px var(--shadow-blur) rgba(0, 0, 0, var(--shadow-opacity))) drop-shadow(0 var(--shadow-spread) 0 rgba(0, 0, 0, calc(var(--shadow-opacity) * 0.3)));
          filter: drop-shadow(0 15px var(--shadow-blur) rgba(0, 0, 0, var(--shadow-opacity))) drop-shadow(0 var(--shadow-spread) 0 rgba(0, 0, 0, calc(var(--shadow-opacity) * 0.3)));
}
.curious-main-hero-header .hero-content .hero-floating-image.left-image {
  left: calc(var(--offset-x) - var(--image-width) / 2);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .curious-main-hero-header .hero-content .hero-floating-image.left-image {
    width: calc(var(--image-width) * 0.6);
    left: calc(var(--offset-x) - var(--image-width) * 0.6 / 2);
  }
}
@media (max-width: 480px) {
  .curious-main-hero-header .hero-content .hero-floating-image.left-image {
    width: calc(var(--image-width) * 0.4);
    left: calc(var(--offset-x) - var(--image-width) * 0.4 / 2);
  }
}
.curious-main-hero-header .hero-content .hero-floating-image.right-image {
  right: calc(var(--offset-x) - var(--image-width) / 2);
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .curious-main-hero-header .hero-content .hero-floating-image.right-image {
    width: calc(var(--image-width) * 0.6);
    right: calc(var(--offset-x) - var(--image-width) * 0.6 / 2);
  }
}
@media (max-width: 480px) {
  .curious-main-hero-header .hero-content .hero-floating-image.right-image {
    width: calc(var(--image-width) * 0.4);
    right: calc(var(--offset-x) - var(--image-width) * 0.4 / 2);
  }
}
@media (max-width: 768px) {
  .curious-main-hero-header {
    --hero-height: 400px;
  }
  .curious-main-hero-header .hero-floating-image {
    opacity: 0.6;
  }
}
@media (max-width: 480px) {
  .curious-main-hero-header {
    --hero-height: 350px;
  }
  .curious-main-hero-header .hero-content-wrapper {
    padding: 20px 10px;
  }
  .curious-main-hero-header .hero-floating-image {
    opacity: 0.4;
  }
}

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