      
      
      button {
  background: none;
  border: 2px solid;
  font: inherit;
  line-height: 1;
  margin: 0em 0.5em 0.5em 0.2em;
  padding: .5em 0.9em;
        cursor:pointer;
}
    
button {font-family: "Nord"; 
  color: var(--color);
  transition: 0.25s;
}
button:hover, button:focus {
  border-color: var(--hover);
  color: #fff;
}
    
    .up {
  --color: inherit;
  --hover: #8DD200;
}



    
    .fill:hover,
.fill:focus {
  box-shadow: inset 0 0 0 2em var(--hover);
}
    
.slide:hover,
.slide:focus {
  box-shadow: inset 6.5em 0 0 0 var(--hover);
} 
    
    .slide {

}

.fill {
  --color: inherit;
  --hover: #9046E2;
} 
    
  .up:hover,
.up:focus {
  box-shadow: inset 0 -3.25em 0 0 var(--hover);
}  
      
    
    
		#container {


}
    
    		.clogo {

width:100%; height:100px ;position:fixed; z-index:200; pointer-events: none:
}
    
        		.clogo img {

display:block; width:300px; margin:100px auto;  opacity: 0.7;
}
    
          		.arrows {

display:none;
}
    
    
.s3 {  font-family: 'Lai'; color:#fff;
  margin-top: 20vh;
  text-align: center;
}
.s3 p {
  font-size: 5vw;
}
.s3 cite {
  font-size: 3vw;
}
    

  

 
.profile-main-loader{
    left: 50% !important;
    margin-left:-100px;
    position: absolute!important;
    top: 50% !important;
    margin-top: -100px;
    width: 45px;
    z-index: -1 !important;
}

