/********************************************
Reset CSS
*********************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}



/********************************************
CSS
*********************************************/
body {
    font-family: 'Raleway', sans-serif;
}

.container {
    padding: 14px 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.main-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background-color: #007ec6;
    background-image: url(../images/bg-sm.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .main-section h1 {
        position: absolute;
        width: 100%;
        bottom: 9px;
        left: -4px;
        padding: 0 20px;
        box-sizing: border-box;
        color: #fff;
        font-size: 56px;
        font-weight: 800;
    }

        .main-section h1 span {
            color: #05050c;
        }

.bottom-section {
    position: absolute;
    width: 100%;
    height: 70px;
    left: 0;
    bottom: 0;
    color: #fff;
    background: #05050c;
}

.desc {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.4em;
}

    .desc a {
        white-space: nowrap;
        text-decoration: none;
        color: #ffab00;
        transition: color 0.2s ease-in-out;
    }

    .desc a:hover {
            color: #ff9800;
     }

.copyright {
    font-size: 12.5px;
    color: #818181;
}

    .copyright a {
        color: #009DFB;
        text-decoration: none;
        transition: color 0.2s ease-in-out;
    }

        .copyright a:hover {
            color: #007EC6;
        }


/********************************************
    navbar
*********************************************/

.navbar {
    padding: 15px 15px;
    /* background: #000;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    */
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    sidebar
----------------------------------------------------- */

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999;
    background: #05050C;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

    #sidebar.active {
        left: 0;
    }

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #05050C;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    #dismiss:hover {
        background: #fff;
        color: #05050C;
    }

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

    .overlay.active {
        display: block;
        opacity: 1;
    }

#sidebar .sidebar-header {
    padding: 20px;
    background: #007EC6;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #007EC6;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}

    #sidebar ul li a:hover {
        color: #7386D5;
        background: #fff;
    }

#sidebar ul li.active > a,
a[aria-expanded="true"] {
    color: #fff;
    background: #007EC6;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 5px;
        margin-bottom: 5px;
    }

a.download {
    background: #fff;
    color: #7386D5;
}


@media (min-width: 768px) {
    .main-section {
        height: calc(100% - 90px);
    }

    .bottom-section {
        height: 90px;
    }

    .container,
    .main-section h1 {
        width: 688px;
        padding-left: 0;
        padding-right: 0;
    }

    .main-section h1 {
        font-size: 60px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .desc {
        font-size: 18px;
        padding: 0 5px;
    }

    .copyright {
        padding: 0 5px;
    }
}


@media (min-width: 992px) {
    .container,
    .main-section h1 {
        width: 910px;
    }

    .main-section {
        background-image: url(../images/bg-lg.jpg);
    }

    .desc {
        float: left;
        margin-bottom: 0;
    }

    .copyright {
        float: right;
        padding-top: 9px;
    }
}

/*
@media (min-width: 1200px) {
    .container,
    .main-section h1 {
        width: 1140px;
    }
}
*/

.form-login {
    background-color: transparent;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 0px;
    border-color: #007ec6;
    border-width: 5px;
    box-shadow: 0 2px 0 #007ec6;
}



.form-control {
    border-radius: 10px;
    background-color: transparent;
}






