@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Gothic&display=swap");
:root {
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}

body {
  font-family: "Barlow", "Inter", sans-serif;
  color: #65635f;
}

.btn {
  border: none;
}

#cursor-animation {
  display: block;
  opacity: 0.125;
  transition: opacity 0.24s cubic-bezier(0.6, 0, 0.4, 1);
  will-change: opacity;
  mix-blend-mode: darken;
}
#cursor-animation .circle {
  position: fixed;
  border-radius: 50%;
  width: 5vw;
  background: rgba(210, 124, 86, 0.25);
  pointer-events: none;
}
#cursor-animation .circle:before, #cursor-animation .circle:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  aspect-ratio: inherit;
  border-radius: inherit;
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#cursor-animation .circle:before {
  transform: rotate(45deg) scale(0.75) translate(-10%, 10%);
  background-color: rgba(210, 124, 86, 0.25);
  -webkit-animation-name: cursor1;
  animation-name: cursor1;
}
#cursor-animation .circle:after {
  transform: rotate(135deg) scale(0.5) translate(10%, -10%);
  background-color: rgba(210, 124, 86, 0.25);
  -webkit-animation-name: cursor2;
  animation-name: cursor2;
}
@-webkit-keyframes cursor1 {
  0% {
    transform: rotate(4deg) scale(0.75) translate(-10%, 10%);
    opacity: 1;
  }
  100% {
    transform: rotate(0) scale(2.75) translate(0, 0);
    opacity: 0.5;
  }
}
@keyframes cursor1 {
  0% {
    transform: rotate(4deg) scale(0.75) translate(-10%, 10%);
    opacity: 1;
  }
  100% {
    transform: rotate(0) scale(2.75) translate(0, 0);
    opacity: 0.5;
  }
}
@-webkit-keyframes cursor2 {
  0% {
    transform: rotate(135deg) scale(0.5) translate(10%, -10%);
    opacity: 1;
  }
  100% {
    transform: rotate(0) scale(2) translate(0, 0);
    opacity: 0.75;
  }
}
@keyframes cursor2 {
  0% {
    transform: rotate(135deg) scale(0.5) translate(10%, -10%);
    opacity: 1;
  }
  100% {
    transform: rotate(0) scale(2) translate(0, 0);
    opacity: 0.75;
  }
}