.profile-main-loader .loader {
  position: relative;
  margin: 0px auto;
  width: 200px;
  height:200px;
}
.profile-main-loader .loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.circular-loader {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.loader-path {
  stroke-dasharray: 150,200;
  stroke-dashoffset: -10;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@-webkit-keyframes color {
  0% {
    stroke: #FF7777;
  }
  40% {
    stroke:  #FF7777;
  }
  66% {
    stroke:  #FF7777;
  }
  80%, 90% {
    stroke:  #FF7777;
  }
}
@keyframes color {
  0% {
    stroke:  #FF7777;
  }
  40% {
    stroke:  #FF7777;
  }
  66% {
    stroke:  #FF7777;
  }
  80%, 90% {
    stroke:  #FF7777;
  }
}

    
 
    
    
    
    
    
.bwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 120px;
      position:absolute; bottom:15px; z-index:900;
}

.bscroll {
    position: relative;
    height: 100px; width:100px; margin-left:57px;
}

.btext {
      position: absolute;
    left: -10px;
    bottom: 0;
    font-size: 14px;
  font-family: "Nord";
    color: #000;
    animation-timing-function: cubic-bezier(1,.3,.3,1);
    animation-duration: 1.5s;
    animation-name: descenteText;
    animation-iteration-count: infinite;
}

.top {
      position: absolute;
    left: 0;
    top: 20px;
    font-size: 14px;
    color: #000;
}

.top:after {
      display: block;
    content: "";
    width: 10px;
    height: 0;
    margin-left: 17px;
    border-left: 1px solid #000;
    animation-timing-function: cubic-bezier(1,.3,.3,1);
    animation-duration: 1.5s;
    animation-name: scroll;
    animation-iteration-count: infinite;
}

.bot {
      position: absolute;
    left: 0;
    bottom: 20px;
    font-size: 14px;
    color: #000;
}

.bot:after {
      display: block;
    content: "";
    width: 10px;
    height: 0;
    margin-left: 17px;
    border-left: 1px solid #000;
    animation-timing-function: cubic-bezier(1,.3,.3,1);
    animation-duration: 1.5s;
    animation-name: scrollInverse;
    animation-iteration-count: infinite;
}


@keyframes descenteText {
    0% {
        opacity: 0;
        top: 0
    }
    30% {
        opacity: 1
    }
    60% {
        opacity: 1
    }
    to {
        opacity: 0;
        top: 100%
    }
}

@keyframes scroll {
    0% {
        height: 0;
        border: none
    }
    50% {
        height: 0;
        border-left: 1px solid #000
    }
    to {
        height: 60px;
        border-left: 1px solid #000
    }
}

@keyframes scrollInverse {
    0% {
        height: 60px;
        border-left: 1px solid #000
    }
    50% {
        height: 0;
        border-left: 1px solid #000
    }
    to {
        height: 0;
        border: none
    }
}

/* Homepage galaxy / statement / interior sections */
.galaxy .display,
.statement .display,
.hero_interior .display {
  margin: 0;
  font-family: "Lav", "Ermina", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.section-kicker,
.galaxy .scroll-cue,
.statement .micro-link {
  font-family: "Nord", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.galaxy {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #f8f5ef;
  background:
    radial-gradient(circle at 24% 28%, rgba(222, 111, 65, 0.23), transparent 26%),
    radial-gradient(circle at 78% 65%, rgba(221, 76, 28, 0.14), transparent 22%),
    #B7AFA7;
}

.galaxy__sticky {
  position: relative;
  display: grid;
  min-height: inherit;
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.galaxy__slideshow,
.galaxy__video-slide {
  position: absolute;
  inset: -2px 0;
  overflow: hidden;
}

.galaxy__slideshow {
  z-index: 0;
}

.galaxy__video-slide {
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.galaxy__video-slide--current {
  z-index: 1;
  opacity: 1;
}

.galaxy__video-slide-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  will-change: filter, transform;
}

.galaxy__sticky::after,
.hero_interior::before {
  content: "";
  position: absolute;
  inset: -2px 0;
  pointer-events: none;
}

.galaxy__sticky::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 14, 12, 0.32), rgba(14, 14, 12, 0.08)),
    linear-gradient(0deg, rgba(14, 14, 12, 0.28), transparent 55%);
}

.galaxy__title {
  z-index: 3;
  width: min(1200px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  color: #fff;
  font-size: clamp(4rem, min(10.5vw, 17vh), 13rem);
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.galaxy__title-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(0);
  transition:
    opacity var(--homepage-title-transition, 900ms) cubic-bezier(.22, .61, .36, 1),
    transform var(--homepage-title-transition, 900ms) cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.homepage-scroll-text-reveal {
  --text-animation-start-color: rgba(255, 255, 255, 0.28);
  --text-animation-end-color: currentColor;
  --text-animation-progress: 0;
  --text-animation-reveal: 0%;
  position: relative;
  display: grid;
}

.galaxy__title-text.homepage-scroll-text-reveal {
  display: grid;
}

.homepage-scroll-text-reveal__copy {
  grid-area: 1 / 1;
  align-self: center;
  justify-self: stretch;
  width: 100%;
  color: var(--text-animation-start-color);
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-shadow: inherit;
  text-wrap: inherit;
  pointer-events: none;
  white-space: normal;
}

.homepage-scroll-text-reveal__copy--reveal {
  color: var(--text-animation-end-color);
  clip-path: inset(0 0 calc(100% - var(--text-animation-reveal)) 0);
  will-change: clip-path;
}

.homepage-scroll-text-reveal__line {
  display: block;
}

.galaxy__title-text.is-ready {
  opacity: 1;
}

.galaxy__title-text.is-switching {
  opacity: 0;
  transform: translateY(0.12em);
}

.galaxy__note {
  position: absolute;
  right: clamp(1rem, 3vw, 3rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  z-index: 5;
  width: min(260px, 38vw);
  margin: 0;
  color: rgba(248, 245, 239, 0.66);
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.galaxy .scroll-cue {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 3rem);
  left: clamp(1rem, 3vw, 3rem);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.galaxy .scroll-cue::before {
  content: "";
  width: 1px;
  height: 42px;
  background: currentColor;
  transform-origin: top;
  animation: homepage-cue-line 1900ms cubic-bezier(.16, 1, .3, 1) infinite;
}

.statement {
  display: grid;
  min-height: 86vh;
  padding: clamp(6rem, 12vw, 13rem) clamp(1.1rem, 4vw, 5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
  background: #faf8f4;
  color: #11100f;
}

.statement__title {
  max-width: 840px;
  font-size: clamp(3.6rem, 8vw, 10.4rem);
  --text-animation-start-color: rgba(17, 16, 15, 0.16);
  --text-animation-end-color: #11100f;
}

.statement__copy {
  display: grid;
  max-width: 560px;
  gap: 1.45rem;
  align-self: end;
  padding-bottom: .75rem;
}

.statement__copy p {
  margin: 0;
  font-family: "Lav", "Ermina", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  letter-spacing: 0;
  line-height: 1.16;
}

.statement .micro-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .75rem;
  margin-top: .4rem;
  color: inherit;
  text-decoration: none;
}

.micro-link__arrow {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
  transition: transform 280ms cubic-bezier(.16, 1, .3, 1), border-color 280ms ease, color 280ms ease;
}

.statement .micro-link:hover .micro-link__arrow,
.statement .micro-link:focus-visible .micro-link__arrow {
  color: #e86b2b;
  border-color: #e86b2b;
}

.hero_interior {
  --hero-interior-title-size: clamp(3.6rem, min(10.5vw, 16svh), 12rem);
  --hero-interior-media-width: min(100vw, calc(100svh * 1.78));
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 4vw, 5rem) clamp(2rem, 4vw, 4rem);
  color: #fff;
  background: #2d2c24;
  isolation: isolate;
}

.hero_interior__slideshow {
  position: absolute;
  inset: 0 auto 0 50%;
  width: var(--hero-interior-media-width);
  height: 100%;
  z-index: 0;
  overflow: hidden;
  transform: translateX(-50%);
}

.interior-slideshow__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.interior-slideshow__slide--current {
  z-index: 1;
  opacity: 1;
}

.interior-slideshow__slide-image {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.82) contrast(1.06);
  will-change: filter, transform;
}

.hero_interior::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 20, 18, 0.55), rgba(21, 20, 18, 0.12)),
    linear-gradient(0deg, rgba(21, 20, 18, 0.38), transparent 45%);
}

