﻿body {
    position: relative;
    overflow-x: hidden;
}

body,
html {
    height: 100%;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: transparent;
}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    #wrapper.toggled {
        padding-left: 220px;
    }

#sidebar-wrapper {
    z-index: 1000;
    left: 220px;
    width: 0;
    height: 100%;
    margin-left: -220px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #1a1a1a;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    #sidebar-wrapper::-webkit-scrollbar {
        display: none;
    }

#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}

#page-content-wrapper {
    width: 100%;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -220px;
}

#process {
    background: url(../images/gr4.jpg) no-repeat;
    background-size: 150% 150%;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    padding: 2em 3em;
}
/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/

.sidebar-nav {
    position: absolute;
    top: 0;
    font-size: small;
    width: 220px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-nav li {
        position: relative;
        line-height: 20px;
        display: inline-block;
        width: 100%;
    }

        .sidebar-nav li:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            height: 100%;
            width: 3px;
            background-color: #35acdf;
            -webkit-transition: width .2s ease-in;
            -moz-transition: width .2s ease-in;
            -ms-transition: width .2s ease-in;
            transition: width .2s ease-in;
        }

        .sidebar-nav li:first-child a {
            color: #00cbbc;
            background-color: #00cbbc;
        }

        .sidebar-nav li:nth-child(2):before {
            background-color: #ead24c;
        }

        .sidebar-nav li:nth-child(3):before {
            background-color: #79aefe;
        }

        .sidebar-nav li:nth-child(4):before {
            background-color: #e1c2c2;
        }

        .sidebar-nav li:nth-child(5):before {
            background-color: #279636;
        }

        .sidebar-nav li:nth-child(6):before {
            background-color: #7d5d81;
        }

        .sidebar-nav li:nth-child(7):before {
            background-color: #ead24c;
        }

        .sidebar-nav li:nth-child(8):before {
            background-color: #279636;
        }

        .sidebar-nav li:nth-child(9):before {
            background-color: #35acdf;
        }

        .sidebar-nav li:hover:before,
        .sidebar-nav li.open:hover:before {
            width: 100%;
            -webkit-transition: width .2s ease-in;
            -moz-transition: width .2s ease-in;
            -ms-transition: width .2s ease-in;
            transition: width .2s ease-in;
        }

        .sidebar-nav li a {
            display: block;
            color: #ddd;
            text-decoration: none;
            padding: 10px 15px 10px 30px;
        }

            .sidebar-nav li a:hover,
            .sidebar-nav li a:active,
            .sidebar-nav li a:focus,
            .sidebar-nav li.open a:hover,
            .sidebar-nav li.open a:active,
            .sidebar-nav li.open a:focus {
                background-color: transparent;
            }

    .sidebar-nav > .sidebar-brand {
        height: 65px;
        font-size: 20px;
        line-height: 44px;
    }

    .sidebar-nav .dropdown-menu {
        position: relative;
        width: 100%;
        padding: 0;
        margin: 0;
        border-radius: 0;
        border: none;
        background-color: #fff;
        box-shadow: none;
    }