.mobile-menu {
  --bs-offcanvas-width: 576px;
  --bs-offcanvas-border-width: 0;
  height: 100svh;
  overflow-x: clip;
}
.mobile-menu:after {
  content: "";
  position: absolute;
  top: var(--header-height);
  left: 0;
  transform: translate(-25%, -25%);
  width: 250px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #d27c56;
  -webkit-filter: blur(170px);
  filter: blur(170px);
  pointer-events: none;
}
@supports (-webkit-touch-callout: none) {
  .mobile-menu:after {
    opacity: 0.25;
  }
}
@supports (-moz-appearance: none) {
  .mobile-menu:after {
    opacity: 0.25;
  }
}
@media (max-width: 576px) {
  .mobile-menu {
    --bs-offcanvas-width: 100vw;
  }
}
.mobile-menu .header {
  position: relative;
  width: auto;
  background-color: #fcfcf9;
}
.mobile-menu .header .btn-menu i {
  font-size: 20px;
  -webkit-text-stroke: 0.75px #101828;
}
.mobile-menu .header .btn-menu:hover i {
  -webkit-text-stroke: 1px #101828;
}
.mobile-menu .offcanvas-body {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.mobile-menu .header__nav ul {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  z-index: 999999;
  background-color: #fcfcf9;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-animation-name: main-wrap;
  animation-name: main-wrap;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.splash-screen__wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fcfcf9;
  aspect-ratio: 4/5;
  padding: 32.5px;
  box-shadow: 0 0 130px -32.5px #e2c5ac;
  -webkit-animation-name: logo-wrap-in, logo-wrap-out;
  animation-name: logo-wrap-in, logo-wrap-out;
  -webkit-animation-duration: 0.25s, 0.25s;
  animation-duration: 0.25s, 0.25s;
  -webkit-animation-timing-function: linear, linear;
  animation-timing-function: linear, linear;
  -webkit-animation-iteration-count: 1, 1;
  animation-iteration-count: 1, 1;
  -webkit-animation-delay: 0s, 1.75s;
  animation-delay: 0s, 1.75s;
  -webkit-animation-fill-mode: backwards, forwards;
  animation-fill-mode: backwards, forwards;
}
.splash-screen__wrap:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  pointer-events: none;
}
.splash-screen__wrap:before {
  left: 0;
  background: linear-gradient(to right, rgba(246, 246, 235, 0.75) 90%, transparent 100%);
}
.splash-screen__logo {
  display: flex;
  align-items: flex-end;
  gap: 7.15px;
}
.splash-screen__letter {
  display: flex;
  flex-direction: column;
}
.splash-screen__letter-part {
  width: 50%;
  height: 50%;
}
.splash-screen__letter-part:first-of-type {
  transform: skew(-30deg, 0deg);
  transform-origin: bottom;
}
.splash-screen__letter-part:last-of-type {
  transform: skew(30deg, 0deg);
  transform-origin: top;
}
.splash-screen__letter--1 {
  width: 13px;
  height: 65px;
}
.splash-screen__letter--2 {
  width: 26px;
  height: 48.75px;
}
.splash-screen__letter--dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.splash-screen:before, .splash-screen:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.25;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.splash-screen:before {
  left: 0;
  background: linear-gradient(to left, #d27c56 0%, #fcfcf9 100%);
  -webkit-animation-name: bg-position-right;
  animation-name: bg-position-right;
}
.splash-screen:after {
  right: 0;
  background: linear-gradient(to right, #e2c5ac 0%, #fcfcf9 100%);
  -webkit-animation-name: bg-position-left;
  animation-name: bg-position-left;
}
.splash-screen__logo {
  position: absolute;
  -webkit-animation-name: logo-move;
  animation-name: logo-move;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.splash-screen__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 81.25px;
  height: 113.75px;
  overflow: hidden;
  border-radius: 11.375px;
}
.splash-screen__inner--left {
  background: #e2c5ac;
  background: linear-gradient(to right, #e2c5ac 0%, rgba(252, 252, 249, 0.5) 100%);
  transform-origin: right;
  transform: perspective(65px) rotateY(-15deg);
}
.splash-screen__inner--left .splash-screen__logo {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  left: -100%;
}
.splash-screen__inner--left .splash-screen__letter--1,
.splash-screen__inner--left .splash-screen__letter-part,
.splash-screen__inner--left .splash-screen__letter--dot {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.splash-screen__inner--right {
  background: linear-gradient(to left, #f6f6eb 0%, rgba(252, 252, 249, 0.5) 100%);
  transform-origin: left;
  transform: perspective(65px) rotateY(15deg);
}
.splash-screen__inner--right .splash-screen__letter--1,
.splash-screen__inner--right .splash-screen__letter-part,
.splash-screen__inner--right .splash-screen__letter--dot {
  -webkit-animation-name: fade-out;
  animation-name: fade-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes main-wrap {
  0% {
    background-color: #fcfcf9;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
  }
  25% {
    background-color: #fcfcf9;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
  }
  75% {
    background-color: transparent;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
  }
  100% {
    background-color: transparent;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
  }
}
@keyframes main-wrap {
  0% {
    background-color: #fcfcf9;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
  }
  25% {
    background-color: #fcfcf9;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
  }
  75% {
    background-color: transparent;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
  }
  100% {
    background-color: transparent;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
  }
}
@-webkit-keyframes logo-move {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
@keyframes logo-move {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
@-webkit-keyframes logo-wrap-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes logo-wrap-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes logo-wrap-in {
  from {
    transform: perspective(650px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  to {
    transform: perspective(650px);
  }
}
@keyframes logo-wrap-in {
  from {
    transform: perspective(650px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  to {
    transform: perspective(650px);
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 0;
    background-color: #65635f;
  }
  75% {
    opacity: 0.75;
    background-color: #65635f;
  }
  100% {
    opacity: 0;
    background-color: #65635f;
  }
}
@keyframes fade-out {
  0% {
    opacity: 0;
    background-color: #65635f;
  }
  75% {
    opacity: 0.75;
    background-color: #65635f;
  }
  100% {
    opacity: 0;
    background-color: #65635f;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    background-color: #65635f;
  }
  25% {
    opacity: 0.75;
    background-color: #65635f;
  }
  100% {
    opacity: 0;
    background-color: #65635f;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    background-color: #65635f;
  }
  25% {
    opacity: 0.75;
    background-color: #65635f;
  }
  100% {
    opacity: 0;
    background-color: #65635f;
  }
}
@-webkit-keyframes bg-position-left {
  0% {
    transform: translateX(100%);
  }
  15% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes bg-position-left {
  0% {
    transform: translateX(100%);
  }
  15% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@-webkit-keyframes bg-position-right {
  0% {
    transform: translateX(-100%);
  }
  15% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes bg-position-right {
  0% {
    transform: translateX(-100%);
  }
  15% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

body {
  --header-height: 100px;
}

.section {
  width: 100vw;
  overflow-x: clip;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  height: var(--header-height);
  background-color: #fcfcf9;
  transition: box-shadow 0.5s;
}
@supports (-webkit-hyphens: none) {
  .header {
    z-index: 999;
  }
  .header:has(.mobile-menu.show) {
    z-index: 1000;
  }
}
.header-fixed {
  box-shadow: 0 8px 16px -8px rgba(226, 197, 172, 0.5);
  transition: box-shadow 0.25s;
}
.header .btn-menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transform: rotateX(180deg);
  -webkit-text-stroke: 0.5px transparent;
  transition: 0.125s;
}
.header .btn-menu i {
  font-size: 28px;
  color: #101828;
}
.header .btn-menu:hover {
  -webkit-text-stroke: 0.5px #101828;
}
.header .row {
  height: var(--header-height);
  justify-content: space-between;
  align-items: center;
}
.header .row .col {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__logo {
  width: 50px;
  height: 50px;
}
.header__logo a {
  display: inline-block;
}
.header__logo a img {
  width: auto;
  max-height: 100%;
}
.header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 22px;
}
.header__nav a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 6px 0;
  text-decoration: none;
  color: #65635f;
  font-size: 14px;
  letter-spacing: 0.875px;
  line-height: normal;
  text-transform: uppercase;
  -webkit-text-stroke: 1px transparent;
  transition: 0.125s;
}
.header__nav a:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
}
.header__nav a:hover, .header__nav a.active {
  -webkit-text-stroke: 1px #65635f;
}
.header__nav a:hover:before, .header__nav a.active:before {
  border-color: #65635f;
}
.header__nav a.active {
  pointer-events: none;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__search, .header__cart {
  width: 22px;
  font-size: 22px;
  color: #65635f;
  -webkit-text-stroke: 0.5px transparent;
  transition: 0.125s;
}
.header__search:hover, .header__cart:hover {
  -webkit-text-stroke: 0.5px #65635f;
}
.header__lang ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.header__lang ul li {
  border-right: 1px solid #65635f;
  padding-right: 10px;
  margin-right: 10px;
}
.header__lang ul li:last-of-type {
  border: none;
  padding: 0;
  margin: 0;
}
.header__lang a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #65635f;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  -webkit-text-stroke: 0.5px transparent;
  transition: 0.125s;
}
.header__lang a:before {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: transparent;
  transition: 0.125s;
}
.header__lang a:hover, .header__lang a.active {
  -webkit-text-stroke: 0.5px #65635f;
}
.header__lang a:hover:before, .header__lang a.active:before {
  background-color: #e2c5ac;
}
.header__lang a.active {
  pointer-events: none;
}

.section__footer {
  position: relative;
  padding-top: calc(var(--header-height) / 2);
  margin-top: auto;
  overflow-y: clip;
}
.section__footer:before, .section__footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999;
}
.section__footer:before {
  width: 200%;
  height: 100%;
  transform: translateX(-25%);
  background-color: #fcfcf9;
}
.section__footer:after {
  width: 250px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #d27c56;
  -webkit-filter: blur(170px);
  filter: blur(170px);
}
@supports (-webkit-touch-callout: none) {
  .section__footer:after {
    opacity: 0.25;
  }
}
@supports (-moz-appearance: none) {
  .section__footer:after {
    opacity: 0.25;
  }
}
.section__footer-inner {
  position: relative;
  z-index: 999;
}
.section__footer-logo {
  opacity: 0.5;
}
.section__footer-logo img {
  max-height: 65px;
  width: auto;
}
@media (max-width: 991.98px) {
  .section__footer-navwrap {
    margin-top: 40px;
  }
}
.section__footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section__footer-nav li a {
  text-decoration: none;
  color: #667085;
  font-size: 15px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: -0.3px;
  -webkit-text-stroke: 0.5px transparent;
  transition: 0.125s;
}
.section__footer-nav li a:hover {
  -webkit-text-stroke: 0.5px #667085;
}
@media (max-width: 991.98px) {
  .section__footer-contact {
    margin-top: 40px;
  }
}
.section__footer-contact-label {
  display: flex;
  align-items: center;
  gap: 4px;
}
.section__footer-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #65635f;
  background-color: transparent;
}
.section__footer-dot:last-of-type {
  background-color: #65635f;
}
.section__footer-contact-text {
  margin-left: 8px;
  color: #65635f;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.section__footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
}
.section__footer-contact-phone, .section__footer-contact-email {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: #65635f;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  -webkit-text-stroke: 0.5px transparent;
  transition: 0.125s;
}
.section__footer-contact-phone:hover, .section__footer-contact-email:hover {
  -webkit-text-stroke: 0.5px #65635f;
}
.section__footer-call {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8px;
  text-decoration: none;
  color: #d27c56;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  -webkit-text-stroke: 0.5px transparent;
  transition: 0.125s;
}
.section__footer-call:hover {
  -webkit-text-stroke: 0.5px #d27c56;
}
.section__footer-bottom {
  position: relative;
  height: var(--header-height);
  align-items: center;
  z-index: 999;
}
@media (max-width: 991.98px) {
  .section__footer-bottom {
    margin-top: 40px;
  }
}
.section__footer-social {
  display: flex;
  gap: 32px;
  opacity: 0.75;
}
.section__footer-social a {
  color: #65635f;
  font-size: 18px;
  -webkit-text-stroke: 0.5px transparent;
  transition: 0.125s;
}
.section__footer-social a:hover {
  -webkit-text-stroke: 0.5px #65635f;
}
.section__footer-copyright {
  color: #65635f;
  text-align: right;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
}
@media (max-width: 991.98px) {
  .section__footer-copyright {
    text-align: left;
  }
}

.section-hero {
  position: relative;
  top: 0;
  left: 0;
  height: calc(100svh - var(--header-height));
  margin-top: var(--header-height);
  z-index: 1;
}
.section-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section-hero__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}
.section-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section-hero .swiper {
  width: 100%;
  height: 100%;
}
.section-hero .swiper .swiper-wrapper {
  counter-reset: slide;
  left: -10vw;
}
@media (max-width: 991.98px) {
  .section-hero .swiper .swiper-wrapper {
    left: 0;
    top: -20svh;
  }
}
.section-hero .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "League Gothic";
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .section-hero .swiper .swiper-slide {
    left: 10vw;
    justify-content: flex-start;
  }
}
.section-hero .swiper .swiper-slide .swiper-slide-content {
  position: relative;
  counter-increment: slide;
  transition: 0.25s;
}
.section-hero .swiper .swiper-slide .swiper-slide-content a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s;
}
.section-hero .swiper .swiper-slide .swiper-slide-content:before {
  content: counter(slide, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.25em;
}
.section-hero .swiper .swiper-slide-active {
  pointer-events: auto;
}
.section-hero .swiper .swiper-slide-active .swiper-slide-content:after {
  content: "\f285";
  font-family: "Bootstrap-icons";
  font-size: 16px;
  text-align: right;
  padding-left: calc(100% - 10px);
  line-height: 1px;
  position: absolute;
  left: 0;
  bottom: 0.75em;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.25s;
}
.section-hero .swiper .swiper-slide-active .swiper-slide-content:hover a {
  text-shadow: 0 0 128px rgba(210, 124, 86, 0.5);
}
.section-hero .swiper .swiper-slide-active .swiper-slide-content:hover:after {
  width: calc(100% + 10px);
  padding-left: calc(100% - 0px);
}

.section-innocence {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 100vw;
  min-height: 100svh;
  background-color: #fcfcf9;
}
.section-innocence [class^=container] {
  height: auto;
}
.section-innocence__row {
  min-height: 100svh;
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 991.98px) {
  .section-innocence__row {
    flex-wrap: wrap;
  }
}
.section-innocence__logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-innocence__logo {
  width: 50px;
  height: 50px;
  flex-grow: 1;
}
.section-innocence__back-wrap {
  flex-grow: 0;
  height: 12px;
}
.section-innocence__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #101828;
  text-decoration: none;
  line-height: 0;
  transition: gap 0.125s;
}
.section-innocence__back i {
  font-size: 20px;
}
.section-innocence__back span {
  padding-bottom: 2px;
}
.section-innocence__back:hover {
  gap: 4px;
}
.section-innocence__meta-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: #667085;
  line-height: normal;
}
@media (max-width: 991.98px) {
  .section-innocence__meta-col {
    justify-content: center;
  }
}
.section-innocence__meta-list {
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-rows: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 6px;
}
@media (max-width: 991.98px) {
  .section-innocence__meta-list {
    font-size: 14px;
  }
}
.section-innocence__meta-row {
  display: contents;
}
.section-innocence__meta-label {
  grid-column: 1;
  font-weight: 500;
  text-align: right;
}
.section-innocence__meta-value {
  grid-column: 2;
}
.section-innocence__main {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: calc(var(--header-height) + 5svh);
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-innocence__main {
    padding-bottom: 40px;
  }
}
.section-innocence__author {
  margin-bottom: 22px;
  color: #667085;
  line-height: normal;
}
.section-innocence__title {
  color: #65635f;
}
@media (min-width: 1200px) {
  .section-innocence__title {
    font-size: 2.75rem;
  }
}
.section-innocence__desc {
  margin-top: 10svh;
  color: #667085;
  text-align: justify;
}
@media (max-width: 991.98px) {
  .section-innocence__desc {
    margin-top: 5svh;
  }
}
.section-innocence__buy {
  position: relative;
  margin-top: 22px;
  text-align: right;
  display: flex;
  align-items: center;
}
.section-innocence__buy:before {
  content: "";
  line-height: 1px;
  height: 1px;
  background-color: #101828;
  pointer-events: none;
  width: 100%;
  order: 1;
}
.section-innocence__buy:after {
  content: "\f285";
  font-family: "Bootstrap-icons";
  font-size: 16px;
  color: #101828;
  text-align: right;
  line-height: 1px;
  order: 2;
  position: relative;
  right: 10px;
}
.section-innocence__buy-link {
  position: relative;
  right: 0;
  display: inline-block;
  padding-bottom: 2px;
  font-weight: 500;
  text-decoration: none;
  color: #101828;
  white-space: nowrap;
  line-height: normal;
  order: 3;
  transition: 0.125s;
}
.section-innocence__buy-link:hover {
  right: 5px;
}
.section-innocence__content-col {
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-innocence__content-col {
    max-width: 100%;
  }
}
.section-innocence__content-col-row {
  padding-top: calc(var(--header-height) / 4);
  margin-bottom: 5vh;
  align-items: center;
}
@media (max-width: 991.98px) {
  .section-innocence__content-col-row {
    gap: 5svh;
  }
}
.section-innocence__image-col {
  padding: 0;
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  max-width: calc(50vw - 3rem);
}
@media (max-width: 991.98px) {
  .section-innocence__image-col {
    position: static;
    max-width: 100%;
    height: auto;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-bottom: calc(var(--bs-gutter-x) * 0.5 + 20px);
    order: 2;
    width: 100%;
    flex: 0 0 100%;
  }
}
.section-innocence__image-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
@media (max-width: 991.98px) {
  .section-innocence__image-box {
    max-width: 100%;
  }
}
.section-innocence__image {
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  display: block;
  background-color: #e2c5ac;
}

.section-wallowing {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 100vw;
  min-height: 100svh;
  background-color: #fcfcf9;
}
.section-wallowing [class^=container] {
  height: auto;
}
.section-wallowing__row {
  min-height: 100svh;
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 991.98px) {
  .section-wallowing__row {
    flex-wrap: wrap;
  }
}
.section-wallowing__logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-wallowing__logo {
  width: 50px;
  height: 50px;
  flex-grow: 1;
}
.section-wallowing__back-wrap {
  flex-grow: 0;
  height: 12px;
}
.section-wallowing__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #101828;
  text-decoration: none;
  line-height: 0;
  transition: gap 0.125s;
}
.section-wallowing__back i {
  font-size: 20px;
}
.section-wallowing__back span {
  padding-bottom: 2px;
}
.section-wallowing__back:hover {
  gap: 4px;
}
.section-wallowing__meta-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: #667085;
  line-height: normal;
}
@media (max-width: 991.98px) {
  .section-wallowing__meta-col {
    justify-content: center;
  }
}
.section-wallowing__meta-list {
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-rows: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 6px;
}
@media (max-width: 991.98px) {
  .section-wallowing__meta-list {
    font-size: 14px;
  }
}
.section-wallowing__meta-row {
  display: contents;
}
.section-wallowing__meta-label {
  grid-column: 1;
  font-weight: 500;
  text-align: right;
}
.section-wallowing__meta-value {
  grid-column: 2;
}
.section-wallowing__main {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: calc(var(--header-height) + 5svh);
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-wallowing__main {
    padding-bottom: 40px;
  }
}
.section-wallowing__author {
  margin-bottom: 22px;
  color: #667085;
  line-height: normal;
}
.section-wallowing__title {
  color: #65635f;
}
@media (min-width: 1200px) {
  .section-wallowing__title {
    font-size: 2.75rem;
  }
}
.section-wallowing__desc {
  margin-top: 10svh;
  color: #667085;
  text-align: justify;
}
@media (max-width: 991.98px) {
  .section-wallowing__desc {
    margin-top: 5svh;
  }
}
.section-wallowing__buy {
  position: relative;
  margin-top: 22px;
  text-align: right;
  display: flex;
  align-items: center;
}
.section-wallowing__buy:before {
  content: "";
  line-height: 1px;
  height: 1px;
  background-color: #101828;
  pointer-events: none;
  width: 100%;
  order: 1;
}
.section-wallowing__buy:after {
  content: "\f285";
  font-family: "Bootstrap-icons";
  font-size: 16px;
  color: #101828;
  text-align: right;
  line-height: 1px;
  order: 2;
  position: relative;
  right: 10px;
}
.section-wallowing__buy-link {
  position: relative;
  right: 0;
  display: inline-block;
  padding-bottom: 2px;
  font-weight: 500;
  text-decoration: none;
  color: #101828;
  white-space: nowrap;
  line-height: normal;
  order: 3;
  transition: 0.125s;
}
.section-wallowing__buy-link:hover {
  right: 5px;
}
.section-wallowing__content-col {
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-wallowing__content-col {
    max-width: 100%;
  }
}
.section-wallowing__content-col-row {
  padding-top: calc(var(--header-height) / 4);
  margin-bottom: 5vh;
  align-items: center;
}
@media (max-width: 991.98px) {
  .section-wallowing__content-col-row {
    gap: 5svh;
  }
}
.section-wallowing__image-col {
  padding: 0;
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  max-width: calc(50vw - 3rem);
}
@media (max-width: 991.98px) {
  .section-wallowing__image-col {
    position: static;
    max-width: 100%;
    height: auto;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-bottom: calc(var(--bs-gutter-x) * 0.5 + 20px);
    order: 2;
    width: 100%;
    flex: 0 0 100%;
  }
}
.section-wallowing__image-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
@media (max-width: 991.98px) {
  .section-wallowing__image-box {
    max-width: 100%;
  }
}
.section-wallowing__image {
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  display: block;
  background-color: #e2c5ac;
}

.section-resistance {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 100vw;
  min-height: 100svh;
  background-color: #fcfcf9;
}
.section-resistance [class^=container] {
  height: auto;
}
.section-resistance__row {
  min-height: 100svh;
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 991.98px) {
  .section-resistance__row {
    flex-wrap: wrap;
  }
}
.section-resistance__logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-resistance__logo {
  width: 50px;
  height: 50px;
  flex-grow: 1;
}
.section-resistance__back-wrap {
  flex-grow: 0;
  height: 12px;
}
.section-resistance__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #101828;
  text-decoration: none;
  line-height: 0;
  transition: gap 0.125s;
}
.section-resistance__back i {
  font-size: 20px;
}
.section-resistance__back span {
  padding-bottom: 2px;
}
.section-resistance__back:hover {
  gap: 4px;
}
.section-resistance__meta-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: #667085;
  line-height: normal;
}
@media (max-width: 991.98px) {
  .section-resistance__meta-col {
    justify-content: center;
  }
}
.section-resistance__meta-list {
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-rows: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 6px;
}
@media (max-width: 991.98px) {
  .section-resistance__meta-list {
    font-size: 14px;
  }
}
.section-resistance__meta-row {
  display: contents;
}
.section-resistance__meta-label {
  grid-column: 1;
  font-weight: 500;
  text-align: right;
}
.section-resistance__meta-value {
  grid-column: 2;
}
.section-resistance__main {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: calc(var(--header-height) + 5svh);
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-resistance__main {
    padding-bottom: 40px;
  }
}
.section-resistance__author {
  margin-bottom: 22px;
  color: #667085;
  line-height: normal;
}
.section-resistance__title {
  color: #65635f;
}
@media (min-width: 1200px) {
  .section-resistance__title {
    font-size: 2.75rem;
  }
}
.section-resistance__desc {
  margin-top: 10svh;
  color: #667085;
  text-align: justify;
}
@media (max-width: 991.98px) {
  .section-resistance__desc {
    margin-top: 5svh;
  }
}
.section-resistance__buy {
  position: relative;
  margin-top: 22px;
  text-align: right;
  display: flex;
  align-items: center;
}
.section-resistance__buy:before {
  content: "";
  line-height: 1px;
  height: 1px;
  background-color: #101828;
  pointer-events: none;
  width: 100%;
  order: 1;
}
.section-resistance__buy:after {
  content: "\f285";
  font-family: "Bootstrap-icons";
  font-size: 16px;
  color: #101828;
  text-align: right;
  line-height: 1px;
  order: 2;
  position: relative;
  right: 10px;
}
.section-resistance__buy-link {
  position: relative;
  right: 0;
  display: inline-block;
  padding-bottom: 2px;
  font-weight: 500;
  text-decoration: none;
  color: #101828;
  white-space: nowrap;
  line-height: normal;
  order: 3;
  transition: 0.125s;
}
.section-resistance__buy-link:hover {
  right: 5px;
}
.section-resistance__content-col {
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-resistance__content-col {
    max-width: 100%;
  }
}
.section-resistance__content-col-row {
  padding-top: calc(var(--header-height) / 4);
  margin-bottom: 5vh;
  align-items: center;
}
@media (max-width: 991.98px) {
  .section-resistance__content-col-row {
    gap: 5svh;
  }
}
.section-resistance__image-col {
  padding: 0;
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  max-width: calc(50vw - 3rem);
}
@media (max-width: 991.98px) {
  .section-resistance__image-col {
    position: static;
    max-width: 100%;
    height: auto;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-bottom: calc(var(--bs-gutter-x) * 0.5 + 20px);
    order: 2;
    width: 100%;
    flex: 0 0 100%;
  }
}
.section-resistance__image-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
@media (max-width: 991.98px) {
  .section-resistance__image-box {
    max-width: 100%;
  }
}
.section-resistance__image {
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  display: block;
  background-color: #e2c5ac;
}

.section-warm {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 100vw;
  min-height: 100svh;
  background-color: #fcfcf9;
}
.section-warm [class^=container] {
  height: auto;
}
.section-warm__row {
  min-height: 100svh;
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 991.98px) {
  .section-warm__row {
    flex-wrap: wrap;
  }
}
.section-warm__logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-warm__logo {
  width: 50px;
  height: 50px;
  flex-grow: 1;
}
.section-warm__back-wrap {
  flex-grow: 0;
  height: 12px;
}
.section-warm__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #101828;
  text-decoration: none;
  line-height: 0;
  transition: gap 0.125s;
}
.section-warm__back i {
  font-size: 20px;
}
.section-warm__back span {
  padding-bottom: 2px;
}
.section-warm__back:hover {
  gap: 4px;
}
.section-warm__meta-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: #667085;
  line-height: normal;
}
@media (max-width: 991.98px) {
  .section-warm__meta-col {
    justify-content: center;
  }
}
.section-warm__meta-list {
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-rows: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 6px;
}
@media (max-width: 991.98px) {
  .section-warm__meta-list {
    font-size: 14px;
  }
}
.section-warm__meta-row {
  display: contents;
}
.section-warm__meta-label {
  grid-column: 1;
  font-weight: 500;
  text-align: right;
}
.section-warm__meta-value {
  grid-column: 2;
}
.section-warm__main {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: calc(var(--header-height) + 5svh);
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-warm__main {
    padding-bottom: 40px;
  }
}
.section-warm__author {
  margin-bottom: 22px;
  color: #667085;
  line-height: normal;
}
.section-warm__title {
  color: #65635f;
}
@media (min-width: 1200px) {
  .section-warm__title {
    font-size: 2.75rem;
  }
}
.section-warm__desc {
  margin-top: 10svh;
  color: #667085;
  text-align: justify;
}
@media (max-width: 991.98px) {
  .section-warm__desc {
    margin-top: 5svh;
  }
}
.section-warm__buy {
  position: relative;
  margin-top: 22px;
  text-align: right;
  display: flex;
  align-items: center;
}
.section-warm__buy:before {
  content: "";
  line-height: 1px;
  height: 1px;
  background-color: #101828;
  pointer-events: none;
  width: 100%;
  order: 1;
}
.section-warm__buy:after {
  content: "\f285";
  font-family: "Bootstrap-icons";
  font-size: 16px;
  color: #101828;
  text-align: right;
  line-height: 1px;
  order: 2;
  position: relative;
  right: 10px;
}
.section-warm__buy-link {
  position: relative;
  right: 0;
  display: inline-block;
  padding-bottom: 2px;
  font-weight: 500;
  text-decoration: none;
  color: #101828;
  white-space: nowrap;
  line-height: normal;
  order: 3;
  transition: 0.125s;
}
.section-warm__buy-link:hover {
  right: 5px;
}
.section-warm__content-col {
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-warm__content-col {
    max-width: 100%;
  }
}
.section-warm__content-col-row {
  padding-top: calc(var(--header-height) / 4);
  margin-bottom: 5vh;
  align-items: center;
}
@media (max-width: 991.98px) {
  .section-warm__content-col-row {
    gap: 5svh;
  }
}
.section-warm__image-col {
  padding: 0;
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  max-width: calc(50vw - 3rem);
}
@media (max-width: 991.98px) {
  .section-warm__image-col {
    position: static;
    max-width: 100%;
    height: auto;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-bottom: calc(var(--bs-gutter-x) * 0.5 + 20px);
    order: 2;
    width: 100%;
    flex: 0 0 100%;
  }
}
.section-warm__image-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
@media (max-width: 991.98px) {
  .section-warm__image-box {
    max-width: 100%;
  }
}
.section-warm__image {
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  display: block;
  background-color: #e2c5ac;
}

.section-vonnegut {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 100vw;
  min-height: 100svh;
  background-color: #fcfcf9;
}
.section-vonnegut [class^=container] {
  height: auto;
}
.section-vonnegut__row {
  min-height: 100svh;
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 991.98px) {
  .section-vonnegut__row {
    flex-wrap: wrap;
  }
}
.section-vonnegut__logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-vonnegut__logo {
  width: 50px;
  height: 50px;
  flex-grow: 1;
}
.section-vonnegut__back-wrap {
  flex-grow: 0;
  height: 12px;
}
.section-vonnegut__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #101828;
  text-decoration: none;
  line-height: 0;
  transition: gap 0.125s;
}
.section-vonnegut__back i {
  font-size: 20px;
}
.section-vonnegut__back span {
  padding-bottom: 2px;
}
.section-vonnegut__back:hover {
  gap: 4px;
}
.section-vonnegut__meta-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: #667085;
  line-height: normal;
}
@media (max-width: 991.98px) {
  .section-vonnegut__meta-col {
    justify-content: center;
  }
}
.section-vonnegut__meta-list {
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-rows: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 6px;
}
@media (max-width: 991.98px) {
  .section-vonnegut__meta-list {
    font-size: 14px;
  }
}
.section-vonnegut__meta-row {
  display: contents;
}
.section-vonnegut__meta-label {
  grid-column: 1;
  font-weight: 500;
  text-align: right;
}
.section-vonnegut__meta-value {
  grid-column: 2;
}
.section-vonnegut__main {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: calc(var(--header-height) + 5svh);
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-vonnegut__main {
    padding-bottom: 40px;
  }
}
.section-vonnegut__author {
  margin-bottom: 22px;
  color: #667085;
  line-height: normal;
}
.section-vonnegut__title {
  color: #65635f;
}
@media (min-width: 1200px) {
  .section-vonnegut__title {
    font-size: 2.75rem;
  }
}
.section-vonnegut__desc {
  margin-top: 10svh;
  color: #667085;
  text-align: justify;
}
@media (max-width: 991.98px) {
  .section-vonnegut__desc {
    margin-top: 5svh;
  }
}
.section-vonnegut__buy {
  position: relative;
  margin-top: 22px;
  text-align: right;
  display: flex;
  align-items: center;
}
.section-vonnegut__buy:before {
  content: "";
  line-height: 1px;
  height: 1px;
  background-color: #101828;
  pointer-events: none;
  width: 100%;
  order: 1;
}
.section-vonnegut__buy:after {
  content: "\f285";
  font-family: "Bootstrap-icons";
  font-size: 16px;
  color: #101828;
  text-align: right;
  line-height: 1px;
  order: 2;
  position: relative;
  right: 10px;
}
.section-vonnegut__buy-link {
  position: relative;
  right: 0;
  display: inline-block;
  padding-bottom: 2px;
  font-weight: 500;
  text-decoration: none;
  color: #101828;
  white-space: nowrap;
  line-height: normal;
  order: 3;
  transition: 0.125s;
}
.section-vonnegut__buy-link:hover {
  right: 5px;
}
.section-vonnegut__content-col {
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-vonnegut__content-col {
    max-width: 100%;
  }
}
.section-vonnegut__content-col-row {
  padding-top: calc(var(--header-height) / 4);
  margin-bottom: 5vh;
  align-items: center;
}
@media (max-width: 991.98px) {
  .section-vonnegut__content-col-row {
    gap: 5svh;
  }
}
.section-vonnegut__image-col {
  padding: 0;
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  max-width: calc(50vw - 3rem);
}
@media (max-width: 991.98px) {
  .section-vonnegut__image-col {
    position: static;
    max-width: 100%;
    height: auto;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-bottom: calc(var(--bs-gutter-x) * 0.5 + 20px);
    order: 2;
    width: 100%;
    flex: 0 0 100%;
  }
}
.section-vonnegut__image-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
@media (max-width: 991.98px) {
  .section-vonnegut__image-box {
    max-width: 100%;
  }
}
.section-vonnegut__image {
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  display: block;
  background-color: #e2c5ac;
}

