@import url('https://fonts.googleapis.com/css?family=Hind+Siliguri:300,400,500,600,700|Raleway:700');


input[type=checkbox] {
    display: none;
}

    input[type=checkbox] + label {
        cursor: pointer;
    }

        input[type=checkbox] + label:before, input[type=checkbox] + span label:before {
            line-height: 14px;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            padding-right: 16px;
            cursor: pointer;
            content: "\f096";
            color: #808080;
            font: normal normal normal 17px/1 FontAwesome;
            font-size: 18px;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            vertical-align: middle;
        }

    input[type=checkbox]:checked + label:before, input[type=checkbox]:checked + span label:before {
        content: "\f046";
        color: #EA1C2F;
        line-height: 14px;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        padding-right: 13px;
        cursor: pointer;
        font: normal normal normal 17px/1 FontAwesome;
        font-size: 18px;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        vertical-align: middle;
    }

body {
    font-family: 'Hind Siliguri', sans-serif;
    line-height: normal;
    color: #3e3e3e;
    font-size: 15px;
    font-weight: 400;
}

img {
    max-width: 100%;
}

a, a:hover {
    -webkit-transition: all 0.5s; /* Safari */
    transition: all 0.5s;
    text-decoration: none;
}

    a:focus {
        text-decoration: none;
        outline: none;
    }

