#page2{
    min-height:100vh ;
    width: 100%;
    position: relative;
overflow: hidden;
padding: 0 20px;
    background: #efeae3;
}

#page2 video{
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 30px;
    
    border: none;
    margin-bottom: 50px;

}
#page2 #marquee{
    display: flex;
    gap: 64px;
    /* background: #c59494; */
    position: relative;
width: fit-content; 
    animation: marquee 10s linear 0s infinite ;
   /* transform: skewY(-3deg); */
}


#page2 #marquee h1{
    font-size: 90px;
    position: relative;

}

#page2 #marquee h1::before{
    content: "";
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #fe330a;
    position: absolute;
    top: 50%;
    left:-50px;
    transform: translate(0,-50%);

}

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

    to{
         transform: translateX(calc(-50% - 32px)) ;
    }
}