/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger {
    position: absolute;
    top: 188px;
    z-index: 999;
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 5px;
    background: transparent;
    border: none;
}

    .hamburger:hover,
    .hamburger:focus,
    .hamburger:active {
        outline: none;
    }

    .hamburger.is-closed:before {
        content: '';
        display: block;
        width: 100px;
        font-size: 14px;
        color: #fff;
        line-height: 32px;
        text-align: center;
        opacity: 0;
        -webkit-transform: translate3d(0,0,0);
        -webkit-transition: all .35s ease-in-out;
    }

    .hamburger.is-closed:hover:before {
        opacity: 1;
        display: block;
        -webkit-transform: translate3d(-100px,0,0);
        -webkit-transition: all .35s ease-in-out;
    }

    .hamburger.is-closed .hamb-top,
    .hamburger.is-closed .hamb-middle,
    .hamburger.is-closed .hamb-bottom,
    .hamburger.is-open .hamb-top,
    .hamburger.is-open .hamb-middle,
    .hamburger.is-open .hamb-bottom {
        position: absolute;
        left: 0;
        height: 4px;
        width: 100%;
    }

    .hamburger.is-closed .hamb-top,
    .hamburger.is-closed .hamb-middle,
    .hamburger.is-closed .hamb-bottom {
        background-color: #1a1a1a;
    }

    .hamburger.is-closed .hamb-top {
        top: 5px;
        -webkit-transition: all .35s ease-in-out;
    }

    .hamburger.is-closed .hamb-middle {
        top: 50%;
        margin-top: -2px;
    }

    .hamburger.is-closed .hamb-bottom {
        bottom: 5px;
        -webkit-transition: all .35s ease-in-out;
    }

    .hamburger.is-closed:hover .hamb-top {
        top: 0;
        -webkit-transition: all .35s ease-in-out;
    }

    .hamburger.is-closed:hover .hamb-bottom {
        bottom: 0;
        -webkit-transition: all .35s ease-in-out;
    }

    .hamburger.is-open .hamb-top,
    .hamburger.is-open .hamb-middle,
    .hamburger.is-open .hamb-bottom {
        background-color: #1a1a1a;
    }

    .hamburger.is-open .hamb-top,
    .hamburger.is-open .hamb-bottom {
        top: 50%;
        margin-top: -2px;
    }

    .hamburger.is-open .hamb-top {
        -webkit-transform: rotate(45deg);
        -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
    }

    .hamburger.is-open .hamb-middle {
        display: none;
    }

    .hamburger.is-open .hamb-bottom {
        -webkit-transform: rotate(-45deg);
        -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
    }

    .hamburger.is-open:before {
        content: '';
        display: block;
        width: 100px;
        font-size: 14px;
        color: #fff;
        line-height: 32px;
        text-align: center;
        opacity: 0;
        -webkit-transform: translate3d(0,0,0);
        -webkit-transition: all .35s ease-in-out;
    }

    .hamburger.is-open:hover:before {
        opacity: 1;
        display: block;
        -webkit-transform: translate3d(-100px,0,0);
        -webkit-transition: all .35s ease-in-out;
    }

/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250,250,250,.8);
    z-index: 1;
}

#getstarted {
    /* background: none repeat scroll 0 0 #fff; */
    background: url('../images/bg1/y1.jpg') scroll 0 0 no-repeat;
    background-size: 100%;
    /* #1a2c50;*/
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    padding: 3em 2em;
}

    #getstarted h3 {
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        color: #2b53d5;
        /* color:#fff; */
    }

    #getstarted label {
        /* color:#337ab7; */
        cursor: pointer;
    }

    #getstarted img {
        max-width: 100%;
        border-radius: 50px;
    }

    #getstarted .fa-stack .fa-circle {
        color: #337ab7 !important;
    }

    #getstarted .fa-stack .fa {
        color: #d9edf7;
    }

    #getstarted .fa-stack:hover .fa {
        color: #337ab7;
    }

    #getstarted .fa-stack:hover .fa-circle {
        color: #d9edf7 !important;
    }

    #getstarted a:hover label {
        color: #337ab7;
    }

    #getstarted h3 {
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        color: #2b53d5;
        /* color:#fff; */
    }

    #getstarted label {
        /* color:#337ab7; */
        cursor: pointer;
    }

    #getstarted img {
        max-width: 100%;
        border-radius: 50px;
    }

    #getstarted .fa-stack .fa-circle {
        color: #337ab7 !important;
    }

    #getstarted .fa-stack .fa {
        color: #d9edf7;
    }

    #getstarted .fa-stack:hover .fa {
        color: #337ab7;
    }

    #getstarted .fa-stack:hover .fa-circle {
        color: #d9edf7 !important;
    }

    #getstarted a:hover label {
        color: #337ab7;
    }

    #getstarted img:hover {
        /*-webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border-radius: 50%;
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out;*/
        border: 5px solid #992b2c !important;
        border-radius: 10%;
    }

#aboutus {
    /*background:url('../images/grey.jpg')  no-repeat ;
 background-size: 200% 200%;*/
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    /* padding: 1em 2em; */
}

    #aboutus img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #aboutus h3 {
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
    }

    #aboutus .fa-stack .fa-circle {
        color: #337ab7 !important;
    }

    #aboutus .fa-stack .fa {
        color: #d9edf7;
    }

    #aboutus .fa-stack:hover .fa {
        color: #337ab7;
    }

    #aboutus .fa-stack:hover .fa-circle {
        color: #d9edf7 !important;
    }

    #aboutus a:hover label {
        color: #337ab7;
    }

    #aboutus img:hover {
        /*-webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border-radius: 50%;
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out;*/
        border: 5px solid #992b2c !important;
        border-radius: 10%;
    }

