﻿body,html {
    margin:0px;
    padding:0px;
    height:100%;
    font-family:sans-serif;
}
ul {
padding:0px;
 margin:0px;
 list-style-type:none;
}

/*############ MAIN WRAPPER ##############*/
.main-wrapper {
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}
/*############ MAIN WRAPPER ENDS ##############*/



/*############ MODEL WRAPPER ##############*/
.model-wrapper {
    display: none;
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.51);
    z-index: 100000;
}

.model-box {
    height: 150px;
    width: 400px;
    background: white;
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 5px;
    transition: 500ms;
    transform: translateY(-350px);
    padding: 10px;
}

    .model-box input {
        color: white;
        padding: 10px 30px;
        font-weight: bold;
        border: none;
        background: #2c90de;
        border-radius: 4px;
        cursor: pointer;
        display: block;
        margin: 0 auto;
    }

    .model-box h1 {
        color: red;
        font-size: 18px;
        border-bottom: 1px solid #d02626;
    }

.box-message {

}
.remove-translate {
    animation: removeTranslate 500ms ease forwards;
}

@keyframes removeTranslate {
    from {
    }

    to {
        transform: translateY(0px);
    }
}

/*############ MODEL WRAPPER ENDS ##############*/


.seperator {
    width: 100%;
    height: 30px;
    clear:both;
    float:none !important;
}






/*################## HR HEADER ###############################*/
.header {
    width: 100%;
    height: 50px;
    background: linear-gradient(#6161d8,#21309a);
    box-shadow: 0px 2px 3px 1px #777777;
    position:absolute;
}

#menu-list {
    list-style-type: none;
    width: 100%;
    height: 50px;
}

    #menu-list li {
        float: left;
  width: 14%;
    }

        #menu-list li a {
            display: block;
            text-decoration: none;
            text-align: center;
            color: white;
            line-height: 50px;
            font-family: sans-serif;
            transition: 500ms;
        }

            #menu-list li a:hover {
                transition: 500ms;
                background: linear-gradient(#3b3b9c,#0c1971);
            }

        #menu-list li:hover > ul {
            display: block;
        }

#submenu-list {
    list-style-type: none;
    display: none;
    background: #656ee6;
    z-index:100;
    position:relative;
}


    #submenu-list li {
        float: none;
        width: auto;
    }

        #submenu-list li a {
            border-bottom: 1px solid #464cbe;
        }

            #submenu-list li a:hover {
            }

/*################## HR HEADER ENDS ###############################
