html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease;
  pointer-events: none;
}

header.header-visible {
  opacity: 1;
  z-index: 9999;
  pointer-events: auto;
}

.Section_Animated_Main {
  position: relative !important;
  height: 100vh !important;
  overflow: hidden;
  height: 100vh;
}

.Section_Animated_Main .Section_Animated {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity;
  pointer-events: none;
  z-index: 1;
}

.Section_Animated_Main .Section_Animated.is-active {
  opacity: 1;
  z-index: 2;
}

.Section_Animated_Main .Section_Animated .Section_Animated_text {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.Section_Animated_Main .Section_Animated.is-text-visible .Section_Animated_text {
  opacity: 1;
}

.Section_Animated_Main .Section_Animated.is-text-reset .Section_Animated_text {
  opacity: 0;
  transition: none;
}

.Section_Animated_Main {
  transition: transform 1s ease, opacity 1s ease, height 1s ease;
}

.Section_Animated_Main.is-gone {
  transform: translateY(-100vh);
  overflow: hidden;
  pointer-events: none;
}

.ttp-preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 100000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.ttp-preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}
