* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

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

body::-webkit-scrollbar {
    display: none;
}

#main {
    /* background-color: #eee7e7; */
    position: relative;
    z-index: 10;
}

#page1 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
    padding: 0 2vw;
}

nav {
    padding: 2vw 0vw;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav-part2 {
    display: flex;
    align-items: center;
    /* padding: 20px; */
    gap: 1vw;
}

#nav-part2 h4 {
    padding: 10px 20px;
    border: 1px solid #0000003c;
    border-radius: 50px;
    font-weight: 700;
    color: #000000bb;
    transition: all ease 0.4s;
    position: relative;
    font-size: 18px;
    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: #000000bb;
    text-decoration: none;
    position: relative;
    z-index: 9;
}

#nav-part2 h4:hover a {
    color: #EFEAE3;
}

#center {
    height: 65vh;
    width: 100%;
    /* background-color: orange; */
    display: flex;
    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;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    line-height: 2vw;
}

#center h1 {
    font-size: 10.5vw;
    line-height: 8vw;
    text-align: right;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#page1 video {
    position: relative;
    width: 100%;
    border-radius: 30px;
    margin-top: 4vw;

}

#hero-shape {
    position: absolute;
    width: 46vw;
    height: 36vw;
    right: 0;
    top: 70vh;
}

#hero1 {
    height: 100%;
    width: 100%;
    background-color: #fe320a;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(20px);
    position: absolute;
}

#hero2 {
    height: 30vw;
    width: 30vw;
    background: linear-gradient(#fe320a, #ff330a);
    border-radius: 50%;
    position: absolute;
    filter: blur(23px);
    animation: animate2 5s linear alternate infinite;
}

#hero3 {
    height: 30vw;
    width: 30vw;
    background: linear-gradient(#fe320a, #ff580a);
    border-radius: 50%;
    position: absolute;
    filter: blur(23px);
    animation: animate1 5s linear alternate infinite;
}

@keyframes animate1 {
    from {
        transform: translate(55%, -15%);
    }

    to {
        transform: translate(0%, 10%);
    }
}

@keyframes animate2 {
    from {
        transform: translate(5%, -5%);
    }

    to {
        transform: translate(-20%, 30%);
    }
}

#page2 {
    height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 8vw 0.2vw;
    position: relative;
}

#moving-text {
    overflow-x: auto;
    white-space: nowrap;
}

#moving-text::-webkit-scrollbar {
    display: none;
}

.con {
    white-space: nowrap;
    display: inline-block;
    animation: move 10s linear infinite;
}

#moving-text h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 9vw;
    display: inline-block;
    /* background-color: aliceblue; */
}

#dot {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #ff580a;
    display: inline-block;
    margin: 1vw 2vw;
}

@keyframes move {
    from {
        transform: translateX(0);
    }

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

#page2-bottom {
    height: 80vh;
    width: 100%;
    /* background-color: #EFEAE3; */
    padding: 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;

}

#page2-bottom h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 3.4vw;
    width: 54%;
    line-height: 4vw;
}

#bottom-part2 {
    width: 20%;
}

#bottom-part2 img {
    width: 100%;
    border-radius: 18px;
}

#bottom-part2 p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
    font-size: 1.02vw;
    margin-top: 2vw;
}

#page2 #gooey {
    height: 32vw;
    width: 32vw;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to top right, #ff1c03, #fc4913fa);
    top: 80%;
    left: 22%;
    filter: blur(20px);
    animation: gooey 7s ease-in-out alternate infinite;
}

@keyframes gooey {
    from {
        filter: blur(20px);
        transform: translate(10%, -10%) skew(0);
    }

    to {
        filter: blur(30px);
        transform: translate(-10%, 10%) skew(-12deg);
    }
}

#feature {
    position: relative;
    display: inline-block;
    padding: 2vw 3vw;
}

#feature h5 {
    display: inline-block;
}

#point {
    /* justify-content: center; */
    display: inline-block;
    background-color: #ff580a;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    margin: 0.2vw 0.5vw;
}

#pagex{
    height: 5vh;
    width: 100%;
    background-color: #EFEAE3;
}

#featureb {
    background-color: #EFEAE3;
    position: relative;
    display: inline-block;
    padding: 2vw 3vw;
}

#featureb h5 {
    display: inline-block;
}

#pointb {
    /* justify-content: center; */
    display: inline-block;
    background-color: #ff580a;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    margin: 0.2vw 0.5vw;
}

#page3 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 15vw 0;
}

.elem {
    height: 100px;
    width: 100%;
    position: relative;
    /* border-top: 1px solid #000; */
    border-bottom: 1px solid #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 2vw;
}

.elem h2 {
    font-size: 3.6vw;
    position: relative;
    z-index: 9;
}

.elem .overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(255, 145, 0, 0.942);
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.2s;
}

.elem:hover .overlay {
    top: 0;
}

#fixed-image {
    height: 30vw;
    width: 23vw;
    /* background-color: #ff580a; */
    border-radius: 10px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 25%;
    display: none;
    background-size: cover;
    background-position: center;
}