.hero_interior__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 1320px);
  max-width: calc(100vw - clamp(2rem, 8vw, 10rem));
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
}

.hero_interior__title {
  display: grid;
  width: min(12ch, 100%);
  max-width: none;
  font-size: var(--hero-interior-title-size);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  --text-animation-start-color: rgba(255, 255, 255, 0.28);
  --text-animation-end-color: #fff;
}

.hero_interior__title.homepage-scroll-text-reveal {
  transform: translateZ(0);
}

.hero_interior__title.homepage-scroll-text-reveal .homepage-scroll-text-reveal__copy {
  text-shadow: none;
}

.hero_interior__title span {
  display: block;
}

.statement .reveal,
.hero_interior .reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 900ms ease, transform 1000ms cubic-bezier(.16, 1, .3, 1);
}

.statement .reveal.is-visible,
.hero_interior .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.statement .reveal.homepage-scroll-text-reveal,
.hero_interior .reveal.homepage-scroll-text-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.gallery .img-container img[data-homepage-lazy-src],
.gallery .img-container img[data-homepage-lazy-loaded] {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: clamp(210px, 24vw, 400px);
  object-fit: contain;
}

@keyframes homepage-cue-line {
  0%, 100% {
    transform: scaleY(.42);
    opacity: .55;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 780px) {
  .statement {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .galaxy,
  .galaxy__sticky {
    min-height: 100svh;
  }

  .galaxy__title {
    font-size: clamp(3.3rem, 16vw, 6.4rem);
  }

  .statement__title {
    font-size: clamp(3.52rem, 16.8vw, 6.4rem);
  }

  .hero_interior {
    --hero-interior-title-size: clamp(3rem, min(18vw, 11svh), 5.8rem);
    --hero-interior-media-width: 100vw;
    padding: clamp(4.5rem, 12svh, 6.5rem) clamp(1rem, 6vw, 2rem) clamp(2rem, 8svh, 4rem);
  }

  .hero_interior__content {
    max-width: 100%;
  }

  .hero_interior__title {
    max-width: 8ch;
  }

  .galaxy__note {
    width: min(240px, 72vw);
  }

  .gallery .img-container img[data-homepage-lazy-src],
  .gallery .img-container img[data-homepage-lazy-loaded] {
    min-height: min(78vw, 340px);
  }
}

@media (max-width: 550px) {
  .hero_interior {
    --hero-interior-title-size: clamp(2.4rem, min(13vw, 8svh), 4.25rem);
  }

  .hero_interior__title {
    max-width: 10ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .galaxy .scroll-cue::before,
  .statement .reveal,
  .hero_interior .reveal {
    transition: none;
    animation: none;
  }
}

    
   
   
