*{
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

/*html,body{
    width: 100%;
    height: 100%;
}*/

#ai{
    width: 100%;
    height: 100vh;
}

#back{
    width: 100%;
    height: 100vh;
}

#back img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#top{
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

#workingarea{
    position: relative;
    margin: 0 auto;
    width: 80%;
    height: 100vh;
    max-width: 1920px;
}

#nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

#nleft img{
    height: 60px;
}

#nleft, #nright{
    display: flex;
    align-items: center;
    gap: 50px;
}

#nav a{
    pointer-events: all;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Gilroy';
}

#hero{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    display: flex;
    justify-content: space-between;
    width: 100%;

}

#heroleft{
    min-width: 50%;
}

#heroleft .elem{
    height: auto;

    overflow: hidden;
}

#heroleft .elem h1
{

    line-height: 0.9;
    font-family: "kajiro";
    color: #fff;
    font-weight: 100;
    font-size: 8vw;
    height: auto;
}

#heroleft button{
    cursor: pointer;
    pointer-events: all;
    padding: 0.8vw 3vw;
    font-size: 2.2vw;
    font-family: "kajiro";
    margin-top: 2vw;
    letter-spacing: 0.05em;
}

#heroright{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 17%;
    color: #fff;
}

#heroright p{
    height: auto;
    font-size: 18px;
    text-align: right;
    font-weight: 400;
}

#heroright #imagediv{
    width: 100%;
    height: 170px;
    margin-top: 20px;
    margin-bottom: 30px;
    /* background-image: url(../images/humanandai.jpg); */
    background-size: cover;
    background-position: center;
}

#heroright p:nth-child(3){
    margin-bottom: 100px;
}

/* Add this at the end of your CSS file */
@media screen and (max-width: 768px) {
    #workingarea {
        width: 90%;
    }

    #heroright {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    #heroright #imagediv {
        height: 200px; /* Adjust height for mobile */
    }

    #heroright p:nth-child(3) {
        margin-bottom: 30px; /* Adjust margin for mobile */
    }

    /* Add more styles as needed for mobile responsiveness */
}


