@font-face {
    font-family: PP mori;
    src: url(/font/ppmori-regular.woff2);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: PP mori;
    color: white;
}

html,
body {
    height: 100%;
    width: 100%;
}

#purple {
    height: 100vh;
    width: 100vw;
    top: 0;
    position: fixed;
    z-index: 100;
    background-color: #EDBFFF;
    opacity: 0;
    display: none;
    transition: opacity ease 1s;
}

.purple.active {
    z-index: 100;
    opacity: 1;
}

.slider-text {
    margin-top: 50%;
    white-space: nowrap;
    font-size: 10vw;
    color: #000000;
    display: inline-block;
    gap: 2vw;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.cursor {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: fixed;
    background-color: #EDBFFF;
    z-index: 8;
    transition: background-image ease 0.5s;
    background-position: center;
    background-size: cover;
    mix-blend-mode: difference;
}

.main {
    background-color: #0F0D0D;
    cursor: none;
}

.page1 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 9;
    padding-top: 12vw;
}

#nav {
    height: 55px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    position: fixed;
    mix-blend-mode: difference;
    z-index: 102;
}

#nav img {
    height: 26px;

}

#nav-part2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

#nav #circle {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: rgb(246, 240, 234);
}

#nav h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

#nav h4 a {
    text-decoration: none;
}

#nav h4:nth-child(1) {
    border-bottom: 1.5px solid whitesmoke;
}

.page1 h1 {
    font-size: 8vw;
    font-family: PP mori;
    font-weight: 550;
    margin-left: 6vw;
}

.page1 h2 {
    font-size: 8vw;
    font-family: pp mori;
    font-weight: 550;
    margin-left: 26vw;
}

.page1 video {
    width: 60%;
    margin-top: 10vw;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}

.page2 {
    min-height: 95vh;
    width: 100%;
    padding: 100px 5vw;
    border-bottom: 2px solid #888787;
    position: relative;
    z-index: 9;
}

.page2 h1 {
    font-size: 7vw;
    font-weight: 300;
    color: #111;
    font-family: PP mori;
}

.page2-container {
    height: 60vh;
    width: 1005;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
}

.page2-left {
    width: 30%;
}

.page2-left h2 {
    font-family: PP mori;
    font-size: 4vw;
    font-weight: 300;
    color: #111;
    line-height: 4vw;
}

.page2-right {
    font-family: PP mori;
    font-size: 4vw;
    width: 35%;
}

.page2-right p {
    font-size: 1vw;
    color: #111;
}

.page2-right button {
    width: 100%;
    border-radius: 50px;
    border: none;
    padding: 4px 0;
    background-color: #EDBFFF;
    color: #111;
    margin-top: 20px;
}

.page3 {
    min-height: 120vh;
    width: 100%;
    position: relative;
    padding-top: 8vw;
    z-index: 9;
}

.page3 h1 {
    font-size: 6.8vw;
    color: #111;
    font-weight: 580;
    margin-left: 5vw;

}

.page3-part1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.page3-part1 img {
    margin-top: 13vw;
    height: 28vw;
    margin-left: 2vw;
}

.page3-part1 video {
    height: 28vw;
    margin-top: 5vw;
    margin-right: 3vw;
}

.page4 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 9;
    padding: 15vw 3vw;
    border-bottom: 4px solid rgb(151, 147, 147);
}

.page4 h4 {
    font-size: 1.5vw;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1%;

}

.elem {
    margin-top: 3%;
    margin-bottom: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.elem img {
    position: absolute;
    opacity: 0;
    transition: all ease 0.5s;
    transform: translateY(10%) rotate(2deg);
}

.elem img:nth-child(1) {
    left: 2%;
    top: 10%;
}

.elem img:nth-child(3) {
    right: 5%;
    top: -65%;
}

.text-div {
    height: 7.8vw;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.elem h1 {
    font-size: 7.3vw;
    transition: all ease 0.5s;
    color: #ffffff;
}

.elem:hover h1 {
    transform: translateY(-100%);
    color: #EDBFFF;
}

.elem:hover img {
    opacity: 1;
    transform: translateY(0%) rotate(0deg);
}

.page5 {
    min-height: 100vh;
    width: 100%;
    z-index: 9;
    position: relative;
    padding: 6vw 4vw;
}

.page5 h2 {
    font-size: 5vw;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 2vw;
}

.box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 12vh;
    padding: 0 3vw;
    border-top: 2px solid #dadada;
}

.box:nth-last-child(1) {
    border-bottom: 2px solid #dadada;
}

footer {
    height: 100vh;
    width: 100%;
    background-color: #EDBFFF;
}