@font-face {
    font-family: neu;
    src: url(./NeueHaasDisplayMediu.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(./NeueHaasDisplayLight.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 200;
    src: url(./NeueHaasDisplayRoman.ttf);
}
/* EFEAE3 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: neu;
}
html, body {
    height: 100%;
    width: 100%;
}
#main {
    /* background-color: #000; */
    position: relative;
    z-index: 10;
}
.page1 {
    min-height: 100vh;
    width: 100%;
    background-color:aliceblue;
    position: relative;
    padding: 0 2vw;
}
nav {
    padding: 2vw 0vw;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    justify-content:space-between;
}
nav img{
    width: 250px;
}
.nav-item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-item h4 {
    padding: 10px 20px;
    border: 1px solid #0000003c;
    border-radius: 50px;
    font-weight: 350;
    color: black;
    transition: all ease 0.3s;
    position: relative;
    font-size: 19px;
    overflow: hidden;
}
.nav-item h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.3s;
}
.nav-item h4:hover::after {
    bottom: 0;
    border-radius: 0;
}
.nav-item h4 a {
    color:black;
    text-decoration: none;
    position: relative;
    z-index: 10;
}
.nav-item h4:hover a {
    color: #fff;
}
nav h3 {
    display: none;
}
.content {
    height: 65vh;
    width: 100%;
    background-color: aliceblue;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid #0000003c;
    padding-bottom: 2.5vw;
}
.left h3 {
    width: 30vw;
    margin-bottom: 20px;
    font-size: 1.8vw;
    line-height: 2vw;
}
/* try button */
.t-btn{
    display: flex;
    align-items: center;
    gap: 15px;
}
.t-btn h4 {
    padding: 10px 20px;
    border: 1px solid #0000003c;
    border-radius: 50px;
    font-weight: 350;
    color: black;
    transition: all ease 0.3s;
    position: relative;
    font-size: 20px;
    overflow: hidden;
}
.t-btn h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.3s;
}
.t-btn h4:hover::after {
    bottom: 0;
    border-radius: 0;
}
.t-btn h4 a {
    color: #000000bb;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 10;
}
.t-btn h4:hover a {
    color: #fff;
}
.t-btn a{
    color: #000;
    font-size: 1.6vw;
    font-weight: 300;
}
.content h1 {
    font-size: 10vw;
    text-align: right;
    line-height: 8vw;
}
.page1 video{
    position:relative;
    border-radius: 30px;
    margin-top: 4vw;
    width: 100%;
}
.page2 {
    min-height: 100vh;
    width: 100%;
    background-color:aliceblue;
    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: 9vw;
    /* background-color: lightblue; */
    display: inline-block;
}
.circle {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: inline-block;
    /* background-color: white; */
    margin: 1vw 2vw;
}
@keyframes move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
.page2-bottom {
    height: 100vh;
    width: 100%;
    background-color: aliceblue;
    padding: 4.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}
.page2-bottom h1 {
    font-size: 4vw;
    width: 70%;
    line-height: 4vw;
}
.bottom-part2 {
    width: 40%;
    /* background-color: aqua; */
}
.bottom-part2 img {
    width: 100%;
    border-radius: 30px;
}
.bottom-part2 p {
    font-weight: 250;
    margin-top: 2vw;
    font-size: 1.5vw;
}
.page3 {
    min-height: 100vh;
    width: 100%;
    background-color:aliceblue;
    padding: 4vw 0;
}
.elem {
    height: 150px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #38383864;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 2vw;
}

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

.elem .overlay {
    height: 100%;
    width: 100%;
    background-color: rgb(92, 235, 245);
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.25s;
}

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

.fixed-image {
    height: 30vw;
    width: 24vw;
    /* background-color: red; */
    border-radius: 15px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 25%;
    display: none;
    background-size: cover;
    background-position: center;
}
.page4 {
    height: 70vh;
    width: 100%;
    background-color: #EFEAE3;
    padding: 10vw 2vw;
}

.page5 {
    height: 100vh;
    width: 100%;
    /* background-color: #EFEAE3; */
}

/* #footer {
    position: fixed;
    height: 105vh;
    width: 100%;
    background-color: #000;
    color: #fff;
    z-index: 9;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    padding: 1vw 3vw;
}
#footer h1 {
    font-size: 23vw;
}
#footer-div {
    height: 20vh;
    width: 100%;
    background-color: red;
}

#footer-bottom {
    border-top: 1px solid #dadada;
    height: 10vh;
    width: 100%;
}

#full-scr {
    height: 100vh;
    width: 100%;
    background-color: #00000070;
    position: fixed;
    z-index: 99;
    top: -100%;
    transition: all ease 0.5s;
}

#full-div1 {
    height: 50%;
    width: 100%;
    background-color: #EFEAE3;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

} */
@media (max-width:600px) {

    .page1 {
        min-height: 100vh;
        width: 100vw;
        padding: 0 0vw;
    }
    nav {
        padding: 8vw 5vw;
        background-color:white;
    }
    nav img {
        transition: all ease 0.2s;
        height: 8vh;
        width: 55vw;
    }
    .nav-item {
        display: none;
    }
    nav h3 {
        display: block;
        padding: 3vw 5vw;
        border: 1px solid #ababab;
        border-radius: 50px;
        font-size: 4vw;
        font-weight: 200;
        padding-left: 10vw;
    }
    .content {
        height: 62vh;
        width: 100%;
        /* background-color: orange; */
        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;
    }
    .t-btn a{
        color: #000;
        font-size: 4vw;
    }
    .content h1 {
        font-size: 15vw;
        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;
        /* background-color: lightblue; */
        display: inline-block;
    }
    .circle {
        height: 25px;
        width: 25px;
        border-radius: 50%;
        display: inline-block;
        margin: 2vw 2vw;
    }
    .page2-bottom {
        height: 100vh;
        width: 100%;
        /* background-color: black; */
        padding: 10vw 4vw;
        display: flex;
        align-items: flex-start;
        justify-content: space-around;
        position: relative;
        flex-direction: column;
        z-index: 9;
    }
    .page2-bottom h1 {
        font-size: 8vw;
        width: 100%;
        line-height: 9vw;
    }
    .bottom-part2 {
        width: 100%;
        /* background-color: aqua; */
    }
    .bottom-part2 img {
        width: 100%;
        border-radius: 10px;
    }
    .bottom-part2 p {
        font-weight: 200;
        margin-top: 2vw;
        font-size: 4vw;
    }
    .page2 .t-btn {
        height: 62vw;
        width: 62vw;
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(to top right, #ff2d03, #ff5c0b);
        /* background: linear-gradient(to top right,red,blue); */


        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: #000;
    position: fixed;
    z-index: 999;
    top: 0;
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loader h1{
    font-size: 4vw;
    color: transparent;
    background: linear-gradient(to right,rgb(108, 237, 247),rgb(92, 235, 245));
    -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;
      
    }
}