@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: var(--color-white);
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-weight: 500;
  font-size: var(--fz);
  font-style: normal;
  font-optical-sizing: auto;
  color: var(--color-black);
  line-height: var(--lh);
}

* {
  outline: none;
  box-sizing: border-box;
}

.screen {
  position: relative;
  width: 100%;
  height: 100lvh;
  color: #fff;
  box-sizing: border-box;
}
.screen.n1 {
  background-color: #FFD464;
}
.screen.n2 {
  background-color: #4F63B8;
  height: 150lvh;
}
.screen.n3 {
  background-color: #476848;
}
.screen > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  white-space: nowrap;
}

.test-button {
  position: fixed;
  top: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: violet;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1;
}

.test-element {
  position: fixed;
  top: 50lvh;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #F46A3D;
  z-index: 100;
}

.column-container {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  z-index: 1;
  /* opacity: 0.8; */
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-epc {
  position: relative;
  width: 100%;
  background-color: #F46A3D;
  height: 200lvh;
}
.about-epc__column {
  position: sticky;
  top: 0;
  left: 0;
}
.about-epc__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100lvh;
  background-color: #fff;
  text-align: center;
}
.about-epc__slide h2 {
  font-size: 96px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 40px;
}
.about-epc__slide p {
  font-size: 32px;
  line-height: 1.5;
}