@font-face {
    font-family: neu;
    src: url(./NeueHaasDisplayBoldItalic.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(./NeueHaasDisplayLight.ttf);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: neu;
}

html,
body {
    height: 100%;
    width: 100%;
}

#main {
    /* background-color: black; */
    position: relative;
    z-index: 10;
}

#page1 {
    min-height: 100vh;
    width: 100%;
    background-color: #EEEAE1;
    position: relative;
    padding: 0 2vw;
}

nav {
    padding: 2vw 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav-part2 {
    display: flex;
    align-items: center;
    gap: 1vw;
}

#nav-part2 h4 {
    padding: 10px 20px;
    border: 1px solid #00000055;
    border-radius: 50px;
    font-weight: 500;
    color: #000000b1;
    font-size: 18px;
    position: relative;
    transition: all ease 0.4s;
    overflow: hidden;
}

#nav-part2 h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
}

#nav-part2 h4:hover::after {
    bottom: 0;
    border-radius: 0;
}

#nav-part2 h4 a {
    color: #000000b1;
    text-decoration: none;
    position: relative;
    z-index: 9;
}

#nav-part2 h4:hover a {
    color: white;
}

#centre {
    height: 35vw;
    width: 100%;
    display: flex;
    /* background-color: orange; */
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #0000003c;
    padding-bottom: 2.5vw;
}

#left h3 {
    width: 25vw;
    font-size: 1.8vw;
    line-height: 2vw;
}

#centre h1 {
    font-size: 10vw;
    text-align: right;
    line-height: 8vw;
}

#page1 video {
    position: relative;
    border-radius: 35px;
    margin-top: 4vw;
    width: 100%;
}

#hero-shape {
    position: absolute;
    width: 46vw;
    height: 36vw;
    right: 0;
    top: 75vh;
}

#hero-1 {
    background-color: orangered;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    width: 100%;
    height: 100%;
    filter: blur(20px);
    position: absolute;
}

#hero-2 {
    background: linear-gradient(orangered, rgb(255, 111, 0));
    border-radius: 50%;
    width: 30vw;
    height: 30vw;
    filter: blur(20px);
    position: absolute;
    animation-name: anime2;
    animation-duration: 3.5s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

#hero-3 {
    background: linear-gradient(orangered, rgb(255, 111, 0));
    border-radius: 50%;
    width: 30vw;
    height: 30vw;
    filter: blur(20px);
    position: absolute;
    animation-name: anime1;
    animation-duration: 3.5s;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

@keyframes anime1 {
    from {
        transform: translate(55%, 3%);
    }

    to {
        transform: translate(0%, 10%);
    }
}

@keyframes anime2 {
    from {
        transform: translate(5%, -5%);
    }

    to {
        transform: translate(-20%, 30%);
    }
}

#page2 {
    width: 100%;
    min-height: 100vh;
    background-color: #EEEAE1;
    padding: 6vw;
    position: relative
}

.con {
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#moving-text {
    white-space: nowrap;
    overflow-x: auto;

}

#moving-text::-webkit-scrollbar {
    /* to remove the scrollbar under the moving text */
    display: none;
}

#moving-text h1 {
    font-size: 9vw;
    display: inline-block;
}

#gola {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: #FE320B;
    display: inline-block;
    margin: 1vw 3vw;

}

@keyframes move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }

}

#page2-bottom {
    height: 80vh;
    width: 100%;
    padding: 4.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

#page2-bottom h1 {
    font-size: 4vw;
    width: 50%;
    line-height: 3vw;
}

#bottom-part2 {
    width: 25%;

}

#bottom-part2 img {
    width: 100%;
    border-radius: 20px;
}

#bottom-part2 p {
    font-weight: 100;
    margin-top: 2vw;

}

#page2 #gooey {
    height: 30vw;
    width: 30vw;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to top right, #FE320B, #ff6804d7);
    top: 58%;
    left: 25%;
    filter: blur(20px);
    animation-name: gooey;
    animation-duration: 3.5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes gooey {
    from {
        transform: translate(10%, -10%) skew(0);
        /* skew is used to transform shape of and object halka sa tilt kindoff */
    }

    to {
        transform: translate(-10%, 10%)skew(-12deg);
    }
}


#page3 {
    min-height: 100vh;
    width: 100%;
    background-color: #EEEAE1;
    padding: 4vw, 0;
}

.element {
    height: 150px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.201);
    padding: 0 2vw;
    overflow: hidden;
}

.element h2 {
    font-size: 3vw;
    position: relative;
    z-index: 9;
}

.element .overlay {
    height: 100%;
    width: 100%;
    background-color: orange;
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.4s;
}

.element:hover .overlay {
    top: 0;
}


#fixed-image {
    height: 30vw;
    width: 24vw;
    border-radius: 10px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 30%;
    display: none;
    background-size: cover;
    background-position: center;
}

#page4 {
    height: 70vh;
    width: 100%;
    background-color: #EEEAE1;
    padding: 10vw 2vw;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 30%;
    padding: 0 1vw;
    border-left: 1px solid rgba(33, 33, 33, 0.604);
}
.swiper-slide img {
    width: 25%;
    height: 25%;
    image-orientation: f;
}



#page5 {
    height: 100vh;
    width: 100%;
}

#footer {
    position: fixed;
    /* padding: 2vw 3vw;  */
    z-index: 9;
    height: 100vh;
    width: 100%;
    background-color: #000;
    color: #fff;
    bottom: 0;
    display: flex;
    /* align-items: flex-end; */
    justify-content: flex-end;
    flex-direction: column;
}

#footer h1 {
    padding: 2vw 3vw;
    font-size: 22vw;
    padding-bottom: 15vh;
    line-height: 6vw;
    position: relative;
}


#footer-bottom {
    padding: 2vw 3vw;
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



#animate {
    top: 45%;
    height: 15vw;
    width: 100%;
    filter: blur(30px);
    position: absolute;
    display: flex;
    justify-content: space-evenly;

}

#bottom-left {
    height: 20vw;
    width: 20vw;
    background: linear-gradient(#FE320B, #ff5404db);
    border-radius: 50%;
    animation: gooey-bottom-l;
    animation-duration: 4.5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.19, -0.19, 0.5, 1.48);
    animation-direction: alternate;


}

#bottom-right {
    height: 20vw;
    width: 20vw;
    background: linear-gradient(#FE320B, #ff5404db);
    border-radius: 50%;
    animation: gooey-bottom-r;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.19, -0.19, 0.5, 1.48);
    animation-direction: alternate;

}

@keyframes gooey-bottom-r {
    from {
        transform: translate(50%, -10%) skew(0);
    }

    to {
        transform: translate(-10%, -30%)skew(15deg);
    }
}

@keyframes gooey-bottom-l {
    from {
        transform: translate(10%, -10%) skew(0);
    }

    to {
        transform: translate(-10%, 50%)skew(-12deg);
    }

}