*{
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

video{
    height: 25vh;
    width: 50vh;
    display: flex;
    justify-content: center;
    z-index: 0;
}

body{
    background-image: url('img/background2.jpg');
    background-attachment:fixed;
    background-repeat: no-repeat;
    background-size: cover;
    /* backdrop-filter: blur(5px); */
    text-align: center;
    padding-top: 8%;
    border: 0;
    margin: 0;
    color: antiquewhite;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.page1{
    position: relative;
    height: 100%;
    margin:0;
    align-items: center;
}
.page2{
    position: relative;
    height: 100vh;
    margin:0;
}
.title{
    position: relative;
    font-size: 50px;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    margin: 10px
}

.sub-title{
    position: relative;
    font-size: 25px;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.heading{
    font-weight: 250;
}
.container{
    position: relative;
    width: 100%;
    background-color: black;
}
.wrapper {
    font-size: 200%;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

ol{
    list-style-type: none;
}

/* Style for the marquee list */
ul {
    display: flex; /* Use flexbox to align the items in a row */
    justify-content: space-between;
    white-space: nowrap; /* Prevent wrapping of list items */
    animation: marquee 30s linear infinite; /* Apply the marquee animation */
    padding: 0;
    margin: 0;
}

/* Style for each list item */
ul li {
    list-style-type: none; /* Remove default list bullets */
    padding: 0 20px; /* Add space between items */
}


@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0); /* Start at the beginning */
    }
    100% {
        transform: translate3d(-100vw, 0, 0); /* Move left by 50% of the content width */
    }
}

.video-container{
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    padding-top: 50px;
    white-space: nowrap;
}

.row{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5%;
    white-space: nowrap;
    font-weight: 1000;
    font-size: 290%;
}
@media screen and (max-width:991px) {
    .row{
        display: flex;
        flex-direction: column;
    }
}
.col1 .col2{
    display: flex;
    padding: 100px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
span{
    display: flex;
    flex-direction: row;
}
.col-1{
    position: sticky;
    padding-top: 100px;
}

.col-2{
    display: flex;
    flex-direction: column;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 25px;
}

.cols {
    padding-top: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, antiquewhite, red);
    background-size: 0 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-size 7s cubic-bezier(0.4, 0.0, 0.2, 1);}
.cols.scrolled {
    background-size: 100% 100%;
}
.why-thing{
    position: relative;
    text-align: justify;
    text-align: center;
    display: flex;
    flex-direction: row;
    border-color: red;
    border: 10px;
    padding-left:20%;
    padding-right: 20%;
    font-size: 20px;
}

.niche
{
    font-weight: 500;
}
/* @media  screen and (max-width: 400px) {
    
    .col-1{
        display: none;
    }
} */

#play1{
    position: absolute;
    padding-top: 70px;
    padding-left: -150px;
    z-index: 100;
}

.playbuttonimage{
    position: inherit;
    height: 50px;
    width: 50px;
    background-color: brown;
    background: none;
}

footer{
    position: relative;
    text-align: center;
    padding: 17vh;
}
@keyframes animate {
    0%{
        color: lightblue;
    }
    100%{
        color: lightcoral;
    }
}