.section-about {
  display: none;
  opacity: 0;
  position: fixed;
  top: 100svh;
  left: 0;
  min-height: 100svh;
  background-color: #fcfcf9;
}
.section-about [class^=container] {
  height: auto;
}
.section-about__row {
  min-height: 100svh;
}
@media (max-width: 991.98px) {
  .section-about__row {
    flex-wrap: wrap;
  }
}
.section-about__main {
  margin: 20px 0;
  padding-bottom: 5svh;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 991.98px) {
  .section-about__main {
    height: auto;
    padding-bottom: 0;
  }
}
.section-about__author {
  margin-bottom: 22px;
  color: #667085;
  line-height: normal;
}
.section-about__title {
  color: #65635f;
}
@media (min-width: 1200px) {
  .section-about__title {
    font-size: 2.75rem;
  }
}
.section-about__desc {
  margin-top: 10svh;
  color: #667085;
}
@media (max-width: 991.98px) {
  .section-about__desc {
    margin-top: 5svh;
  }
}
.section-about__contact {
  position: relative;
  margin-top: 22px;
  text-align: right;
  max-width: 768px;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .section-about__contact {
    max-width: 100%;
  }
}
.section-about__contact:before {
  content: "";
  line-height: 1px;
  height: 1px;
  background-color: #101828;
  pointer-events: none;
  width: 100%;
  order: 1;
}
.section-about__contact:after {
  content: "\f285";
  font-family: "Bootstrap-icons";
  font-size: 16px;
  color: #101828;
  text-align: right;
  line-height: 1px;
  order: 2;
  position: relative;
  right: 10px;
}
.section-about__contact-link {
  position: relative;
  right: 0;
  display: inline-block;
  padding-bottom: 2px;
  font-weight: 500;
  text-decoration: none;
  color: #101828;
  white-space: nowrap;
  line-height: normal;
  order: 3;
  transition: 0.125s;
}
.section-about__contact-link:hover {
  right: 5px;
}
.section-about__content-col {
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-about__content-col {
    max-width: 100%;
  }
}
.section-about__content-col > div {
  max-width: 768px;
}
@media (max-width: 991.98px) {
  .section-about__content-col > div {
    max-width: 100%;
  }
}
.section-about__image-col {
  padding-top: var(--header-height);
  height: auto;
}
@media (max-width: 991.98px) {
  .section-about__image-col {
    position: static;
    max-width: 100%;
    height: auto;
    padding-top: 0;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-bottom: calc(var(--bs-gutter-x) * 0.5);
    order: 2;
    width: 100%;
    flex: 0 0 100%;
  }
}
.section-about__image-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .section-about__image-box {
    max-width: 100%;
    justify-content: center;
  }
}
.section-about__image {
  z-index: 1;
  max-height: calc(50svh - var(--header-height) / 2);
  max-width: calc(50vw - var(--header-height) / 2);
  min-height: 320px;
  min-width: 320px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center right;
  object-position: center right;
  display: block;
}
@media (max-width: 991.98px) {
  .section-about__image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    min-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .section-about .section__footer {
    order: 3;
  }
}

