*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-image: linear-gradient(rgba(12, 3, 51, 0.3),rgba(12, 3, 51, 0.3));
}

/* NAVIGATION TABS */
.top{
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav ul li:hover{
    transform:scale(1.05, 1.05);
    transition: 0.3s;
    background-image: linear-gradient(rgb(255, 255, 255),rgba(218, 197, 10, 0.671),rgb(177, 89, 31),rgb(151, 97, 15));
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
    padding: 2px;
}
nav .logo{
    width: 80px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}
nav ul li a{
    text-decoration: none;
    color: #ffffff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-size: 25px;
}



/* TITLE AND TEXT OVER VIDEO */
.content{
    text-align: center;
    margin-bottom: 500px;
    position: absolute;
}
.content h1{
    font-size: 160px;
    color: #fff;
    font-weight: 600;
    transition: 0.5s;
}
.content h1:hover{
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}
.content h2{
    color: #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-bottom: 80px;
}
.content a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24p-;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
}



/* LOCATION SECTION */
.forumsection{
    width: 100%;
    align-items: center;
    background-image: linear-gradient(rgb(160, 160, 160),rgb(148, 112, 145),rgb(129, 87, 126),rgb(156, 134, 156));
    border-radius: 50px;
    margin-top: 800px;
}
.forum{
    margin-top: 300px;
    text-align: center;
}
.forumsection h2{
    color: #fff;
    width: 100%;

}
.forumcontainer{
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 20px;
}

/*DISABILITY CHECK STYLE*/
.dc{
    align-items: center;
    color: rgb(255, 255, 255);
}
/*RADIO (One Option Choice) STYLE*/
.rd{
    justify-content: center;
}
/*PREFFERED DAY STYLE*/
.pd{
    color: rgb(255, 255, 255);
}
/*CHECKBOX STYLE*/
.cb{ 
    margin-left: 70px;
}

/*CREDENTIALS STYLE*/
.inputField{
    margin: 3px;
    color: red;
}
.span1{
    color: red;
}
.textbox{
    color: rgb(255, 255, 255);
    width: 95%;
    margin-left: 5px;
}
.map{
    margin-top: 30px;
    border-radius: 10px;
}



/* FOOTER */
footer{
    position: fixed;
    bottom: 0;
    left:0; 
    width:100%;
}



/* Background Video */
.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1; 
}
@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
        margin-bottom: 700px;
    }
}
@media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
}





/* PHONE STYLE */