::-webkit-input-placeholder { /* Chrome */
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder { /* IE 10+ */
    color: inherit;
}

::-moz-placeholder { /* Firefox 19+ */
    color: inherit;
    opacity: 1;
}

:-moz-placeholder { /* Firefox 4 - 18 */
    color: inherit;
    opacity: 1;
}

body .container {
    width: 100%;
    max-width: 1230px;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none \9;
    -o-appearance: none;
}

    select::-ms-expand {
        display: none;
    }

/* login page css start */

body .sectionlogin .container {
    width: 100%;
    max-width: 530px;
}

.sectionlogin {
    background-image: url('../images/site-2/loginbg.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #223680;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #da271e;
}

.loginlogo {
    width: 100%;
    float: left;
}

    .loginlogo a {
        display: inline-block;
    }

.loginform {
    width: 100%;
    float: left;
}

    .loginform h2 {
        color: #fff;
        font-size: 60px;
        letter-spacing: 2px;
        margin: 72px 0 28px;
        text-transform: uppercase;
        font-family: 'Raleway', sans-serif;
    }

.loginput input[type="email"], .loginput input[type="password"], .loginput input[type="text"] {
    -moz-appearance: none;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    height: 60px;
    padding: 0 0 0 64px;
    width: 100%;
}

.loginput input[type="email"] {
    background-image: url("../images/site-2/icon-email.png");
    background-position: 18px 18px;
    background-repeat: no-repeat;
}

.loginput input[type="password"] {
    background-image: url("../images/site-2/icon-lock.png");
    background-position: 22px 14px;
    background-repeat: no-repeat;
}

.loginput {
    margin: 0 0 30px;
    width: 100%;
    text-align: left;
    float: left;
}

    .loginput.pass {
        margin: 0 0 18px;
    }

.checkinput {
    width: 100%;
    text-align: left;
    float: left;
}

    .checkinput label {
        color: #fff;
        display: inline-block;
        font-size: 18px;
        font-weight: 500;
        margin-right: 6px;
        padding-left: 32px;
        position: relative;
        cursor: pointer;
        text-transform: uppercase;
    }

    .checkinput input[type="checkbox"] {
        display: none;
    }

    .checkinput label:before {
        border: 2px solid #fff;
        border-radius: 8px;
        content: "";
        display: inline-block;
        height: 24px;
        left: 0;
        margin-right: 10px;
        position: absolute;
        top: 2px;
        width: 24px;
    }

    .checkinput input[type="checkbox"]:checked + label:before {
        color: #fff;
        content: "\2713";
        font-size: 12px;
        font-weight: 700;
        font-family: 'Raleway', sans-serif;
        line-height: 22px;
        text-align: center;
    }

.signin {
    width: 100%;
    float: left;
}

    .signin input[type="submit"] {
        background: #da271e;
        border-radius: 10px;
        border-style: none;
        color: #fff;
        font-size: 25px;
        font-weight: 500;
        margin: 22px 0;
        padding: 11px 0 8px;
        text-transform: uppercase;
        width: 100%;
    }

        .signin input[type="submit"]:hover {
            background: #9a1010;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
        }

.copyright {
    color: #fff;
    float: left;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px;
    width: 100%;
}

    .copyright span {
        color: #da271e;
    }

    .copyright a {
        color: #fff;
        font-weight: 700;
        text-transform: uppercase;
    }

        .copyright a:hover {
            opacity: 0.7;
        }

/* homepage page css start */

.headertop {
    width: 100%;
    float: left;
    clear: both;
    background: #ededed;
}

.headeright {
    color: #00c4ff;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 5px;
    text-transform: uppercase;
}

    .headeright a {
        color: #da3b33;
        font-weight: 400;
        text-transform: none;
    }

        .headeright a:hover {
            color: #00c4ff;
        }

.login > a:hover {
    opacity: 0.7;
}

.login {
    float: right;
    letter-spacing: 1px;
    margin-left: 40px;
}

    /*.login.dropdown:hover .dropdown-menu {
        display: block;
    }*/

    .login > a {
        background-color: #db3a32;
        background-image: url("../images/site-2/icon-lockwhite.png");
        background-position: 10px 7px;
        background-repeat: no-repeat;
        color: #fff;
        float: right;
        font-weight: 500;
        min-height: 35px;
        padding: 6px 16px 0 32px;
        position: relative;
        text-transform: uppercase;
    }

        .login > a:before {
            background: url("../images/site-2/loginsap.jpg") no-repeat left top;
            content: "";
            height: 35px;
            left: -31px;
            position: absolute;
            top: 0;
            width: 31px;
        }

.NewOperatorRegistration > a:hover {
    opacity: 0.7;
}

.NewOperatorRegistration {
    float: right;
    letter-spacing: 1px;
    margin-left: 40px;
}

    /*.login.dropdown:hover .dropdown-menu {
        display: block;
    }*/

    .NewOperatorRegistration > a {
        background-color: #337ab7;
        background-image: url("../images/site-2/bus-16.png");
        background-position: 10px 8px;
        background-repeat: no-repeat;
        color: #fff;
        float: right;
        font-weight: 500;
        min-height: 35px;
        padding: 6px 16px 0 32px;
        position: relative;
        text-transform: uppercase;
    }

        /*.NewOperatorRegistration > a:before {
            background: url("../images/site-2/loginsap.jpg") no-repeat left top;
            content: "";
            height: 35px;
            left: -31px;
            position: absolute;
            top: 0;
            width: 31px;
        }*/
.headeright span {
    color: #bbbbbb;
    font-weight: 400;
    padding: 0 10px;
}

.headerbottom {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    clear: both;
    float: left;
    min-height: 80px;
    overflow: hidden;
    width: 100%;
}

.sitelogo {
    float: left;
    padding: 11px 0 7px;
    position: relative;
}

    .sitelogo:after {
        background: url("../images/site-2/logosap.jpg") no-repeat left top;
        content: "";
        height: 80px;
        position: absolute;
        right: -70px;
        top: 0;
        width: 64px;
    }

.headermenu {
    background: #20307b;
    float: right;
    position: relative;
    width: 100%;
}

    .headermenu:after {
        background: #20307b;
        content: "";
        height: 80px;
        position: absolute;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100%;
    }

.headerbottom .col-lg-9 {
    padding-left: 4px;
}

.headermenu .navbar-inverse {
    background-color: transparent;
    border: medium none;
    float: right;
    margin: 0 0 -2px;
    min-height: 10px;
}

    .headermenu .navbar-inverse .container-fluid {
        padding: 0;
    }

.headermenu .navbar {
    border-radius: 30px;
}

.headermenu .navbar-inverse .navbar-nav > li > a {
    color: #00c4ff;
    font-size: 16px;
    letter-spacing: 1px;
    margin: 15px 0 1px 40px;
    padding: 30px 0 14px;
    text-decoration: none;
    text-transform: uppercase;
}

.headermenu .navbar-inverse .navbar-nav > li:first-child > a {
    margin-left: 0;
}

.headermenu #myNavbar {
    padding: 0;
}

.headermenu .navbar-inverse .navbar-nav > .active > a, .headermenu .navbar-inverse .navbar-nav > .active > a:focus, .headermenu .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > li > a:hover {
    border-bottom: 2px solid #fff;
    background-color: none;
    outline: none;
    -webkit-transition: all 0s;
    transition: all 0s;
    color: #fff;
    text-decoration: none;
}

.headermenu .navbar-inverse .navbar-nav > li > a.menuicon01 {
    background: url("../images/site-2/icon-home.png") no-repeat center top;
}

    .headermenu .navbar-inverse .navbar-nav > li > a.menuicon01:hover, .headermenu .navbar-inverse .navbar-nav > li.active > a.menuicon01 {
        background: url("../images/site-2/icon-home-h.png") no-repeat center top;
    }

.headermenu .navbar-inverse .navbar-nav > li > a.menuicon02 {
    background: url("../images/site-2/icon-about.png") no-repeat center top;
}

    .headermenu .navbar-inverse .navbar-nav > li > a.menuicon02:hover, .headermenu .navbar-inverse .navbar-nav > li.active > a.menuicon02 {
        background: url("../images/site-2/icon-about-h.png") no-repeat center top;
    }

.headermenu .navbar-inverse .navbar-nav > li > a.menuicon03 {
    background: url("../images/site-2/icon-gallery.png") no-repeat center top;
}

    .headermenu .navbar-inverse .navbar-nav > li > a.menuicon03:hover, .headermenu .navbar-inverse .navbar-nav > li.active > a.menuicon03 {
        background: url("../images/site-2/icon-gallery-h.png") no-repeat center top;
    }

.headermenu .navbar-inverse .navbar-nav > li > a.menuicon04 {
    background: url("../images/site-2/icon-contact.png") no-repeat center top;
}

    .headermenu .navbar-inverse .navbar-nav > li > a.menuicon04:hover, .headermenu .navbar-inverse .navbar-nav > li.active > a.menuicon04 {
        background: url("../images/site-2/icon-contact-h.png") no-repeat center top;
    }

.bannerwrap {
    float: left;
    width: 100%;
    background: #4a4e5a;
}

    .bannerwrap .carousel-inner {
        position: relative;
        overflow: hidden;
    }

    .bannerwrap .carousel .item {
        height: 641px;
    }

    .bannerwrap .carousel-inner > .item > img {
        position: absolute;
        right: 0;
        left: 50%;
        margin-left: -900px; /* Half the width of the image */
        height: 641px;
        max-width: none;
    }

    .bannerwrap .carousel-control {
        background: transparent;
        height: 55px;
        opacity: 10;
        top: 43%;
        width: 50px;
        z-index: 999;
    }

        .bannerwrap .carousel-control .glyphicon-chevron-left {
            background: url(../images/site-2/navicon-l.png) no-repeat left center;
            width: 55px;
            height: 55px;
            background-size: 100%;
            font-size: 0;
        }

            .bannerwrap .carousel-control .glyphicon-chevron-left:hover {
                background: url(../images/site-2/navicon-lh.png);
                background-size: 100%;
            }

        .bannerwrap .carousel-control .glyphicon-chevron-right {
            background: url(../images/site-2/navicon-r.png) no-repeat left center;
            width: 55px;
            height: 55px;
            background-size: 100%;
            font-size: 0;
        }

            .bannerwrap .carousel-control .glyphicon-chevron-right:hover {
                background: url(../images/site-2/navicon-rh.png);
                background-size: 100%;
            }

    .bannerwrap .carousel-caption {
        left: 0;
        margin: 0 auto;
        max-width: 100%;
        padding: 0;
        right: 0;
        top: 68px;
        width: 1170px;
    }

        .bannerwrap .carousel-caption h2 {
            -webkit-text-stroke: 2px #fff;
            color: #fff;
            font-size: 110px;
            font-weight: 700;
            letter-spacing: 0.7px;
            line-height: 72px;
            text-shadow: none;
            margin: 0 0 14px;
            text-transform: uppercase;
        }

        .bannerwrap .carousel-caption p {
            color: #fff;
            font-size: 21px;
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

.welcomesection {
    width: 100%;
    float: left;
}

.welcomesection {
    background: url("../Images/site-2/welcomebg.png") no-repeat center bottom;
    padding-bottom: 150px;
    width: 100%;
}

.welcomecontent {
    width: 100%;
    float: left;
}

    .welcomecontent h3 {
        color: #3e3e3e;
        font-size: 35px;
        font-weight: 300;
        margin: 17px 0 9px;
    }

        .welcomecontent h3 span {
            color: #d8271e;
            font-weight: 600;
            text-transform: uppercase;
        }

    .welcomecontent p {
        color: #3e3e3e;
        font-size: 17px;
        line-height: 22px;
        margin: 0 0 15px;
    }

.associatedlogos {
    width: 100%;
    float: left;
    clear: both;
    background: #35c2f1;
    text-align: center;
    padding: 0 0 30px;
}

    .associatedlogos h3 {
        color: #fff;
        font-size: 35px;
        font-weight: 300;
        margin: 25px 0 18px;
    }

        .associatedlogos h3 span {
            font-weight: 600;
            text-transform: uppercase;
        }

.asclogos a {
    display: inline-block;
    margin: 0 30px;
    max-width: 120px;
    vertical-align: middle;
}

.acceptcards {
    background: #f3f3f3;
    clear: both;
    float: left;
    padding: 0 0 20px;
    text-align: center;
    width: 100%;
}

    .acceptcards h3 {
        color: #3e3e3e;
        font-size: 25px;
        font-weight: 300;
        margin: 17px 0 9px;
    }

        .acceptcards h3 span {
            font-weight: 600;
            text-transform: uppercase;
        }

.cardswrap a {
    background-image: url("../images/site-2/cardsimages.png");
    background-repeat: no-repeat;
    display: inline-block;
    max-width: 117px;
    width: 100%;
    height: 58px;
}

.cardswrap img{
    margin:3px;
}


    .cardswrap a.card02 {
        background-position: -122px 0;
    }

    .cardswrap a.card03 {
        background-position: -242px 0;
    }

    .cardswrap a.card04 {
        background-position: -362px 0;
    }

    .cardswrap a.card05 {
        background-position: -484px 0;
    }

    .cardswrap a.card06 {
        background-position: -605px 0;
    }

    .cardswrap a.card07 {
        background-position: -726px 0;
    }

    .cardswrap a.card08 {
        background-position: -848px 0;
    }

    .cardswrap a.card09 {
        background-position: -969px 0;
    }

    .cardswrap a.card10 {
        background-position: right 0;
    }

.menu_bottom {
    background: #20307b;
    float: left;
    width: 100%;
}

.navigation-footer {
    float: left;
    padding: 13px 0;
    width: 100%;
    text-align: center;
}

    .navigation-footer ul {
        margin: 0;
        padding: 0;
    }

        .navigation-footer ul li {
            list-style: none;
            display: inline-block;
        }

            .navigation-footer ul li a {
                color: #35c2f1;
                font-size: 16px;
                line-height: normal;
                margin: 0 18px;
            }

                .navigation-footer ul li a:hover, .navigation-footer ul li.active a {
                    color: #fff;
                }

.copyrighthomewrap {
    background: #fff;
    float: left;
    padding: 5px 0;
    width: 100%;
}

.copyrighthome p {
    color: #909090;
    font-size: 16px;
    margin: 0;
    padding: 7px 0;
    position: relative;
    font-weight: 500;
    text-align: right;
    text-transform: capitalize;
}

    .copyrighthome p span {
        color: #cdcdcd;
        padding: 0 3px;
    }

    .copyrighthome p:after {
        background: #e5e5e5;
        content: "";
        right: -15px;
        top: 0;
        width: 1px;
        height: 40px;
        position: absolute;
        z-index: 999;
    }

.copyrighthome a {
    color: #d8271e;
    font-weight: 700;
    text-transform: uppercase;
}

.hostediipl p {
    color: #d8271e;
    font-size: 16px;
    margin: 7px 0;
    font-weight: 500;
}

.hostediipl a {
    background: url("../images/site-2/icon-iipl.png") no-repeat left 3px;
    color: #d8271e;
    font-weight: 700;
    padding: 0 0 3px 25px;
    text-transform: uppercase;
}

    .hostediipl a:hover,
    .copyrighthome a:hover {
        opacity: 0.7;
        text-decoration: none;
    }

/* loginbox css start */

.login.dropdown input[type="text"], .login.dropdown input[type="password"] {
    -moz-appearance: none;
    background: #fff;
    border: 1px solid #223680;
    border-radius: 0;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    height: 40px;
    padding: 0 0 0 10px;
    display: block;
    width: 100%;
}

.login.dropdown .dropdown-menu {
    left: auto;
    right: 0;
    top: 32px;
    min-width: 340px;
    border-radius: 0;
}

    .login.dropdown .dropdown-menu label {
        color: #333;
        font-size: 14px;
        font-weight: 500;
    }

.login.dropdown input[type="submit"] {
    background: #223680;
    border-radius: 0;
    border-style: none;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 18px;
    padding: 8px 0;
    text-transform: uppercase;
}

    .login.dropdown input[type="submit"]:hover {
        background: #da271e;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
/* loginbox css end */

/* Medea Queries Start */
@media only screen and (max-width: 1229px) {
    .sitelogo:after {
        right: -64px;
    }

    .bannerwrap .carousel-caption h2 {
        font-size: 78px;
        line-height: 34px;
    }

    .bannerwrap .carousel-control {
        top: 38%;
    }

    .bannerwrap .carousel-caption p {
        font-size: 14px;
    }

    .bannerwrap .carousel-inner > .item > img {
        height: auto;
        left: 0;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .bannerwrap .carousel .item {
        height: auto;
    }

    .bannerwrap .carousel-caption {
        top: 30px;
    }

    .welcomesection {
        background-size: 100% auto;
        padding: 0 0 90px;
    }

    .welcomecontent h3 {
        font-size: 30px;
        margin: 15px 0 7px;
    }

    .welcomecontent p {
        color: #3e3e3e;
        font-size: 14px;
        line-height: 20px;
        margin: 0 0 20px;
    }
}

@media only screen and (max-width: 991px) {

    .sitelogo {
        padding: 24px 0 7px;
    }

    .bannerwrap .carousel-caption h2 {
        font-size: 66px;
        line-height: 32px;
    }

    .bannerwrap .carousel-caption p {
        font-size: 11px;
    }
}

@media only screen and (max-width: 767px) {
    .loginlogo a {
        width: 200px;
    }

    .loginform h2 {
        font-size: 26px;
        letter-spacing: 1px;
        margin: 12px 0 24px;
    }

    .loginput {
        margin: 0 0 15px;
    }

    .signin input[type="submit"] {
        margin: 15px 0;
    }

    .copyright {
        font-size: 14px;
        margin: 15px 0;
    }

    .loginput input[type="email"], .loginput input[type="password"], .loginput input[type="text"] {
        border: 1px solid #fff;
        border-radius: 5px;
        font-size: 14px;
        height: 44px;
        padding: 0 0 0 50px;
    }

    .loginput input[type="email"] {
        background-position: 14px 14px;
        background-size: 24px auto;
    }

    .loginput input[type="password"] {
        background-position: 18px 8px;
        background-size: 18px auto;
    }

    .checkinput label {
        font-size: 15px;
    }

    .loginput.pass {
        margin: 0 0 14px;
    }

    .signin input[type="submit"] {
        font-size: 22px;
        margin: 10px 0;
        padding: 3px 0;
    }

    .checkinput label:before {
        border: 1px solid #fff;
        border-radius: 6px;
        height: 20px;
        width: 20px;
        top: 1px;
    }

    .checkinput label {
        padding-left: 28px;
    }

    .checkinput input[type="checkbox"]:checked + label:before {
        font-size: 10px;
        line-height: 18px;
    }

    .sitelogo:after, .headermenu:after {
        display: none;
    }

    .headertop {
        text-align: center;
    }

    .headeright {
        font-size: 14px;
    }

    .sitelogo {
        float: none;
        margin: 10px auto 6px;
        max-width: 200px;
        padding: 0;
        text-align: center;
    }

    .headermenu .navbar-inverse .navbar-toggle {
        border-color: transparent;
        margin: 0 15px 0 0;
    }

        .headermenu .navbar-inverse .navbar-toggle:focus, .headermenu .navbar-inverse .navbar-toggle:hover {
            background-color: transparent;
        }

    .headerbottom .col-lg-9 {
        padding-left: 15px;
    }

    .headermenu .navbar.navbar-inverse {
        width: 100%;
        text-align: center;
    }

    .headermenu .navbar-inverse .navbar-nav > .active > a, .headermenu .navbar-inverse .navbar-nav > .active > a:focus, .headermenu .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > li > a:hover {
        border: none;
    }

    .headermenu #myNavbar {
        border: none;
        padding: 0 15px;
    }

    .headermenu .navbar-inverse .navbar-nav > li > a {
        font-size: 14px;
        margin: 0;
        padding: 28px 0 20px;
    }

    .headermenu {
        margin-bottom: 3px;
    }

    .bannerwrap .carousel-caption h2 {
        font-size: 50px;
        line-height: 24px;
    }

    .bannerwrap .carousel-caption p {
        font-size: 9px;
    }

    .welcomesection {
        padding: 0 0 60px;
    }

    .navigation-footer ul li a {
        font-size: 14px;
        margin: 0 7px;
    }

    .navigation-footer {
        padding: 10px 0;
    }

    .copyrighthomewrap {
        text-align: center;
    }

    .copyrighthome p:after {
        display: none;
    }

    .copyrighthome p {
        font-size: 14px;
        padding: 5px 0 0;
        text-align: center;
    }

    .hostediipl p {
        font-size: 14px;
        margin: 5px 0 7px;
    }

    .bannerwrap {
        overflow: hidden;
    }
}

@media only screen and (max-width: 639px) {
    .bannerwrap .carousel-caption h2 {
        font-size: 36px;
        line-height: 14px;
    }

    .bannerwrap .carousel-caption p {
        padding: 0 10px;
    }

    .bannerwrap .carousel-control {
        bottom: 10px;
        left: auto;
        right: 0;
        top: auto;
    }

        .bannerwrap .carousel-control .glyphicon-chevron-left, .bannerwrap .carousel-control .glyphicon-chevron-right,
        .bannerwrap .carousel-control .glyphicon-chevron-left:hover, .bannerwrap .carousel-control .glyphicon-chevron-right:hover {
            background-size: 30px;
            background-repeat: no-repeat;
            background-position: left top;
        }

        .bannerwrap .carousel-control .glyphicon-chevron-left {
            margin-left: -80px;
        }

    .welcomesection {
        padding: 0 0 40px;
    }

    .associatedlogos h3 {
        font-size: 28px;
        margin: 18px 0 15px;
    }
}

@media only screen and (max-width: 479px) {
    .copyright {
        font-size: 11px;
        margin: 7px 0 12px;
    }

    .headeright span {
        display: block;
        padding: 0;
        font-size: 0;
    }

    .headeright {
        padding: 4px 0;
        text-align: center;
        width: 100%;
    }

    .bannerwrap .carousel-caption h2 {
        font-size: 18px;
        line-height: 3px;
    }

    .bannerwrap .carousel-caption {
        top: 13px;
    }

        .bannerwrap .carousel-caption p {
            padding: 0 5px;
            font-size: 8px;
        }

    .welcomecontent h3 {
        font-size: 22px;
        margin: 12px 0 4px;
    }

    .welcomecontent p {
        font-size: 12px;
        line-height: 18px;
    }

    .welcomesection {
        padding: 0 0 20px;
    }

    .asclogos a {
        margin: 10px;
        max-width: 100px;
    }

    .copyrighthome p {
        font-size: 11px;
    }

    .hostediipl p {
        font-size: 11px;
        margin: 3px 0 6px;
    }

    .hostediipl a {
        padding: 2px 0 3px 20px;
        background-size: 16px;
    }

    /* loginbox css start */
    .login.dropdown .dropdown-menu {
        min-width: 290px;
    }

    .login.dropdown input[type="text"], .login.dropdown input[type="password"] {
        font-size: 13px;
        height: 36px;
    }

    .login.dropdown input[type="submit"] {
        font-size: 15px;
        margin: 0 0 14px;
        padding: 7px 0;
    }

    /* loginbox css end */

}
