@media only screen and (max-width: 1000px) {

    /* Font Size Adjustment*/

    h1{
        font-size: 100px;
        transform: translateX(-45%) translateY(-33px) rotate(-90deg);
        position: absolute;
        top: 0;
        left: 0;
        /* height: 100px; */
        width: 1000px;
        line-break: strict;
    }


    .Title{
        position: absolute;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100px;
    }

    h2{
        font-size: 40px; 
    }


    p{
        font-size: 20px; 
    }



    .Footer p{
        font-size: 20px; 
        gap: 5px;
    }


    main{
        padding-left: 110px;
        padding-right: 0px;
        padding-top: 25px;
    }

    .Menu{
        gap: 20px;  
        margin-bottom: 75px;
    }


    .Gradient-Area{
        z-index: 99;
        position: fixed;
        bottom: 262.5px;
        left: 0;
        width:  100vw;
        height:  75px;
        background-image: linear-gradient(rgba(0,0,0,0), var(--Black), rgba(0,0,0,0));

    

    }

    .Logo-and-Img-Sidebar{
        height: 235px;
        width: 100vw; 
        top: auto;
        bottom: 65px;
        background-position: -3px;
        background-size: 120%;
    }

    .Video-Container{
        height: 235px;
        width: 100vw; 
        top: auto;
        bottom: 65px;
        flex-direction: row;
    }

    .Video-Logo {
        width: 235px;
        height: 235px;
    }

    .Footer-Container{
        margin-bottom: 275px;
    }

    /* SCROLL TEXT*/

    .Scroll-Text-Container {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 65px;
        z-index: 2;
    }

    .text{
        font-size: 40px; 
        width: 100vw;
    }


    .scrolling_text {
        width: 100vw;
        height: 65px;
    }

    @keyframes animate_text {
        0% {
          transform: translate3d(0, 12px, 0);
        }
        50% {
          transform: translate3d(-800%, 12px, 0);
        }
        100% {
            transform: translate3d(0, 12px, 0);
          }
    }


    .text2 {
        display: none;
        opacity: 0;
    }

    .Back-Button{
        transform: translateX(-45%) translateY(-344px) rotate(-90deg);
    }

}