.section-artwork {
  display: none;
  opacity: 0;
  position: fixed;
  top: 100svh;
  left: 0;
  min-height: 100svh;
  background-color: #fcfcf9;
}
.section-artwork [class^=container] {
  height: auto;
}
.section-artwork__row {
  min-height: 100svh;
}
.section-artwork__main {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-bottom: 5svh;
}
@media (max-width: 991.98px) {
  .section-artwork__main {
    padding-bottom: 40px;
    height: auto;
  }
}
.section-artwork__title {
  color: #65635f;
  align-self: flex-start;
}
@media (min-width: 1200px) {
  .section-artwork__title {
    font-size: 2.75rem;
  }
}
.section-artwork__content-col {
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
}
.section-artwork__gallery {
  margin: auto 0;
  padding-top: 5svh;
  width: 100%;
  overflow: visible;
  --offset: 20vw;
}
.section-artwork__gallery .swiper-wrapper {
  align-items: center;
  box-sizing: border-box;
}
.section-artwork__gallery .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 25px;
  transform: translateX(calc(var(--offset) * -1));
  transition: background-color 0.125s, box-shadow 0.25s, transform 0.125s, margin 0.25s;
}
@media (max-width: 575.98px) {
  .section-artwork__gallery .swiper-slide {
    transform: unset;
  }
}
.section-artwork__gallery .swiper-slide-active {
  margin-left: var(--offset);
}
@media (max-width: 767.98px) {
  .section-artwork__gallery .swiper-slide-active {
    margin-right: var(--offset);
  }
}
@media (max-width: 575.98px) {
  .section-artwork__gallery .swiper-slide-active {
    margin-left: unset;
    margin-right: unset;
  }
}
.section-artwork__gallery .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide {
  margin-right: var(--offset);
}
@media (max-width: 1399.98px) {
  .section-artwork__gallery .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide {
    margin-right: unset;
  }
  .section-artwork__gallery .swiper-slide-next + .swiper-slide + .swiper-slide {
    margin-right: var(--offset);
  }
}
@media (max-width: 1199.98px) {
  .section-artwork__gallery .swiper-slide-next + .swiper-slide + .swiper-slide {
    margin-right: unset;
  }
  .section-artwork__gallery .swiper-slide-next + .swiper-slide {
    margin-right: var(--offset);
  }
}
@media (max-width: 991.98px) {
  .section-artwork__gallery .swiper-slide-next + .swiper-slide {
    margin-right: unset;
  }
  .section-artwork__gallery .swiper-slide-next {
    margin-right: var(--offset);
  }
}
@media (max-width: 767.98px) {
  .section-artwork__gallery .swiper-slide-next {
    margin-right: unset;
  }
}
.section-artwork__gallery .swiper-button-prev,
.section-artwork__gallery .swiper-button-next {
  width: 44px;
  height: 44px;
}
.section-artwork__gallery .swiper-button-prev::after,
.section-artwork__gallery .swiper-button-next::after {
  display: none;
}
.section-artwork__gallery .swiper-button-next {
  right: 16px;
  top: 5svh;
  transform: translateY(-50%);
  transition: 0.125s;
}
.section-artwork__gallery .swiper-button-next:hover {
  right: 12px;
}
@media (max-width: 991.98px) {
  .section-artwork__gallery .swiper-button-next {
    top: unset;
    right: 0;
    left: unset;
    transform: translateY(50%);
  }
  .section-artwork__gallery .swiper-button-next:hover {
    right: -4px;
  }
}
.section-artwork__gallery .swiper-button-prev {
  right: 16px;
  top: unset;
  left: unset;
  transform: translateY(50%) rotate(180deg);
  transition: 0.125s;
}
.section-artwork__gallery .swiper-button-prev:hover {
  right: 20px;
}
@media (max-width: 991.98px) {
  .section-artwork__gallery .swiper-button-prev {
    left: 0;
    right: unset;
  }
  .section-artwork__gallery .swiper-button-prev:hover {
    left: -4px;
  }
}
.section-artwork__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 25px 0 20px 0;
  transition: background-color 0.125s, box-shadow 0.25s, transform 0.125s;
}
.section-artwork__card:hover {
  background-color: #fcfcf9;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
  transform: scale(1.025);
}
.section-artwork__card:hover [class$=__shop] {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 991.98px) {
  .section-artwork__card {
    padding: 20px 0;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    transform: scale(1) !important;
  }
}
.section-artwork__card img {
  width: 80%;
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1/1;
  background: transparent;
}
.section-artwork__info {
  margin-top: 16px;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.section-artwork__art-title {
  color: #101828;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 4px;
}
.section-artwork__author {
  color: #667085;
  font-size: 14px;
}
.section-artwork__style {
  color: #667085;
  font-size: 14px;
  font-style: italic;
}
.section-artwork__shop {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.125s;
}
@media (max-width: 991.98px) {
  .section-artwork__shop {
    opacity: 1;
    pointer-events: auto;
  }
}
.section-artwork__price {
  color: #101828;
  font-weight: 700;
}
.section-artwork__cart {
  width: 32px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #101828;
  color: #fff;
  box-shadow: 0 0 0 1px transparent;
  transition: 0.125s;
}
.section-artwork__cart:hover {
  box-shadow: 0 0 0 1px #101828;
}

.section-contact {
  display: none;
  opacity: 0;
  position: fixed;
  top: 100svh;
  left: 0;
  min-height: 100svh;
  background-color: #fcfcf9;
}
.section-contact [class^=container] {
  height: auto;
}
.section-contact__row {
  min-height: 100svh;
}
@media (max-width: 991.98px) {
  .section-contact__row {
    flex-wrap: wrap;
  }
}
.section-contact__main {
  margin: 20px 0;
  padding-bottom: 5svh;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 991.98px) {
  .section-contact__main {
    padding-bottom: 0;
    height: auto;
  }
}
.section-contact__author {
  margin-bottom: 22px;
  color: #667085;
  line-height: normal;
}
.section-contact__title {
  color: #65635f;
}
@media (min-width: 1200px) {
  .section-contact__title {
    font-size: 2.75rem;
  }
}
.section-contact__desc {
  margin-top: 10svh;
  color: #667085;
}
@media (max-width: 991.98px) {
  .section-contact__desc {
    margin-top: 5svh;
  }
}
.section-contact__name {
  color: #65635f;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
@media (max-width: 767.98px) {
  .section-contact__name {
    font-size: 18px;
  }
}
.section-contact__address {
  margin-top: 5svh;
  color: #65635f;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .section-contact__address {
    font-size: 16px;
  }
}
.section-contact__label {
  font-weight: 700;
}
.section-contact__location {
  font-weight: 700;
}
.section-contact__details {
  margin-top: 5svh;
  color: #65635f;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .section-contact__details {
    font-size: 16px;
  }
}
.section-contact__link {
  color: #65635f;
  text-decoration: none;
  -webkit-text-stroke: 0.5px transparent;
  transition: 0.125s;
}
.section-contact__link:hover {
  -webkit-text-stroke: 0.5px #65635f;
}
.section-contact__social {
  max-width: 420px;
  margin-top: 5svh;
  padding-top: 16px;
  border-top: 1px solid rgba(101, 99, 95, 0.5);
  display: flex;
  gap: 12px;
  opacity: 0.75;
}
@media (max-width: 991.98px) {
  .section-contact__social {
    max-width: 100%;
  }
}
.section-contact__social a {
  color: #65635f;
  font-size: 28px;
  -webkit-text-stroke: 0.5px transparent;
  transition: 0.125s;
}
.section-contact__social a:hover {
  -webkit-text-stroke: 0.5px #65635f;
}
.section-contact__contact {
  position: relative;
  margin-top: 22px;
  text-align: right;
  max-width: 768px;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .section-contact__contact {
    max-width: 100%;
  }
}
.section-contact__contact:before {
  content: "";
  line-height: 1px;
  height: 1px;
  background-color: #101828;
  pointer-events: none;
  width: 100%;
  order: 1;
}
.section-contact__contact:after {
  content: "\f285";
  font-family: "Bootstrap-icons";
  font-size: 16px;
  color: #101828;
  text-align: right;
  line-height: 1px;
  order: 2;
  position: relative;
  right: 10px;
}
.section-contact__contact-link {
  position: relative;
  right: 0;
  display: inline-block;
  padding-bottom: 2px;
  font-weight: 500;
  text-decoration: none;
  color: #101828;
  white-space: nowrap;
  line-height: normal;
  order: 3;
  transition: 0.125s;
}
.section-contact__contact-link:hover {
  right: 5px;
}
.section-contact__content-col {
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .section-contact__content-col {
    max-width: 100%;
  }
}
.section-contact__content-col > div {
  max-width: 768px;
}
@media (max-width: 991.98px) {
  .section-contact__content-col > div {
    max-width: 100%;
  }
}
.section-contact__image-col {
  padding-top: var(--header-height);
  height: auto;
}
@media (max-width: 991.98px) {
  .section-contact__image-col {
    position: static;
    max-width: 100%;
    height: auto;
    padding-top: 0;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-bottom: calc(var(--bs-gutter-x) * 0.5);
    order: 2;
    width: 100%;
    flex: 0 0 100%;
  }
}
.section-contact__image-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991.98px) {
  .section-contact__image-box {
    max-width: 100%;
    justify-content: center;
  }
}
.section-contact__image {
  z-index: 1;
  max-height: calc(50svh - var(--header-height) / 2);
  max-width: calc(50vw - var(--header-height) / 2);
  min-height: 320px;
  min-width: 320px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center right;
  object-position: center right;
  display: block;
}
@media (max-width: 991.98px) {
  .section-contact__image {
    width: 100%;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    min-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .section-contact .section__footer {
    order: 3;
  }
}

.section-shop {
  position: absolute;
  top: 0;
  min-height: 100svh;
  background-color: #fcfcf9;
}
.section-shop [class^=container] {
  height: auto;
}
.section-shop__row {
  min-height: 100svh;
}
.section-shop__main {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
}
.section-shop__title {
  color: #65635f;
}
@media (min-width: 1200px) {
  .section-shop__title {
    font-size: 2.75rem;
  }
}
.section-shop__content-col {
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
}