#hvpi {
    /* background: none repeat scroll 0 0 #fff; */
    background: url('../images/bg10.jpg') scroll 0 0 #fff no-repeat;
    /* #1a2c50;*/
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    padding: 3em 2em;
}

    #hvpi h3 {
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        /* color:#337AB7; */
        /* color:#fff; */
    }

    #hvpi label {
        /* color:#337ab7; */
        cursor: pointer;
    }

    #hvpi img {
        max-width: 100%;
        width: 80%;
        height: 90%;
    }

    #hvpi .fa-stack .fa-circle {
        color: #ac66b4 !important;
    }

    #hvpi .fa-stack .fa {
        color: #d9edf7;
    }

    #hvpi .fa-stack:hover .fa {
        color: #337ab7;
    }

    #hvpi .fa-stack:hover .fa-circle {
        color: #fff !important;
    }

    #hvpi a:hover label {
        color: #337ab7;
    }

    #hvpi img:hover {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border-radius: 50%;
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out;
    }

#contact {
    /* background: #fff   none repeat scroll 0 0; */
    background: url('/CDSCO/resources/app_srv/cdsco/global/img/new/bg_contact.jpg') no-repeat;
    background-size: 100% 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    padding: 3em 2em;
}

    #contact h3 {
        text-transform: uppercase;
        font-weight: bold;
    }

#c8 {
    /* background: none repeat scroll 0 0 #fff; */
    background: url('../images/bg3.jpg');
    background-size: 100%;
    /* #1a2c50;*/
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    padding: 3em 2em;
}

    #c8 h3 {
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        /* color:#337AB7; */
        /* color:#fff; */
    }

    #c8 label {
        /* color:#337ab7; */
        cursor: pointer;
    }

    #c8 img {
        max-width: 100%;
        border-radius: 20px;
    }

    #c8 .fa-stack .fa-circle {
        color: #ac66b4 !important;
    }

    #c8 .fa-stack .fa {
        color: #d9edf7;
    }

    #c8 .fa-stack:hover .fa {
        color: #337ab7;
    }

    #c8 .fa-stack:hover .fa-circle {
        color: #fff !important;
    }

    #c8 a:hover label {
        color: #337ab7;
    }


.fa-rotate-45 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#getstarted1 {
    /* background: none repeat scroll 0 0 #fff; */
    background: url('../images/y1.jpg') scroll 0 0 no-repeat;
    background-size: 100%;
    /* #1a2c50;*/
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    padding: 3em 2em;
}

    #getstarted1 h3 {
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        color: #2b53d5;
        /* color:#fff; */
    }

    #getstarted1 label {
        /* color:#337ab7; */
        cursor: pointer;
    }

    #getstarted1 img {
        max-width: 100%;
        border-radius: 50px;
    }

    #getstarted1 .fa-stack .fa-circle {
        color: #337ab7 !important;
    }

    #getstarted1 .fa-stack .fa {
        color: #d9edf7;
    }

    #getstarted1 .fa-stack:hover .fa {
        color: #337ab7;
    }

    #getstarted1 .fa-stack:hover .fa-circle {
        color: #d9edf7 !important;
    }

    #getstarted1 a:hover label {
        color: #337ab7;
    }

    #getstarted1 h3 {
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        color: #2b53d5;
        /* color:#fff; */
    }

    #getstarted1 label {
        /* color:#337ab7; */
        cursor: pointer;
    }

    #getstarted1 img {
        max-width: 100%;
        border-radius: 50px;
    }

    #getstarted1 .fa-stack .fa-circle {
        color: #337ab7 !important;
    }

    #getstarted1 .fa-stack .fa {
        color: #d9edf7;
    }

    #getstarted1 .fa-stack:hover .fa {
        color: #337ab7;
    }

    #getstarted1 .fa-stack:hover .fa-circle {
        color: #d9edf7 !important;
    }

    #getstarted1 a:hover label {
        color: #337ab7;
    }