@media (min-width: 1440px) and (max-width: 1440px){

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body{
        background-image: linear-gradient(rgba(12, 3, 51, 0.3),rgba(12, 3, 51, 0.3));
    }
    .top{
        width: 100%;
        height: 100vh;
        position: relative;
        padding: 0;;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    nav ul li:hover{
        visibility: collapse;
    }
    nav .logo{
        width: 150px;
    }
    nav ul li{
        visibility: collapse;

    }
    nav ul li a{
        visibility: collapse;
    }

    .off-screen-menu{
        background-color: rgb(34, 37, 49);
        height: 100vh;
        width: 100%;
        max-width: 450px;
        position: fixed;
        top: 0;
        right: -450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 3rem;
        transition: .3s ease;
        text-decoration: none;
    }
    .off-screen-menu.active{
        right: 0;
    }
    .ham-menu{
        height: 100px;
        width: 100px;
        margin-left: auto;
        position: relative;

        
    }
    .ham-menu span{
        height: 5px;
        width: 100%;
        background-color: #fff;
        border-radius: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .3s ease;
        
    }

    .ham-menu span:nth-child(1){
        top: 25%;
        
    }
    .ham-menu span:nth-child(3){
        top: 75%;
    }
    .ham-menu.active span:nth-child(1){
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .ham-menu.active span:nth-child(2){
        opacity: 0;
    }
    .ham-menu.active span:nth-child(3){
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        
    }



    /* TITLE SECTION */
    .content{
        text-align: center;
        margin-bottom: 2300px;
        position: absolute;
        z-index: -1;
    }
    .content h1{
        font-size: 160px;
        color: #fff;
        font-weight: 600;
        transition: 0.5s;
    }
    .content h1:hover{
        -webkit-text-stroke: 2px #fff;
        color: transparent;
    }
    .content h2{
        color: #fff;
        padding: 0;
        border-radius: 50px;
        margin-bottom: 80px;
        font-size: 40px;
    }
    .content a{
        text-decoration: none;
        display: inline-block;
        color: #fff;
        font-size: 24p-;
        border: 2px solid #fff;
        padding: 0;
        border-radius: 50px;
        margin-top: 20px;
    }



    /* FORUM SECTION */
    .forumsection{
        width: 100%;
        align-items: center;
        background-image: linear-gradient(rgb(160, 160, 160),rgb(148, 112, 145),rgb(129, 87, 126),rgb(156, 134, 156));
        border-radius: 50px;
        margin: 0;
        margin-top: 500px;
        font-size: 40px;
    }
    .forum{
        text-align: center;
        margin: 0;
    }
    .forumsection h2{
        color: #fff;
        width: 100%;
        margin-bottom: 100px;
        font-size: 60px;
    }
    .forumcontainer{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        color: #ffffff;
    }
    /*DISABILITY CHECK STYLE*/
    .dc{
        align-items: center;
        color: rgb(255, 255, 255);
        font-size: 40px;
    }
    /*RADIO (One Option Choice) STYLE*/
    .rd{
        justify-content: center;
        border: 0px;
        width: 5%;
        height: 3em;
    }
    /*PREFFERED DAY STYLE*/
    .pd{
        color: rgb(255, 255, 255);
    }
    /*CHECKBOX STYLE*/
    .cb{ 
        border: 0px;
        width: 11%;
        height: 3em;
    }
    
    /*CREDENTIALS STYLE*/
    .inputField{
        margin: 3px;
        color: rgb(0, 0, 0);
        font-size: 40px;
    }
    .span1{
        color: red;
    }
    .textbox{
        color: rgb(0, 0, 0);
        width: 95%;
        margin-left: 5px;
        font-size: 50px;
    }
    .map{
        margin-top: 30px;
        border-radius: 100px;
        width: 100%;
    }
    .sb{
        border: 0px;
        width: 20%;
        font-size: 35px;
    }



    /* FOOTER */
    footer{
        position: fixed;
        bottom: 0;
        left:0; 
        width:100%;
    }



    .back-video{
        position: absolute;
        right: 0;
        bottom: 80%;
        z-index: -1; 
    }
    @media (min-aspect-ratio: 19.5/9){
        .back-video{
            width: 100%;
            height: auto;
        }
    }
    @media (max-aspect-ratio: 19.5/9){
        .back-video{
            width: auto;
            height: 100%;
        }
    }
}

/* TABLET STYLE */
@media (min-width: 1024px) and (max-width: 1024px){

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body{
        background-image: linear-gradient(rgba(12, 3, 51, 0.3),rgba(12, 3, 51, 0.3));
    }
    .top{
        width: 100%;
        height: 100vh;
        position: relative;
        padding: 0;;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    nav ul li:hover{
        visibility: collapse;
    }
    nav .logo{
        width: 150px;
    }
    nav ul li{
        visibility: collapse;

    }
    nav ul li a{
        visibility: collapse;
    }

    .off-screen-menu{
        background-color: rgb(34, 37, 49);
        height: 100vh;
        width: 100%;
        max-width: 450px;
        position: fixed;
        top: 0;
        right: -450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 3rem;
        transition: .3s ease;
        text-decoration: none;
    }
    .off-screen-menu.active{
        right: 0;
    }
    .ham-menu{
        height: 100px;
        width: 100px;
        margin-left: auto;
        position: relative;

        
    }
    .ham-menu span{
        height: 5px;
        width: 100%;
        background-color: #fff;
        border-radius: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .3s ease;
        
    }

    .ham-menu span:nth-child(1){
        top: 25%;
        
    }
    .ham-menu span:nth-child(3){
        top: 75%;
    }
    .ham-menu.active span:nth-child(1){
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .ham-menu.active span:nth-child(2){
        opacity: 0;
    }
    .ham-menu.active span:nth-child(3){
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        
    }



    /* TITLE SECTION */
    .content{
        text-align: center;
 
        position: absolute;
        z-index: -1;
    }
    .content h1{
        font-size: 160px;
        color: #fff;
        font-weight: 600;
        transition: 0.5s;
    }
    .content h1:hover{
        -webkit-text-stroke: 2px #fff;
        color: transparent;
    }
    .content h2{
        color: #fff;
        padding: 0;
        border-radius: 50px;
        margin-bottom: 80px;
        font-size: 40px;
    }
    .content a{
        text-decoration: none;
        display: inline-block;
        color: #fff;
        font-size: 24p-;
        border: 2px solid #fff;
        padding: 0;
        border-radius: 50px;
        margin-top: 20px;
    }



    /* FORUM SECTION */
    .forumsection{
        width: 100%;
        align-items: center;
        background-image: linear-gradient(rgb(160, 160, 160),rgb(148, 112, 145),rgb(129, 87, 126),rgb(156, 134, 156));
        border-radius: 50px;
        margin: 0;
        margin-top: 2500Px;
        font-size: 40px;
    }
    .forum{
        text-align: center;
        margin: 0;
    }
    .forumsection h2{
        color: #fff;
        width: 100%;
        margin-bottom: 100px;
        font-size: 60px;
    }
    .forumcontainer{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        color: #ffffff;
    }
    /*DISABILITY CHECK STYLE*/
    .dc{
        align-items: center;
        color: rgb(255, 255, 255);
        font-size: 40px;
    }
    /*RADIO (One Option Choice) STYLE*/
    .rd{
        justify-content: center;
        border: 0px;
        width: 5%;
        height: 3em;
    }
    /*PREFFERED DAY STYLE*/
    .pd{
        color: rgb(255, 255, 255);
    }
    /*CHECKBOX STYLE*/
    .cb{ 
        border: 0px;
        width: 11%;
        height: 3em;
    }
    
    /*CREDENTIALS STYLE*/
    .inputField{
        margin: 3px;
        color: rgb(0, 0, 0);
        font-size: 40px;
    }
    .span1{
        color: red;
    }
    .textbox{
        color: rgb(0, 0, 0);
        width: 95%;
        margin-left: 5px;
        font-size: 50px;
    }
    .map{
        margin-top: 30px;
        border-radius: 100px;
        width: 100%;
    }
    .sb{
        border: 0px;
        width: 20%;
        font-size: 35px;
    }



    /* FOOTER */
    footer{
        position: fixed;
        bottom: 0;
        left:0; 
        width:100%;
    }



    @media (min-aspect-ratio: 1024/1366){
        .back-video{
            width: 100%;
            height: auto;
            z-index: -1;
        }
    }
    @media (max-aspect-ratio: 1024/1366){
        .back-video{
            width: auto;
            height: 100%;
            z-index: -1;
        }
    }
}

/* PC STYLE */
@media (min-width: 1440px) and (max-width: 1920px){
.off-screen-menu{
    visibility: collapse;
    z-index: -100000;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-image: linear-gradient(rgba(12, 3, 51, 0.3),rgba(12, 3, 51, 0.3));
}

/* NAVIGATION TABS */
.top{
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav ul li:hover{
    transform:scale(1.05, 1.05);
    transition: 0.3s;
    background-image: linear-gradient(rgb(255, 255, 255),rgba(218, 197, 10, 0.671),rgb(177, 89, 31),rgb(151, 97, 15));
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
    padding: 2px;
}
nav .logo{
    width: 80px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;

}
nav ul li a{
    text-decoration: none;
    color: #ffffff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-size: 25px;
}


/* TITLE AND TEXT OVER VIDEO */
.content{
    text-align: center;
    position: absolute;
    margin-bottom: 500px;
}
.content h1{
    font-size: 160px;
    color: #fff;
    font-weight: 600;
    transition: 0.5s;
}
.content h1:hover{
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}
.content h2{
    color: #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-bottom: 80px;
}
.content a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24p-;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
}


/* LOCATION SECTION */
.locationsection{
    width: 70%;
    align-items: center;
    position: absolute;
    background-image: linear-gradient(rgb(160, 160, 160),rgb(148, 112, 145),rgb(129, 87, 126),rgb(156, 134, 156));
    border-radius: 50px;

}
.location{
    margin-top: 300px;
    text-align: center;
}
.locationsection h2{
    color: #fff;
}
.locationcontainer{
    width:100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 20px;
}
.locationbox{
    width: 350px;
    margin: 30px;
}
.locationimg{
    height: 220px;
    width: 100%;
    border-radius: 20px;
    margin-top: 20px;
}
.location a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24p-;
    border: 2px solid #fff;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
}
/* THEME SECTION */
.themesection{
    margin-top: 500px;
    width: 100%;
    align-items: center;
    position: absolute;
    background-image: linear-gradient(rgb(160, 160, 160),rgb(148, 112, 145),rgb(129, 87, 126),rgb(156, 134, 156));
    border-radius: 50px;
}
.theme{
    margin-top: 200px;
    text-align: center;
}
.themesection h2{
    color: #fff;
}
.themecontainer{
    width:100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 20px;
}
.themebox{
    width: 350px;
    margin: 30px;
}
.themeimg{
    height: 220px;
    width: auto;
    border-radius: 20px;
    margin-top: 20px;
    
}
/* FOOTER */
footer{
    position: fixed;
    bottom: 0;
    left:0; 
    width:100%;
}



/* Background Video */
.back-video{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1; 
}


@media (min-aspect-ratio: 1920/1080){
    .back-video{
        width: 100%;
        height: auto;
        z-index: -1;
    }
}
@media (max-aspect-ratio: 2560/1440){
    .back-video{
        width: auto;
        height: 100%;
        z-index: -1;
    }
}
}