#page4 {
    height: 90vh;
    width: 100%;
    background-color: #EFEAE3;
    position: relative;
    display: flex;
    padding: 0 3vw;
}

#con1 {
    flex: 0.8;
    height: 80vh;
    border: 2px solid black;
    border-top-left-radius: 5%;
    border-bottom-left-radius: 5%;
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


#con2 {
    height: 80vh;
    flex: 0.9; 
    border: 2px;
    border-top-right-radius: 5%;
    border-bottom-right-radius: 5%;
    background-color: rgb(255, 244, 244);
    display: flex;
    align-items: center;
    justify-content: center;
}


#con1 h1 {
    color: #EFEAE3;
    margin: 3px 10vw;
    font-size: 3vw; 
    text-align: left;
    cursor: pointer;
    position: relative;
}

#con1 h1::before {
    content: '';
    position: absolute;
    left: -2vw;
    top: 0%; 
    width: 2px;
    height: 0;
    background-color: #EFEAE3;
    transition: height 0.3s ease;
}

#con1 h1:hover::before {
    height: 100%;
}

#description {
    font-size: 1.3vw;
    margin-top: 15vw;
    color: #EFEAE3;
}

#imageDisplay {
    border-top-right-radius: 5%;
    border-bottom-right-radius: 5%;
    object-fit: cover;
}


#page5 {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    display: flex;
    justify-content: center;
    align-items: center;
}

#page5 h2{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: relative;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    height: 2vh;
    width: 100%;
    bottom: 35%;
    right: 86%;
}


#slider-container{
    margin: 2vw 3vw;
    padding: 2vw 3vw;
    height: 70vh;
    min-width: 90%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 90%;
    overflow: hidden;
    /* padding: vw; */
}

#image-slider {
    display: flex;
    position: relative;
    animation: slide-left 120s linear infinite;
    gap: 30px;
}

.slider-item {
    position: relative;
    text-align: center;
    height: 50vh;
    width: 27vw;
    background-color: #EFEAE3;
    border-right: 3px #000000; 
    border-radius: 1%;
    flex-shrink: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);

}

.brand-logo{
    margin-top: 4vw;
    mix-blend-mode: multiply;
    height: 9vh;
    width: 9vw;
}

.brand-description{
    font-size: 1vw;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 7vw 2vw;
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

#page6 {
    height: 100vh;
    width: 100%;
}

#footer {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: linear-gradient(to top right, #ff1c03, #ff6a0eed);
    color: #fff;
    bottom: 0;
    display: flex;
    z-index: 9;
    flex-direction: column;
    justify-content: flex-end;
}

#footer h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 22vw;
    padding: 0vw 6vw;
    z-index: 9;
    position: relative;
    margin-bottom: 0vw;
}

#footer-div {
    display: flex;
    position: relative;
    padding-bottom: 12vw;
}

#leftf {
    position: relative;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.2vw;
    left: 10%;
    top: 5%;
}

#rightf {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1vw;
    left: 65%;
    top: 5%;
}

#email-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-container {
    position: relative;
    flex-grow: 1;
}

#email-form input[type="email"] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #ccc;
    background-color: transparent;
    font-size: 16px;
    color: #ffffff;
    outline: none;
    padding-right: 30px;
}

#email-form input[type="email"]::placeholder {
    color: #ffffff;
}

#email-form button {
    position: absolute;
    right: 0;
    bottom: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#email-form button:hover {
    transform: scale(1.5);
}

#mainvid {
    position: relative;
    height: 60vh;
    width: 85%;
    background-color: #010101;
    border-top-left-radius: 35%;
    border-top-right-radius: 25%;
    position: absolute;
    left: 67%;
    top: 60%;
    filter: blur(10px);
    margin-bottom: 7vw;
    animation: gooeymain 7s ease-in-out alternate infinite;
}

@keyframes gooeymain {
    0% {
        filter: blur(20px);
        transform: translate(10%, -10%) skew(0);
    }

    25% {
        transform: translate(-10%, -15%) skew(4deg);
    }

    50% {
        filter: blur(30px);
        transform: translate(-20%, 0%) skew(-4deg);
    }

    75% {
        transform: translate(-15%, 15%) skew(2deg);
    }

    100% {
        filter: blur(20px);
        transform: translate(10%, -10%) skew(0);
    }
}


#mainvid1 {
    position: relative;
    height: 80vh;
    width: 80%;
    right: 50%;
    top: 50%;
    background-color: #010101;
    border-top-left-radius: 40%;
    border-top-right-radius: 40%;
    position: absolute;
    filter: blur(10px);
    margin-bottom: 7vw;
    animation: gooeymain1 5s ease-in-out alternate infinite;
}

@keyframes gooeymain1 {
    0% {
        filter: blur(15px);
        transform: translate(-5%, 10%) skew(0);
    }

    25% {
        transform: translate(-10%, 5%) skew(6deg);
    }

    50% {
        filter: blur(21px);
        transform: translate(-20%, 10%) skew(-12deg);
    }

    75% {
        transform: translate(-15%, 15%) skew(-6deg);
    }

    100% {
        filter: blur(15px);
        transform: translate(-5%, 10%) skew(0);
    }
}


