@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&family=Poppins: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&family=Press+Start+2P&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins";
}

html, body{
    height: 100%;
    width: 100%;
    background-color: #FAF8F3;
}

.cursor{
    height: 7vw;
    width: 7vw;
    background-color: #ff5f38;
    border-radius: 50%;
    position: fixed;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%,-50%);
}
.cursor h2{
    color: black;
    font-size: 1vw;
    font-weight: 500;
}
.page-1{
    height: 100vh;
    width: 100%;
}

.page-1 video{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    position: absolute;
}

.page-1-content{
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 3vw;
}
nav h4, h3{
    font-size: 22px;
    font-weight: 400;
    cursor: default;
}
.page-1-content h1{
    color: white;
    font-family: "poppins";
    font-size: 20vw;
    list-style: 1;
    margin: 0;
    padding: 0;
    font-weight: 500;
    cursor: default;
    position: absolute;
    text-transform: uppercase;
    bottom: -10%;
    /* background-color: red; */
}

.page-1-content h1 span{
    font-family: "poppins";
}

.page2{
    height: 100vh;
    width: 100%;
    background-color: #FAF8F3;
    padding: 1vw 2vw;
}
.page2-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: red; */
    width: 100%;
    padding-top: 4vw;
    padding-bottom: 1vw;
    border-bottom: 1px solid #0a0505;
}
.page2-div h3{
    font-size: 26px;
}
.paragraph p{
    font-size: 68px;
    width: 100%;
    /* background-color: red; */
    padding: 1vw 2.5vw;
    overflow: hidden;
    line-height: 0.75;
}
.paragraph p span{
    /* background-color: blue; */
    display: inline-block;
    transform: translateY(150%);
    /* overflow: hidden; */
}

.page3{
    min-height: 100vh;
    width: 100%;
    padding-bottom: 5vw;
}

.page3-top{
    /* background-color: red; */
    text-align: center;
}

.page3-top h4{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.page3-top h4 span{
    background-color: black;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 500;
}

.page3-top h4 i{
    margin-left: 15px;
}

.page3-top h2{
    font-size: 4vw;
    font-weight: 500;
    line-height: 1;
}
.page3-bottom{
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: red; */
    padding: 0 4vw;
    margin-top: 10vw;
}

.page3-elem1{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.page3-elem1 h2{
    font-weight: 500;
    font-size: 27px;
}

.page3-elem2{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: blue; */
}
.page3-elem2 .box{
    width: 32%;
    height: 100%;
    position: relative;
    /* background-color: pink; */
    /* transition: all linear .6s; */
}

.box video{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}


.box img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all linear .6s;
}
.box:hover img{
    opacity: 0;
}
.page4{
    height: 100vh;
    width: 100%;
    /* background-color: red; */
    padding: 1vw 1vw;
    margin-top: 4vw;
}
.page4-div{
    width: 100%;
    padding: 1vw 2vw;
    border-bottom: 1px solid black;
}
.page4-div h3{
    font-size: 27px;
    line-height: 1;
}

.page4-paragraph p{
    font-size: 68px;
    width: 100%;
    /* background-color: red; */
    padding: 1vw 2.5vw;
    overflow: hidden;
    line-height: 0.75;
}
.page4-paragraph p span{
    /* background-color: blue; */
    display: inline-block;
    transform: translateY(150%);
    /* overflow: hidden; */
}