#mainvid2 {
    position: relative;
    height: 40vh;
    width: 70%;
    right: 20%;
    top: 60%;
    background-color: #010101;
    border-top-left-radius: 45%;
    border-top-right-radius: 45%;
    position: absolute;
    /* display: block; */
    filter: blur(10px);
    margin-bottom: 7vw;
    animation: gooeymain2 5s ease-in-out alternate infinite;
}

@keyframes gooeymain2 {
    0% {
        filter: blur(15px);
        transform: translate(-5%, -10%) skew(0);
    }

    25% {
        transform: translate(10%, -15%) skew(-6deg);
    }

    50% {
        filter: blur(21px);
        transform: translate(20%, -10%) skew(12deg);
    }

    75% {
        transform: translate(15%, 5%) skew(6deg);
    }

    100% {
        filter: blur(15px);
        transform: translate(-5%, -10%) skew(0);
    }
}

#footer-bottom {
    position: relative;
    background-color: #000;
    border-top: 2px solid #dadada;
    height: 8vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer-bottom h5 {
    margin: 0;
    padding: 0;
}

#footer-bottom h5 a {
    position: relative;
    display: block;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 1vw 3vw;
    transition: transform 0.3s ease, color 0.3s ease;
    color: white;
    cursor: pointer;
    text-decoration: none;
    z-index: 10;
}

#footer-bottom h5 a:hover {
    transform: scale(1.02);
    color: #bfbfbe;
}

@media (max-width:600px) {

    #page1 {
        min-height: 100vh;
        width: 100vw;
        padding: 0 0vw;
    }

    nav {
        padding: 8vw 5vw;
        background-color: #EFEAE3;
    }

    nav img {
        transition: all ease 0.2s;
        height: 9vh;
    }

    #nav-part2 {
        display: flex;
        width: 20vw;
        margin-right: 20vw;
    }

    nav h3 {
        display: block;
        padding: 3vw 5vw;
        border: 1px solid #ababab;
        border-radius: 50px;
        font-size: 4vw;
        font-weight: 200;
        padding-left: 10vw;
    }

    #center {
        height: 62vh;
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        border-bottom: 1px solid #0000003c;
        padding: 7vw 5vw;
        padding-bottom: 10vw;
        flex-direction: column-reverse;
        position: relative;
        z-index: 9;
    }

    #left h3 {
        width: 80%;
        font-size: 5.5vw;
        line-height: 6vw;
    }

    #center h1 {
        font-size: 17vw;
        text-align: right;
        line-height: 15vw;
    }

    #page1 video {
        position: relative;
        border-radius: 15px;
        margin-top: 4vw;
        height: 70vh;
        object-fit: cover;
        object-position: center;
        width: 92%;
        margin-left: 4%;
    }

    #page2 {
        min-height: 100vh;
        width: 100%;
        background-color: #EFEAE3;
        padding: 8vw 0;
        position: relative;
    }

    #moving-text {
        overflow-x: auto;
        white-space: nowrap;
    }

    #moving-text::-webkit-scrollbar {
        display: none;
    }

    .con {
        white-space: nowrap;
        display: inline-block;
        animation-name: move;
        animation-duration: 10s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

    #moving-text h1 {
        font-size: 15vw;
        display: inline-block;
    }

    #dot {
        height: 25px;
        width: 25px;
        border-radius: 50%;
        display: inline-block;
        background-color: #FE320A;
        margin: 2vw 2vw;
    }

    #page2-bottom {
        height: 90vh;
        width: 100%;
        padding: 10vw 4vw;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        position: relative;
        flex-direction: column;
        z-index: 9;
    }

    #page2-bottom h1 {
        font-size: 8.2vw;
        width: 100%;
        line-height: 9vw;
    }

    #bottom-part2 {
        width: 70%;
    }

    #bottom-part2 img {
        width: 100%;
        border-radius: 10px;
    }

    #bottom-part2 p {
        font-weight: 200;
        margin-top: 2vw;
        font-size: 3vw;
    }

    #page2 #gooey {
        height: 62vw;
        width: 62vw;
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(to top right, #ff2d03, #ff5c0b);
        top: 58%;
        left: 25%;
        filter: blur(20px);
        animation-name: gooey;
        animation-duration: 6s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-timing-function: ease-in-out;
    }

}

#loader{
    height: 100%;
    width: 100%;
    background-color: #000000;
    position: fixed;
    z-index: 999;
    top: 0;
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}


#loader h1{
    font-size: 4vw;
    color: transparent;
    background: linear-gradient(to right,orange,orangered);
    -webkit-background-clip: text;
    position: absolute;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: linear;
}

#loader h1:nth-child(2){
    animation-delay: 2s;
}
#loader h1:nth-child(3){
    animation-delay: 3s;
}

@keyframes load {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@media (max-width:600px) {
    #loader h1{
        font-size: 9vw;
    }
}