﻿
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.eot');
    src: url('../fonts/Lato-Regulard41d.eot?#iefix') format('embedded-opentype'), url('../fonts/Lato-Regular.woff2') format('woff2'), url('../fonts/Lato-Regular.woff') format('woff'), url('../fonts/Lato-Regular.ttf') format('truetype'), url('../fonts/Lato-Regular.html#Lato-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato-Bold';
    src: url('../fonts/Lato-Bold.eot');
    src: url('../fonts/Lato-Boldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/Lato-Bold.woff2') format('woff2'), url('../fonts/Lato-Bold.woff') format('woff'), url('../fonts/Lato-Bold.ttf') format('truetype'), url('../fonts/Lato-Bold.html#Lato-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

input[type="text"],
input[type="submit"],
input[type="button"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

html {
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    color: #010101;
    line-height: 18px;
    height: 100%;
    overflow-x: hidden;
}

a {
    outline: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    text-indent: 0;
    font-weight: normal;
}

#container {
    width: 100%;
}

#header {
    width: 100%;
    background: #fff;
    float: left;
    position: relative;
    z-index: 999;
}

#header_inner {
    width: 1280px;
    overflow: hidden;
    margin: 0 auto;
    padding: 10px 16px;
    overflow: hidden;
    background: #fff;
}

#header_left {
    float: left;
}

    #header_left img {
        height: 70px;
    }

#header_right {
    float: right;
    margin-top: 18px;
}

    #header_right img {
        height: 34px;
        vertical-align: top;
        margin: 0px 5px;
    }

    #header_right #con_btn {
        color: #fff;
        text-decoration: none;
        background: #2431c3;
        text-transform: uppercase;
        font-size: 12px;
        padding: 8px 12px;
        margin-left: 25px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        display: inline-block;
    }

        #header_right #con_btn:hover {
            background: #2431c3;
        }

#logo {
    width: 256px;
    margin: 5px auto 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}

#nav_container {
    /*background: #34d10f;*/
    /*change top menu background color*/
    background: #2431c3;
    width: 100%;
    height: 50px;
    float: left;
    position: relative;
}

    #nav_container > ul {
        width: 100%;
        overflow: hidden;
        margin: 0 auto;
        display: block;
        padding: 0;
        text-align: center;
    }

    #nav_container ul li {
        margin: 0;
        padding: 0;
        display: inline-block;
    }

ul.menu {
    overflow: inherit !important;
}

#menu li {
    display: inline-block;
    position: relative;
}

    #menu li ul.submenu {
        width: auto !important;
        min-width: 160px;
        position: absolute;
        top: 58px;
        left: 0;
        z-index: 999;
        -o-transition: all .3s ease-out;
        transition: all .3s ease-out;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        -ms-transition: all .3s ease-out;
        padding: 0;
        z-index: -1;
        -webkit-transform: translateY(-145%);
        -ms-transform: translateY(-145%);
        transform: translateY(-145%);
        opacity: 0;
    }

#menu .has_sub a:after {
    position: absolute;
    content: '\002B';
    right: 5px;
    top: 50%;
    color: currentColor;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%); /*
    -webkit-transition:all .3s ease-out;
    -o-transition:all .3s ease-out;
    transition:all .3s ease-out;
    -moz-transition:all .3s ease-out;
    -ms-transition:all .3s ease-out;*/
}

#menu .has_sub.active a:after, #menu li:hover > .has_sub a:after {
    content: '\2212';
    /* -webkit-transition:all .3s ease-in;-o-transition:all .3s ease-in;transition:all .3s ease-in;
    -moz-transition:all .3s ease-in;-webkit-transition:all .3s ease-in;-ms-transition:all .3s ease-in;*/
}



#menu li:hover ul.submenu {
    display: block;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -webkit-transform: translateY(-0%);
    -ms-transform: translateY(-0%);
    transform: translateY(-0%);
    opacity: 1;
}

#menu li ul.submenu li:hover ul.submenu {
    visibility: visible;
    position: absolute;
    left: 100%;
    top: 0;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    z-index: -1;
    /*border-left: 1px solid #af6258;*/
    border-left: 1px solid #2431c3;
}

#menu li ul.submenu li ul.submenu {
    visibility: hidden;
    left: 0;
    top: 0;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
}






#menu li ul.submenu li {
    width: 100%;
}

    #menu li ul.submenu li span {
        display: block;
        width: 100%;
        position: relative;
    }

        #menu li ul.submenu li span a {
            padding: 10px 8px;
            text-transform: capitalize;
            display: block;
            border-bottom: dotted 1px #af675d;
            /*change dropdown color*/
            background: #2431c3;
            line-height: 1;
        }

            #menu li ul.submenu li span a:hover {
                background: #6d6969;
                border-bottom-color: transparent;
            }

    #menu li ul.submenu li ul.submenu li a:hover {
        /*background: #6d6969 ;*/
        background: #b6f65e;
    }


    #menu li ul.submenu li ul.submenu li a {
        padding: 10px 8px;
        text-transform: capitalize;
        white-space: nowrap;
        border-bottom: dotted 1px #af675d;
        background: #34d10f;
        /*background: #af2f1e;*/
        border-radius: 0;
    }

ul#menu > li > ul.submenu > li:last-child a {
    border-radius: 0 0 10px 10px;
}

#menu li ul.submenu li ul.submenu li a:hover {
    border-bottom-color: transparent;
}

#menu .has_sub {
    position: relative;
    display: block;
}

    #menu .has_sub a {
        -o-transition: all .3s;
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
    }

#nav_container ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-family: "Lato-Bold", Arial, Helvetica, sans-serif;
    padding: 20px 18px;
    display: block;
    text-align: left;
}

#nav_container ul li:hover > a {
    background: #34d10f;
}

ul.menu .has_sub ul.submenu li:hover > a, ul.menu .has_sub ul.submenu li a.active {
    background: #6d6969 !important;
}

#nav_container ul li > a.active {
    background: #34d10f;
}

#banner_container img {
    width: 100%;
    display: block;
}

.gr_section_container {
    position: relative;
    float: left;
    width: 100%;
}

    .gr_section_container .bg_container {
        position: absolute;
        top: 0;
        /*background:url(../images/bg_gr_sectn2.png);*/
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .gr_section_container .gr_sec_top {
        background: #dbdbdb;
        float: left;
        width: 100%;
    }

.gr_sec_top .content {
    /*width: 1280px;*/
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gr_sec_top h2 {
    font-size: 30px;
    text-align: center;
    font-family: "Lato-Bold", Arial, Helvetica, sans-serif;
    margin: 10px 0px 30px 0px;
}

.gr_sec_top p, .gr_sec_top p * {
    font-size: 18px !important;
    text-align: justify;
    line-height: 24px;
    font-family: "Lato", Arial, Helvetica, sans-serif !important;
    color: #010101 !important;
}

.gr_sec_top .gr_sec_left {
    float: left;
    width: 50%;
    padding: 30px 0px 30px 15px;
}

.gr_sec_left .btn_viewmore {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-family: "Lato-Bold", Arial, Helvetica, sans-serif;
    background: #11232d;
    width: 200px;
    margin: 25px 0px 0px 0px;
    display: block;
    text-align: center;
    padding: 10px;
}

    .gr_sec_left .btn_viewmore:hover {
        background: #274454;
    }

.gr_sec_top .gr_sec_right {
    float: right;
    width: 40%;
    padding: 30px 62px 30px 30px;
}

.pray_container {
    color: #34d10f;
    font-family: "Lato-Bold", Arial, Helvetica, sans-serif;
}

    .pray_container .pray_hin {
        font-size: 18px;
        font-weight: bold;
        line-height: 34px;
        word-spacing: 8px;
        margin-top: 10px;
        white-space: nowrap;
        text-align: center;
    }

    .pray_container .pray_eng {
        font-size: 18px;
        margin-top: 10px;
        line-height: 24px;
        text-align: center;
    }

    .pray_container .pray_header_img {
        width: 100%;
        max-width: 417px;
    }

.home_form_container {
    background: #f7f7f7;
}

    .home_form_container .hdn_frm_title {
        color: #11232d;
        font-size: 22px;
        border-bottom: 2px solid #cccccc;
        padding-bottom: 6px;
        padding-top: 4px;
        margin-bottom: 10px;
    }

    .home_form_container input {
        width: 100%;
        background: #fff;
        border: 1px solid #b7b7b7;
        font-size: 16px;
        padding: 8px 12px;
        margin-top: 14px;
    }

    .home_form_container .frm_btns_cntnr {
        margin-top: 14px;
        overflow: hidden;
    }

    .home_form_container .btn_forgotpass {
        text-decoration: none;
        color: #fff;
        width: 100%;
        font-size: 16px;
        background-color: #11232d;
        display: inline-block;
        padding: 10px 30px 10px 45px;
        background-image: url(../images/ic_backarrow.png);
        background-repeat: no-repeat;
        background-position: center left 10px;
        margin-top: 25px;
    }

        .home_form_container .btn_forgotpass:hover {
            background-color: #274454;
        }

.frm_btns_cntnr .btn_signup {
    float: left;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    background: #11232d;
    display: inline-block;
    padding: 10px 30px;
}

    .frm_btns_cntnr .btn_signup:hover {
        background: #274454;
    }

.frm_btns_cntnr .btn_login {
    float: right;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    background-color: #11232d;
    display: inline-block;
    padding: 10px 30px 10px 45px;
    background-image: url(../images/ic_key.png);
    background-repeat: no-repeat;
    background-position: center left 10px;
}

    .frm_btns_cntnr .btn_login:hover {
        background-color: #274454;
    }

.list_container ul li b a {
    text-decoration: none;
    color: #000000;
}

.gr_section_container .gr_sec_bottom {
    background: #2431c3;
    padding: 10px 0px;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.gr_sec_bottom .content {
    width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0px 20px;
}

.gr_sec_bottom .blocks {
    text-align: center;
}

    .gr_sec_bottom .blocks a {
        text-decoration: none;
        color: #fff;
        text-transform: uppercase;
        font-family: "Lato-Bold", Arial, Helvetica, sans-serif;
        font-size: 12px;
        display: inline-block;
        text-decoration: none;
        width: 20%;
        border-right: 2px solid #ffffff70;
    }

        .gr_sec_bottom .blocks a:first-child {
            border-left: 2px solid #ffffff70;
        }

        .gr_sec_bottom .blocks a img {
            width: auto;
            -webkit-backface-visibility: hidden;
            -ms-transform: translateZ(0);
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            width: 50px;
        }

.three_col_section {
    background: #e9ebec;
    padding: 40px 0px;
}

    .three_col_section .content {
        width: 1280px;
        margin: 0 auto;
        overflow: hidden;
    }

    .three_col_section .col_left {
        float: left;
        width: 23%;
    }

    .three_col_section .col_center {
        float: left;
        width: 54%;
        height: 443px;
        padding-bottom: 10px;
        border: 2px solid #2c3d48;
    }

    .three_col_section .col_right {
        float: right;
        width: 23%;
    }

    .three_col_section .col_center iframe {
        width: 100%;
        height: 380px;
    }

    .three_col_section .btn_more {
        color: #fff;
        text-decoration: none;
        background: #34d10f;
        text-transform: uppercase;
        font-size: 12px;
        padding: 8px 12px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        display: inline-block;
        margin-left: 15px;
        margin-bottom: 20px;
    }

        .three_col_section .btn_more:hover {
            background: #34d10f;
        }

.col_center .cap_btn_container {
    margin: 5px 10px 10px 10px;
    overflow: hidden;
}

    .col_center .cap_btn_container .caption {
        float: left;
        text-transform: uppercase;
        color: #000;
        font-size: 14px;
        margin-right: 100px;
        margin-top: 10px;
    }

    .col_center .cap_btn_container .button {
        float: right;
    }

        .col_center .cap_btn_container .button a {
            color: #fff;
            text-decoration: none;
            background: #34d10f;
            text-transform: uppercase;
            font-size: 12px;
            padding: 8px 12px;
            border-radius: 4px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            display: inline-block;
        }

            .col_center .cap_btn_container .button a:hover {
                background: #34d10f;
            }

.content_box {
    border: 2px solid #2c3d48;
    margin: 0px 20px;
    height: 443px;
}

    .content_box .titlebar {
        background: #2431c3;
        color: #fff;
        font-size: 14px;
        text-align: center;
        font-family: "Lato-Bold", Arial, Helvetica, sans-serif;
        padding: 8px;
    }

    .content_box .data_box {
        overflow-y: scroll;
        height: 400px;
        padding: 0px 10px;
        font-size: 14px;
        color: #000;
    }

.two_col_section {
    background: #e9ebec;
    padding: 60px 0px;
}

    .two_col_section .col_right {
        float: right;
        width: 20%;
    }

    .two_col_section .content {
        width: 1280px;
        margin: 0 auto;
        overflow: hidden;
    }

    .two_col_section .col_left {
        float: left;
        width: 48%;
        height: 470px;
        margin-right: 2%;
        padding: 30px;
        background: url(../images/bg_news_cal.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .two_col_section .col_right {
        float: right;
        width: 48%;
        margin-left: 2%;
    }

.col_right .cap_btn_container {
    margin-top: 10px;
    overflow: hidden;
}

    .col_right .cap_btn_container .caption {
        float: left;
        text-transform: uppercase;
        color: #000;
        font-size: 14px;
        margin-right: 100px;
        margin-top: 10px;
    }

    .col_right .cap_btn_container .button {
        float: right;
    }

        .col_right .cap_btn_container .button a {
            color: #fff;
            text-decoration: none;
            background: #34d10f;
            text-transform: uppercase;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 4px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            display: inline-block;
        }

            .col_right .cap_btn_container .button a:hover {
                background: #34d10f;
            }

.list_container ul {
    margin: 0;
    padding: 0px 0px 0px 15px;
}

    .list_container ul li {
        margin: 20px 0px;
    }

        .list_container ul li b {
            display: block;
            margin-bottom: 5px;
        }

.gallery_section {
    background: url(../images/bg_slider.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0px 10px 0px;
}

    .gallery_section h1 {
        text-align: center;
        font-size: 26px;
        color: #fff;
        text-transform: uppercase;
        padding-bottom: 10px;
    }

.album_slider {
    width: 1200px;
    margin: 0px auto 30px auto;
}

.jcarousel a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

.jcarousel .gal_album_cover {
    width: 200px;
    height: 200px;
    border: 3px solid #ffffff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
}

.gal_album_cover, .videocls, .album_cover {
    border: 3px solid transparent;
}

.videocls, .album_cover {
    overflow: hidden;
    border-radius: 6px;
}

    .gal_album_cover.active, .videocls.active, .album_cover.active {
        border-color: #14a7ec !important;
    }

    .videocls .gal_album_cover {
        border: 0;
        border-radius: 0;
    }

ul.childrenartgal .gal_album_cover {
    border: 0;
    border-radius: 0;
}

.videogalpage {
    background: #f5f5f5;
    overflow: hidden;
    float: left;
    width: 100%;
}

.jcarousel .gal_album_title {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.icon_blocks_container {
    padding: 10px 0px;
    background: #eaeaea;
}

    .icon_blocks_container .content {
        width: 100%;
        margin: 0 auto;
    }

    .icon_blocks_container .blocks_wrapper {
        margin: 0px auto;
    }

    .icon_blocks_container .blocks {
        text-align: center;
        background-image: url(../images/bg_slide_divider.png);
        background-repeat: repeat-y;
        background-position: center left 0px;
    }

        .icon_blocks_container .blocks a {
            text-decoration: none;
            color: #000;
            text-transform: uppercase;
            font-family: "Lato-Bold", Arial, Helvetica, sans-serif;
            font-size: 12px;
            line-height: 20px;
            vertical-align: text-bottom;
            height: 73px;
            display: inline-block;
        }

            .icon_blocks_container .blocks a div {
                width: 200px;
                height: 73px;
                display: inline-block;
                padding: 0px 10px;
            }

        .icon_blocks_container .blocks ul li {
            background-image: url(../images/bg_slide_divider.png);
            background-repeat: repeat-y;
            background-position: center right 3px;
        }

        .icon_blocks_container .blocks a:hover {
            text-decoration: underline;
        }

        .icon_blocks_container .blocks a:last-child {
        }

        .icon_blocks_container .blocks a img {
            width: auto;
            height: 50px;
            -webkit-backface-visibility: hidden;
            -ms-transform: translateZ(0);
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            max-width: none;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

#footer {
    background: #579ee5;
    text-align: center;
    color: #fff;
    font-size: 16px;
    width: 100%;
    float: left;
    padding: 20px 0px;
    border-bottom: 10px solid #579ee5;
}

    #footer a {
        text-align: center;
        color: #fff;
        text-decoration: none;
        margin: 0px 14px;
    }

        #footer a:hover {
            text-decoration: underline;
        }

    #footer .block_left {
        display: inline-block;
        margin-right: 20px;
    }

    #footer .block_right {
        display: inline-block;
        margin-left: 20px;
    }

.dg-container, .dg-container2 {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding-bottom: 40px;
    display: none;
}

.dg-wrapper {
    width: 700px;
    height: 460px;
    margin: 0 auto;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1280px;
    -o-perspective: 1280px;
    -ms-perspective: 1280px;
    perspective: 1280px;
}

    .dg-wrapper a {
        width: 702px;
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        cursor: default;
        pointer-events: none;
        background-image: url(../images/loader.gif);
        pointer-events: none;
        background-size: 150px;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: #d3d5d5;
        border-radius: 12px;
    }

.thumb_slideshow .dg-wrapper a {
    width: 100%;
}

    .thumb_slideshow .dg-wrapper a img {
        width: 100%;
    }

.dg-wrapper a.dg-transition {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.dg-wrapper a img {
    display: block;
    border-radius: 14px;
    border: 5px rgba(0, 0, 0, 0.2) solid;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    width: 100%;
    max-height: 470px;
}

.dg-container .dg-center img, .dg-container2 .dg-center img {
    filter: grayscale(0%) !important;
    -webkit-filter: grayscale(0%) !important;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.thumb_slideshow .jcarousel-control-prev img, .thumb_slideshow .jcarousel-control-next img {
    width: 100%;
}

.dg-wrapper a div {
    text-align: center;
    text-transform: uppercase;
    line-height: 20px;
    color: #fff;
    font-size: 16px;
    width: 700px;
    display: none;
    position: absolute;
    bottom: -30px;
}

.dg-wrapper a.dg-center div {
    display: block;
    padding: 20px 0 0 0;
}

.dg-container nav..dg-container2 nav {
    width: 100%;
    position: absolute;
    z-index: 1000;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.dg-container nav span, .dg-container2 nav span {
    float: left;
    cursor: pointer;
    opacity: 0.8;
}

    .dg-container nav span:hover, .dg-container2 nav span:hover {
        opacity: 1;
    }

.dg-container nav .dg-prev, .dg-container2 nav .dg-prev {
    float: right;
    margin-right: 40px;
}

    .dg-container nav .dg-prev img, .dg-container2 nav .dg-prev img {
        width: 60px;
    }

.dg-container nav .dg-next, .dg-container2 nav .dg-next {
    float: left;
    margin-left: 40px;
}

    .dg-container nav .dg-next img, .dg-container2 nav .dg-next img {
        width: 60px;
    }

.dg-container .close_btn, .dg-container2 .close_btn {
    position: absolute;
    top: 18px;
    right: 300px;
    z-index: 99;
    cursor: pointer;
}

#innerbanner {
    height: 435px;
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden; /*background-image: url(../images/loader.gif);
    background-size: 150px;
    background-repeat: no-repeat;
    background-position: center center;*/
    background-color: #d3d5d5;
}

    #innerbanner img {
        width: auto;
        height: 100%;
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        min-width: 100%;
    }

.brdc {
    padding: 5px 0px;
    width: 1127px;
    margin: 5px auto;
    font-size: 13px;
    color: #34d10f;
    padding-left: 15px;
    border-left: 2px solid #b02f1e;
}

    .brdc a {
        color: #34d10f;
        text-decoration: none;
        font-weight: bold;
    }

#innerbanner .tagline {
    background-color: rgba(190, 45, 26, 0.7);
    color: #FFFFFF;
    padding: 45px;
    right: 0px;
    bottom: 50px;
    position: absolute;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 600;
    padding-right: 180px;
    line-height: 36px;
}

#innerbody {
    width: 100%;
    background-color: #fff;
    margin: auto;
    font-size: 18px;
    font-weight: 500;
    margin-top: 70px;
    margin-bottom: 50px;
    overflow: hidden;
}

    #innerbody .bodybox {
        width: 50%;
        height: 370px;
        float: left;
        line-height: 25px;
        overflow: hidden;
    }

        #innerbody .bodybox .content {
            padding: 50px 100px 0px 0px;
        }

            #innerbody .bodybox .content h2 {
                font-size: 35px;
                margin-bottom: 30px;
                font-weight: 600;
            }

    #innerbody .imgbox img {
        height: 100%;
        min-width: 100%;
        width: 100%;
    }

.innerbodygraybox {
    background-color: #f5f5f5;
    padding-bottom: 30px;
}

.innerbodygraybox {
    width: 100%;
    background-color: #f5f5f5;
    position: relative;
}

    .innerbodygraybox:after, .innerbodygraybox:before {
        position: absolute;
        content: '';
        width: 300px;
        height: 100%;
        background: #f6f6f6;
        left: 100%;
        top: 0;
    }

    .innerbodygraybox:before {
        left: inherit;
        right: 100%;
    }

    .innerbodygraybox .inbox {
        width: 1280px;
        padding: 30px 0px;
        margin: auto;
        line-height: 25px;
        font-size: 18px;
    }

    .innerbodygraybox h2 {
        font-size: 32px;
        margin-bottom: 30px;
        padding-top: 30px;
        font-weight: 600;
    }

    .innerbodygraybox ul {
        margin: 0px;
    }

        .innerbodygraybox ul li {
            margin-bottom: 5px;
        }

.redtext {
    color: #ab3628;
}

.brdoutergray {
    background-color: #ececec;
}

.loginpageouter {
    width: 100%;
    overflow: hidden;
    background-color: #f7f7f7;
}

    .loginpageouter .left {
        width: 60%;
        float: left;
        height: 430px;
        overflow: hidden;
        position: relative;
    }

        .loginpageouter .left .caption {
            position: absolute;
            background-color: rgba(190, 45, 26, 0.8);
            color: #FFFFFF;
            padding: 40px 50px;
            font-size: 32px;
            font-weight: 600;
            text-transform: uppercase;
            top: 50%;
            right: 0;
            white-space: nowrap;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
        }

        .loginpageouter .left img {
            width: 100%;
            height: auto;
        }

    .loginpageouter .right {
        width: 36%;
        padding-top: 40px;
        float: left;
    }

        .loginpageouter .right .in {
            padding: 0px 78px;
        }

            .loginpageouter .right .in .head {
                border-bottom: 1px #CCCCCC solid;
                padding-bottom: 20px;
                margin-bottom: 50px;
                font-size: 30px;
            }

        .loginpageouter .right .field {
            padding: 10px;
            border: 1px #CCCCCC solid;
            margin-bottom: 25px;
            width: 100%;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

.blkbutton {
    background-color: #11232d;
    color: #FFFFFF;
    font-weight: bold;
    padding: 10px 40px;
    border: 0px;
    outline: 0px;
    cursor: pointer;
    font-size: 18px;
}

.forgotpasswordlink {
    font-size: 16px;
    color: #11232d;
    background-image: url(../images/rightarrow.png);
    padding-left: 45px;
    background-repeat: no-repeat;
    background-position: left center;
    margin-top: 23px;
}

    .forgotpasswordlink a {
        color: #11232d;
        text-decoration: none;
    }

.heading {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 18px;
}

.comtext {
    font-size: 18px;
    line-height: 22px;
}

.innerbody2 {
    width: 1280px;
    background-color: #fff;
    margin: auto;
    font-size: 18px;
    font-weight: 500;
    margin-top: 70px;
    margin-bottom: 50px;
    overflow: hidden;
}

.padlft {
    padding-left: 10px;
}

.innerbodylist ol {
    padding-left: 30px;
}

.size14 {
    font-size: 14px;
}

.toggle {
    position: relative;
    height: 42.75px;
    width: 58.5px;
    cursor: pointer;
    display: none;
    float: right;
    background: #fff;
    margin: 3px;
    border-radius: 5px;
}

    .toggle:after, .toggle:before {
        content: '';
        background: #a7a2a1;
        width: 36px;
        height: 4.5px;
        margin: auto;
        position: absolute;
        top: 0;
        border-radius: 15px;
        bottom: 0;
        right: 0;
        left: 0;
        -o-transition: 1.3s cubic-bezier(0.53, 0, 0.15, 1.3);
        transition: 1.3s cubic-bezier(0.53, 0, 0.15, 1.3);
        -webkit-transition: 1.3s cubic-bezier(0.53, 0, 0.15, 1.3);
        -ms-transition: 1.3s cubic-bezier(0.53, 0, 0.15, 1.3);
        -moz-transition: 1.3s cubic-bezier(0.53, 0, 0.15, 1.3);
    }

    .toggle:before {
        top: -30%;
    }

    .toggle:after {
        top: 30%;
    }

    .toggle.close:before {
        transform: rotate(-225deg);
        -webkit-transform: rotate(-225deg);
        -ms-transform: rotate(-225deg);
        -moz-transform: rotate(-225deg);
        top: 0;
    }

    .toggle.close:after {
        transform: rotate(225deg);
        -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        -moz-transform: rotate(225deg);
        top: 0;
    }

ul.menu {
    display: block;
}

.slides {
    width: 100%;
    float: left;
    height: 500px;
    margin: 0;
    position: relative;
    padding: 0;
}

    .slides li {
        position: relative;
    }
    /*.slides li img{position: absolute;width: auto;height: 100%;transform:translateX(-50%);-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%); }*/
    .slides .bnner_content {
        position: absolute;
        bottom: 100px;
        right: 0px;
        width: 650px;
        z-index: 1;
        font-size: 16px;
        color: rgb(0, 0, 0);
        line-height: 24px;
        text-align: left;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 20px 120px 20px 30px;
        background: rgba(176, 47, 30, 0.88);
    }

.bnner_content .hdng {
    font-size: 32px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    line-height: 38px;
}

.bnner_content .txt {
    font-size: 15px;
    color: rgb(255, 255, 255);
    line-height: 22px;
    margin-top: 10px;
}

.readmore_btn {
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    -webkit-border-image: initial;
    -o-border-image: initial;
    border-image: initial;
    padding: 5px 10px;
    border-radius: 4px;
}

    .readmore_btn:hover {
        color: rgb(176, 47, 30);
        background: rgb(255, 255, 255);
    }

ul.slick-dots {
    bottom: 15px;
    position: absolute;
    width: 100%;
    padding: 0;
    text-align: center;
    list-style: none;
}

    ul.slick-dots li {
        display: inline-block;
    }

        ul.slick-dots li button {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(0,0,0,.3);
            border: solid 1px #fff;
            margin: 0 10px;
            cursor: pointer;
            text-indent: -999px;
            overflow: hidden;
            outline: none;
        }

        ul.slick-dots li.slick-active button {
            background: rgba(176, 47, 30, 0.88);
        }

.slick-list.draggable {
    padding: 0 !important;
}

.slick-slide {
    position: relative;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    margin: 0 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    left: 0;
    cursor: pointer;
    z-index: 899;
}

.slick-next {
    right: 0;
    left: inherit;
}

.slick-arrow:hover polyline {
    stroke-width: 3;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

.slick-arrow:active polyline {
    stroke-width: 6;
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

div#middle_container {
    float: left;
    width: 100%;
    background: #fff;
}

.enquiri-sec {
    float: left;
    width: 50%;
    padding: 50px;
}

    .enquiri-sec h2 {
        margin: 0;
        margin-bottom: 10px;
        line-height: 27px;
        color: #010101;
        text-transform: uppercase;
        text-align: left;
        font-size: 24px;
    }

    .enquiri-sec p {
        font-size: 24px;
        text-align: left;
        color: #11232d;
        margin-bottom: 10px;
        clear: both;
        padding-left: 35px;
    }

.contac_box {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    color: #11232d;
}

    .contac_box h2 {
        text-transform: inherit;
        margin-bottom: 5px;
    }

    .contac_box div {
        padding-left: 70px;
    }

        .contac_box div h2 {
            font-size: 20px;
            color: #11232d;
        }

.enquiri-sec p img {
    display: inline-block;
    width: 24px;
    float: left;
    margin-right: 5px;
}

.form_cont {
    float: left;
    width: 50%;
    padding: 20px;
    background: #b02f1e;
}

    .form_cont h2 {
        text-align: left;
        color: #fff;
        text-transform: uppercase;
    }

    .form_cont form {
        overflow: hidden;
        width: 100%;
    }

        .form_cont form input, .form_cont form textarea {
            width: 100%;
            margin-bottom: 15px;
            padding: 10px;
            padding-left: 15px;
            border: 0;
            font-family: "Lato-Bold", Arial, Helvetica, sans-serif;
            outline: none;
            border: solid 1px transparent;
        }

        .form_cont form button {
            padding: 10px 25px;
            border: 0;
            cursor: pointer;
            font-family: "Lato-Bold", Arial, Helvetica, sans-serif;
            background: #fff;
            outline: none;
            margin-bottom: 70px;
            text-transform: uppercase;
            color: #717171;
        }

.email a {
    color: #fff;
    font-size: 21px;
    text-decoration: none;
    line-height: 25px;
}

    .email a:last-of-type {
        padding-left: 65px;
        padding-top: 5px;
        display: inline-block;
    }

.email {
    color: #fff;
    font-size: 21px;
}

    .email p {
        padding-left: 65px;
        margin-top: 3px;
    }

.contact_address {
    float: left;
    width: 100%;
    background: #34d10f;
    padding: 30px 0;
}

.content {
    width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact_address .addrs_box {
    width: 46%;
    float: left;
    color: #fff;
    padding: 5px;
}

    .contact_address .addrs_box:nth-child(2) {
        padding-left: 50px;
        border-left: solid 2px #fff;
        width: 54%;
    }

.addrs_box h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.addrs_box p {
    font-size: 20px;
    line-height: 26px;
}

.map {
    margin: 40px 0;
    width: 100%;
    overflow: hidden;
    float: left;
}

    .map iframe {
        width: 100%;
        height: 500px;
        border: solid 1px #d0d0d0 !important;
        border-radius: 5px;
        float: left;
    }

.technology {
    float: left;
    width: 100%;
    margin-top: 70px;
}

    .technology.news {
        padding-bottom: 50px;
    }

    .technology h2 {
        text-align: left;
        font-weight: bold;
        line-height: 30px;
        text-transform: uppercase;
        padding-bottom: 30px;
        margin: 0;
        font-size: 28px;
        clear: both;
    }

    .technology.news h2 {
        text-transform: capitalize;
        line-height: 34px;
    }

    .technology p {
        line-height: 27px;
    }

ul.tech_thumb {
    margin-top: 40px;
    padding: 0;
    list-style: none;
    padding: 5px 0;
    float: left;
    width: 100%;
    overflow: hidden;
}

    ul.tech_thumb li {
        width: 33.33%;
        padding: 5px;
        float: left;
        height: 280px;
        overflow: hidden;
    }

    ul.tech_thumb.label li {
        height: auto;
    }

    ul.tech_thumb li img {
        width: 100%;
        height: 100%;
        display: block;
    }

    ul.tech_thumb.label li img {
        border: solid 1px #34d10f;
    }

table.lunch_table div {
    text-align: center;
    white-space: nowrap;
}

table.lunch_table strong {
    color: #34d10f;
    font-size: 18px;
}

.table-responsive {
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    margin-bottom: 40px;
}

.thumb_slideshow {
    float: left;
    width: 100%;
    margin-top: 50px;
}

.technology.artperform .thumb_slideshow {
    margin-top: 20px;
}

.thumb_slideshow .jcarousel-wrapper {
    padding: 0;
}

ul.list_slide {
    float: left;
    width: 100%;
    margin: 0;
    margin-bottom: 70px;
    padding: 0 60px;
}

    ul.list_slide li {
        width: 20%;
        padding: 0 5px;
    }

        ul.list_slide li img {
            width: 100%;
        }

    ul.list_slide .slick-arrow polyline, ul.dtail_slide .slick-arrow polyline {
        stroke: #929292;
        stroke-width: 7px;
    }

    ul.list_slide li .thumb_img {
        width: 100%;
        height: 250px;
    }

.thumb_img img {
    width: 100%;
    height: 100%;
}

ul.list_slide li label {
    margin-top: 0;
    text-align: center;
    background: #34d10f;
    padding: 10px;
    display: block;
    color: #fff;
}

ul.dtail_slide {
    width: 100%;
    float: left;
    padding: 0 60px;
    margin-bottom: 30px;
}

    ul.dtail_slide .thumb_img img {
        height: 400px;
    }

.thumb_withlabel {
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    height: 270px;
    padding-bottom: 56px;
    padding-left: 10px;
    padding-right: 10px;
}

.technology .dg-container .close_btn, .technology .dg-container2 .close_btn {
    display: none;
}

.thumb_withlabel label {
    padding: 10px;
    background: #34d10f;
    text-align: center;
    color: #fff;
    font-size: 14px;
    min-height: 56px;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-grid;
    cursor: pointer;
}

.thumb_withlabel sublabel {
    padding: 0px 10px 5px 10px;
    background: #34d10f;
    text-align: center;
    color: #fff;
    font-size: 14px;
    min-height: 56px;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-grid;
    cursor: pointer;
}

nav.slider_arrow {
    top: 50%;
    position: absolute;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.pop_over {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.33);
    top: 0;
    left: 0;
    z-index: 999;
}

    .pop_over .pop_cont {
        width: 60%;
        margin: 0 auto;
        background: #192b36;
        min-width: 600px;
        z-index: 999;
        position: absolute;
        left: 50%;
        top: 15vh;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

        .pop_over .pop_cont .out-pop {
            max-height: 450px;
            overflow-y: auto;
            padding: 50px;
            max-height: 80vh;
            overflow-y: auto;
            width: 100%;
        }

.pop_cont a.close_btn {
    display: block;
    position: absolute;
    z-index: 999;
    top: -60px;
    left: 50%;
    background: #192b36;
    width: 40px;
    height: 40px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-radius: 50%;
    border: solid 2px #fff;
}

    .pop_cont a.close_btn:after {
        position: absolute;
        content: '';
        width: 2px;
        height: 21px;
        background: #fff;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .pop_cont a.close_btn svg {
        width: 20px;
        display: block;
        height: 20px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

.pop_cont p {
    font-size: 20px !important;
    line-height: 28px;
    padding: 0;
    color: #fff !important;
    text-align: left;
}

.pop_cont ul {
    float: left;
    width: 100%;
    padding-left: 60px;
    margin: 9px 0;
}

    .pop_cont ul li {
        font-size: 18px;
        float: left;
        width: 100%;
        line-height: 28px;
        color: #fff;
        height: auto;
        padding: 0;
        overflow: inherit;
        font-weight: 300;
    }

.desktop {
    display: block;
}

.mobile {
    display: none;
}

.album_slider.D4 {
    width: 100%;
    margin-top: 30px;
}

    .album_slider.D4 .jcarousel .gal_album_title {
        background: #34d10f;
        min-height: 45px;
        padding: 5px;
        float: left;
        width: 100%;
        display: -ms-grid;
        display: grid;
        -ms-flex-line-pack: center;
        align-content: center;
    }

    .album_slider.D4 .jcarousel li {
        padding: 0 5px;
    }

    .album_slider.D4 .jcarousel a {
        display: block;
    }

    .album_slider.D4 .jcarousel .gal_album_cover {
        width: 100%;
        float: left;
        height: 130px;
    }

div#gallery_list ul li .gal_album_cover {
    height: 225px;
}

.dg-container nav polyline, .dg-container2 nav polyline {
    fill: #34d10f;
    stroke-width: 0;
}


.fac_tag {
    display: block;
    background: #1a2b35;
    float: left;
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 45px;
    color: #fff;
    margin-bottom: 80px;
}

.heading_fac {
    float: left;
    width: 100%;
    position: relative;
    padding: 20px;
    background: #34d10f;
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

ul.fac_list, ul.fac_list2 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

    ul.fac_list li, ul.fac_list2 li {
        display: inline-block;
        width: 19.33%;
        text-align: center;
        margin-bottom: 75px;
    }

        ul.fac_list li .img, ul.fac_list2 li .img {
            width: 215px;
            height: 260px;
            overflow: hidden;
            margin: auto;
        }

            ul.fac_list li .img img, ul.fac_list2 li .img img {
                width: 100%;
                display: block;
                border: solid 2px #b02f1e;
            }

        ul.fac_list li .fac_desc, ul.fac_list2 li .fac_desc {
            float: left;
            width: 100%;
        }

.fac_desc h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px 0;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 30px;
}

.fac_desc label {
    font-size: 18px;
    text-transform: capitalize;
    color: #979797;
}

.down_more {
    float: left;
    width: 100%;
    background: #eae9e9;
    padding: 23px 0;
    color: #9c9c9c;
    text-align: center;
    margin-bottom: 5px;
}

.pop_over .pop_cont * {
    color: #fff !important;
}

.down_more svg {
    cursor: pointer;
}

.btn_contnr {
    float: left;
    width: 100%;
    margin: 10px 0;
    text-align: center;
}

    .btn_contnr a {
        color: #fff;
        text-decoration: none;
        background: #34d10f;
        text-transform: uppercase;
        font-size: 15px;
        padding: 18px 32px;
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        display: inline-block;
    }

        .btn_contnr a:hover {
            background-color: #34d10f;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }

ul.teacher_contct {
    margin: 0;
    padding: 0 !important;
    overflow: hidden;
    list-style: none;
}

    ul.teacher_contct li {
        padding: 20px;
        display: inline-block;
        width: 33%;
        vertical-align: top;
    }

        ul.teacher_contct li .teacher_box {
            float: left;
            width: 99%;
        }

        ul.teacher_contct li .teacher_dtail {
            float: left;
            width: 80%;
            padding-left: 20px;
            border-left: dotted 1px;
        }

.teacher_dtail a, .teacher_dtail {
    display: block;
    color: #7d7d7d;
    text-decoration: none;
}

.contnt_page {
    float: left;
    width: 100%;
}

.d0list {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 0px;
    padding-left: 35px;
    margin: 0px;
    line-height: 25px;
    font-size: 18px;
}

.d0heading {
    line-height: 33px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0px 0px 30px;
    padding: 30px 0px 0px;
    font-weight: 600;
    font-size: 32px;
}

.d0list li {
    margin-bottom: 5px;
}

ul#bottom_block a {
    text-decoration: none;
    display: block;
    font-family: "Lato-Bold", Arial, Helvetica, sans-serif;
    vertical-align: text-bottom;
    text-align: center;
    display: inline-block;
}

    ul#bottom_block a div {
        width: auto;
        color: #000 !important;
        text-transform: uppercase;
        font-size: 12px;
        display: inline-block;
        line-height: 20px;
        padding: 0px 10px;
        text-align: center;
    }

ul#bottom_block .slick-slide {
    text-align: center;
}

ul#bottom_block polyline {
    stroke: #151515;
    stroke-width: 2px;
}

ul#bottom_block a div span {
    display: block;
    margin-top: 5px;
}

ul#bottom_block {
    padding: 0;
    margin: 0;
}

    ul#bottom_block a div img {
        width: auto;
        height: 50px;
        -webkit-backface-visibility: hidden;
        -ms-transform: translateZ(0);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        max-width: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin: auto;
    }

.slick-slider img[alt="Prev"] {
    left: 0;
}

.slick-slider img[alt="Next"] {
    right: 0;
    left: inherit;
}

ul.newslist {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul.newslist li {
        padding: 15px 40px;
        width: 100%;
        float: left;
        position: relative;
        vertical-align: top;
        vertical-align: top;
    }

ul#homenews li b {
    font-size: 12px;
}

.technology.news ul.newslist li a {
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

ul.newslist li a:first-letter {
    font-size: 20px;
    margin: 2px;
}

ul.newslist li a:before {
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    border: solid 1px;
    left: -27px;
    top: 4px;
    border-radius: 50%;
}

ul.newslist li a:after {
    position: absolute;
    content: '';
    width: 30%;
    border-bottom: dashed 1px #adadad;
    bottom: -6px;
    left: -0%;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

ul.newslist li:hover a:after {
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    width: 70%;
}

.technology.news a, .technology.news a strong {
    color: #b02f1e !important;
}

#gallery_list .jcarousel-control-prev, #gallery_list .jcarousel-control-next {
    top: 28% !important;
}

    #gallery_list .jcarousel-control-prev polyline, #gallery_list .jcarousel-control-next polyline {
        color: #fff !important;
    }

.dg-container.video_gallery, .dg-container2.video_gallery {
    width: 100% !important;
    padding: 0 60px;
    text-align: center;
}

    .dg-container.video_gallery video, .dg-container2.video_gallery video {
        width: 100%;
        max-height: 562px;
        margin-bottom: 30px;
        max-width: 997px;
        margin: 0 auto 30px auto;
    }

.technology.newsdtail {
    padding-bottom: 50px;
}

    .technology.newsdtail h2 {
        text-transform: capitalize;
        line-height: 34px;
    }

ul.half_sitemap_list ul li a {
    color: #656565 !important;
}

ul.half_sitemap_list > li > a {
    color: #b02f1e !important;
}

.technology.gallerypage a.jcarousel-control-prev, .technology.gallerypage a.jcarousel-control-next {
    top: 40% !important;
}

div#gallery_list ~ a svg polyline {
    stroke: white;
}

.notfound_cont {
    background-color: #DAD6CC;
    font-family: 'Capriola', sans-serif;
    float: left;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
}

    .notfound_cont h1 {
        font-size: 200px;
        color: #34d10f;
        font-family: 'Capriola', sans-serif;
        text-align: center;
        line-height: 200px;
        margin-bottom: 1px;
        text-shadow: 4px 4px 1px white;
    }

    .notfound_cont p {
        color: #c17c73;
        font-size: 20px;
        margin-top: 1px;
        text-align: center;
        margin: 20px;
    }

    .notfound_cont .btn_cont a {
        color: #34d10f;
        text-decoration: none;
        padding: 7px 15px;
        font-size: 13px;
        font-family: arial, serif;
        font-weight: bold;
        display: inline-block;
        border: dashed 1px #34d10f;
        border-radius: 4px;
    }

.btn_cont {
    float: left;
    width: 100%;
    text-align: center;
}

/*Alet popup start*/
.cd-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 9999;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.48);
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -o-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}


.cd-popup-container {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 100px auto;
    background: #FFF;
    border-radius: .25em .25em .4em .4em;
    text-align: center;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

    .cd-popup-container .contentDiv {
        padding: 3em 1em;
    }

        .cd-popup-container .contentDiv p {
            margin-bottom: 0;
            margin-top: 10px;
        }

    .cd-popup-container .cd-buttons:after {
        content: "";
        display: table;
        clear: both;
    }

    .cd-popup-container .cd-buttons li {
        width: 100%;
        margin: auto;
    }

    .cd-popup-container .cd-buttons a {
        display: block;
        height: 40px;
        line-height: 40px;
        text-transform: uppercase;
        color: #FFF;
        -webkit-transition: background-color 0.2s;
        -o-transition: background-color 0.2s;
        transition: background-color 0.2s;
    }

.cd-buttons a:hover {
    color: #fff !important;
    cursor: pointer;
}

ul.cd-buttons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cd-popup-container .cd-buttons li:first-child a {
    background: #bf2e1a;
    border-radius: .25em;
}

ul.cd-buttons li a {
    text-decoration: none;
}

.cd-popup-container .cd-buttons li:last-child a {
    background: #bf2e1a;
    border-radius: 0 0 .25em .25em;
}

.cd-popup-container .cd-popup-close {
    position: absolute;
    top: 8px;
    text-indent: -9999px;
    right: 8px;
    width: 30px;
    height: 30px;
}

a.cd-popup-close:before {
    width: 25px;
    height: 2px;
    background: #bf2e1a;
    left: 0;
    top: 14px;
    position: absolute;
    content: '';
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
}

a.cd-popup-close:after {
    width: 25px;
    height: 2px;
    background: #bf2e1a;
    left: 0;
    top: 14px;
    position: absolute;
    content: '';
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

/*Alet popup ends*/

.redborderfield {
    border: solid 1px #ea4335 !important;
}



















@media only screen and (max-width: 768px) {
    /* iPad screen size rules */
    @supports (-webkit-overflow-scrolling: touch) {
        ul.slick-dots li button {
            display: none;
        }
    }
}

@media (max-width:1300px) {
    #header_inner,
    #nav_container ul,
    .gr_sec_top .content,
    .gr_sec_bottom .content,
    .three_col_section .content,
    .album_slider,
    .icon_blocks_container .content,
    #innerbody,
    .innerbodygraybox .inbox,
    .innerbody2, .content {
        width: 100%;
    }

        #nav_container ul li {
            display: inline-block;
        }

            #nav_container ul li a {
                padding: 0 14px;
                line-height: 40px;
                padding-top: 3px;
            }

    #menu li ul.submenu {
        top: 43px;
    }

    .loginpageouter .left img {
        width: auto;
        height: 100%;
    }

    .technology h2, .technology p {
        padding: 0 30px;
        line-height: 27px;
    }

    .d0list {
        padding-left: 65px;
        padding-right: 20px;
    }

    .technology h2 {
        margin-bottom: 30px;
    }

    .brdc {
        width: 90%;
        float: none;
        padding: 10px;
        margin: 10px auto;
        background-color: #d6d6d6;
        overflow: hidden;
        border-left: solid 5px #34d10f;
    }

    #innerbody .bodybox.imgbox {
        padding: 0;
    }

    #innerbody .bodybox {
        padding: 0 30px;
    }

    .d0heading {
        padding: 15px;
        margin: 0;
        padding-left: 30px;
    }

    #innerbanner {
        overflow: hidden;
    }

    div#innerbody.comtext {
        padding: 20px;
    }

    #innerbanner img {
        width: auto;
        height: 100%;
    }

    ul.menu .has_sub ul.submenu {
        top: 44px;
    }

    #menu li ul.submenu li ul.submenu li a {
        padding: 10px 8px;
        line-height: 1;
    }
}




@media (max-width:1200px) {
    .content_box {
        margin: 0 10px;
    }

    .three_col_section .col_center iframe {
        height: 310px;
    }

    .gr_sec_top .gr_sec_right, .gr_sec_top .gr_sec_left {
        width: 50%;
        padding: 30px;
    }

    #nav_container ul li a {
        padding: 14px 14px;
        font-size: 11px;
        line-height: initial;
    }

    #menu li ul.submenu {
        top: 40px;
    }

    .technology h2, .technology p {
        padding: 0 20px;
    }

    .pop_over .pop_cont {
        width: 80%;
    }

    ul.menu .has_sub:after {
        right: 2px;
    }

    ul.menu .has_sub ul.submenu {
        top: 42px;
    }

        ul.menu .has_sub ul.submenu li a {
            padding: 11px 15px !important;
        }

    .dg-container, .dg-container2 {
        width: 100%;
        overflow: hidden;
    }

    .d0list {
        padding-left: 55px;
        padding-right: 30px;
    }

        .d0list .d0list {
            padding-left: 40px;
            padding-right: 0;
        }

    .d0heading {
        padding-left: 20px;
    }

    ul.tech_thumb li {
        height: auto;
    }

    .thumb_withlabel {
        height: auto;
        padding-bottom: 0;
    }
}




@media (max-width:992px) {
    #nav_container ul li {
        float: left;
    }

    .dg-container .close_btn, .dg-container2 .close_btn {
        right: 140px;
    }

    #nav_container ul li a {
        font-size: 13px;
    }

    #innerbanner .tagline {
        padding: 20px;
        font-size: 22px;
        line-height: 28px;
        max-width: 450px;
        bottom: 20px;
    }

    .three_col_section .col_left, .three_col_section .col_center, .three_col_section .col_right {
        width: 100%;
        float: none;
        margin: 20px auto;
        height: auto;
    }

    .toggle {
        display: block;
    }

    #nav_container ul.menu {
        position: absolute;
        display: none;
        right: 0;
        width: 350px;
        top: 49px;
        z-index: 9999;
    }

    .technology.newsdtail img {
        max-width: 100%;
        height: auto !important;
    }

    * {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }

    #nav_container ul.menu.show {
        display: block;
    }

    ul.teacher_contct li {
        width: 100%;
    }

    #nav_container ul.menu > li {
        border-bottom: solid 1px #a7a2a1;
    }

        #nav_container ul.menu > li:last-child {
            border-bottom: 0;
        }

    .loginpageouter .left {
        width: 40%;
    }

    .loginpageouter .right {
        width: 60%;
    }

    #nav_container ul.menu li {
        width: 100%;
        background: #b1301e;
    }


    ul.menu .has_sub ul.submenu li a {
        border: 0;
    }

    #innerbody .bodybox {
        float: none;
        margin: 20px auto;
        max-width: 610px;
        overflow: hidden;
        width: 100%;
        height: auto;
        padding: 0;
    }

    .innerbodygraybox .inbox {
        padding: 30px;
    }

    #middle_container #innerbody .bodybox .content {
        padding: 10px !important;
    }

    .enquiri-sec {
        padding: 20px;
    }

    .form_cont {
        padding: 88px 50px;
    }

    .contact_address .addrs_box {
        width: 50% !important;
        border: 0 !important;
        padding: 5px !important;
        text-align: center;
    }

    .map {
        margin: 0;
        padding: 40px;
    }

    .pop_over .pop_cont {
        width: 90%;
    }

    .technology {
        margin-top: 40px;
    }

    ul.fac_list li, ul.fac_list2 li {
        margin-bottom: 35px;
    }

    .pop_over .pop_cont .out-pop {
        padding: 10px;
    }

    ul.fac_list li .img, ul.fac_list2 li .img {
        width: 195px;
        height: 231px;
    }

    table.teacher_table tr td {
        display: block;
        text-align: center;
        width: 100%;
        float: left;
    }

        table.teacher_table tr td p {
            text-align: center;
            padding: 0;
        }

    #menu li ul.submenu {
        display: none;
        position: relative;
        background: #a7a2a1;
        top: 0;
        border-radius: 0;
        padding-left: 5px !important;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        z-index: 1;
        transform: inherit;
        opacity: 1;
    }

        #menu li ul.submenu li {
            border-left: solid 2px #6d6969;
        }

    #menu .has_sub a:after {
        right: 7%;
    }

    #menu li ul.submenu li ul.submenu.active {
        visibility: visible;
        position: relative;
        left: 0;
        z-index: 1;
        display: block;
    }

    #menu li:hover > .has_sub a:after {
        content: '\002B';
    }

    #menu li .has_sub.open a:after {
        content: '\2212';
    }

    #menu li:hover ul.submenu {
        display: none;
    }

    #menu li ul.submenu.active {
        display: block;
    }

        #menu li ul.submenu.active ul.submenu {
            display: none;
        }

    span.has_sub.open a {
        background: #a7a2a1 !important;
    }

    #menu li ul.submenu li:hover ul.submenu {
        border-left: 0;
    }

    ul#menu > li > ul.submenu > li:last-child a {
        border-radius: 0;
    }

    #nav_container ul li a {
        line-height: 1;
    }

    #menu li ul.submenu li ul.submenu.active li {
        border-left: solid 1px #6d6969;
    }
}




@media (max-width:768px) {
    .d0list {
        padding-left: 40px;
    }

        .d0list .d0list {
            padding-left: 20px;
        }

    .d0heading {
        padding-left: 15px;
    }

    .pagination {
        text-align: center;
    }

    ul.list_slide li .thumb_img {
        height: 200px;
    }

    ul.newslist li {
        padding-right: 10px;
    }

    .technology.news ul.newslist li a {
        line-height: 22px;
    }

    ul#bottom_block a div {
        width: 50px;
    }

    .dg-container nav img, .dg-container2 nav img {
        width: 30px !important;
    }

    .notfound_cont h1 {
        font-size: 120px;
        line-height: 120px;
    }

    .gr_sec_top .gr_sec_left, .gr_sec_top .gr_sec_right {
        width: 100%;
        float: none;
        text-align: center;
        margin: 0 auto;
    }

    .inbox > div {
        margin-left: 30px !important;
    }

    table.manager tr td {
        display: block;
        text-align: center;
        width: 100%;
    }

    .pop_over .pop_cont .out-pop {
        max-height: 70vh;
    }

    table.manager tr td p, table.manager tr td p * {
        text-align: center;
        padding: 0;
        font-size: 16px !important
    }

    ul.teacher_contct {
        padding-bottom: 20px;
    }

        ul.teacher_contct li {
            margin-bottom: 0;
            padding-bottom: 10px;
        }

            ul.teacher_contct li .teacher_box, ul.teacher_contct li .teacher_dtail {
                width: 100%;
            }

            ul.teacher_contct li .teacher_dtail {
                padding-top: 10px;
                border-top: dotted 1px;
                padding-left: 0;
                border-left: 0;
                margin-top: 5px;
            }

    .innerbodygraybox:after, .innerbodygraybox:before {
        display: none;
    }

    ul.fac_list li, ul.fac_list2 li {
        width: 50%;
        margin-bottom: 55px;
    }

    #nav_container #header_right {
        text-align: left;
        width: auto;
        float: left;
        margin-top: 7px;
    }

    .dg-container .close_btn, .dg-container2 .close_btn {
        position: absolute;
        top: 8px;
        z-index: 999;
        right: 60px;
    }

    .dg-wrapper {
        width: 70%;
        height: 350px;
    }

        .dg-wrapper a {
            width: 100%;
        }

    #nav_container #header_right #con_btn {
        background: #fff;
        color: #34d10f;
        margin-left: 15px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .pop_cont a.close_btn {
        position: static;
        float: right;
        border: 0;
        margin-top: -10px;
        margin-right: -20px;
    }

        .pop_cont a.close_btn:after {
            display: none;
        }

    .pop_cont ul {
        padding-left: 20px;
    }

    .pop_over .pop_cont {
        padding-top: 10px;
    }

    .pop_cont a.close_btn svg {
        width: 20px;
        height: 20px;
    }

    .pop_cont p, .pop_cont ul li {
        font-size: 16px !important;
        line-height: 23px;
        padding: 0;
    }

    .pop_cont ul li {
        max-width: inherit !important;
        margin: 0 !important;
    }

    .technology h2 {
        line-height: 30px;
        text-align: left;
    }

    .innerbodygraybox h2 {
        text-align: left;
    }

    .technology p {
        text-align: left;
        padding: 0 15px;
    }

    ul.poplist {
        padding: 0;
    }

    ul.dtail_slide .thumb_img img {
        height: 300px;
    }

    .thumb_slideshow .dg-wrapper a.dg-center {
        width: 90% !important;
        left: 50% !important;
        -webkit-transform: translateX(-50%) !important;
        -ms-transform: translateX(-50%) !important;
        transform: translateX(-50%) !important;
    }

    .table-responsive {
        padding: 0 15px;
    }

    .slides {
        height: 360px;
    }

        .slides .bnner_content {
            bottom: auto;
            right: auto;
            top: 146px;
            left: 50%;
            transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            background: rgba(176, 47, 30, 0.5);
            padding: 20px;
            width: 100%;
            min-height: 214px;
        }

        .slides ul.slick-dots {
            top: 10px;
            right: 0;
            width: auto;
        }

    .bnner_content .hdng {
        font-size: 22px;
        line-height: 29px;
    }

    #jssor_1 .slides > div, #jssor_1 .slides img {
        width: 100%;
        height: 100%;
    }

    #header_inner {
        min-height: 90px;
    }

    #header_left {
        width: 100%;
    }

    .slick-arrow {
        display: none !important;
    }

    ul#bottom_block .slick-arrow {
        display: block !important;
    }

    #header_right {
        text-align: right;
        margin-top: 18px;
    }

    #logo {
        z-index: 999;
        width: 186px;
        margin: 14px 20px 0 auto;
    }

    #header_left img {
        height: 70px;
        position: relative;
        top: 00px;
    }

    #innerbanner {
        height: 350px;
        width: 100%;
        position: relative;
        float: left;
    }

    #innerbody .bodybox {
        padding: 0;
    }

    div#innerbody.comtext table tr td {
        display: block;
        text-align: left;
        width: 100%;
    }

        div#innerbody.comtext table tr td img {
            margin: auto;
            display: block;
        }

    .enquiri-sec, .form_cont {
        width: 100%;
        float: none;
        margin: auto;
    }

        .enquiri-sec h2, .enquiri-sec p, .contac_box h2, .enquiri-sec p, .contac_box div {
            text-align: center;
        }

    .contac_box div {
        padding-left: 0;
    }

        .contac_box div h2 {
            font-size: 20px;
            margin-bottom: 0;
        }

    .enquiri-sec p img {
        float: none;
        margin-bottom: -3px;
    }

    .email {
        text-align: left;
    }

    .contact_address .addrs_box {
        width: 100% !important;
        float: none;
        max-width: 500px;
        margin: 20px auto;
    }

    ul.tech_thumb li {
        width: 100%;
        padding: 0;
        float: none;
        margin: 10px auto;
        max-width: 450px;
    }
}





@media (max-width:620px) {
    ul.list_slide .slick-arrow, ul.dtail_slide .slick-arrow, ul.dtail_slide .slick-arrow, ul.dtail_slide .slick-arrow {
        display: block !important;
    }

    .dg-container nav span svg, .dg-container2 nav span svg {
        width: 30px !important;
        height: auto !important;
    }

    ul.list_slide {
        padding: 0 15px;
    }

        ul.list_slide .slick-arrow polyline, ul.dtail_slide .slick-arrow polyline {
            stroke: #fff;
        }

    div#children a.jcarousel-control-prev, div#children a.jcarousel-control-next {
        top: 44%;
    }

    ul.list_slide li .thumb_img {
        height: 260px;
    }

    #innerbanner .tagline {
        max-width: 280px;
    }

    .slides .bnner_content {
        text-align: center;
        padding: 15px;
    }

    .bnner_content .txt {
        line-height: 19px
    }

    .gr_sec_bottom .content {
        padding: 0 10px;
    }

    .pop_over .pop_cont {
        min-width: inherit;
    }

    .dg-container nav .dg-prev, .dg-container2 nav .dg-prev {
        margin-right: 0;
    }

    .dg-container nav .dg-next, .dg-container2 nav .dg-next {
        margin-left: 0;
    }

    .loginpageouter .left {
        width: 100%;
        height: 230px;
    }

    .album_slider.D4 .jcarousel .gal_album_cover {
        height: 190px;
    }

    div#blocks .slick-arrow {
        display: block !important;
        margin: 0;
    }

    .gr_sec_bottom .blocks a img {
        margin: auto;
    }

    .dg-wrapper {
        width: 80%;
        height: 300px;
    }

    .loginpageouter .left img {
        width: 100%;
        height: auto;
    }

    .loginpageouter .right {
        width: 100%;
        padding-bottom: 40px;
    }

    #footer .block_left {
        width: 100%;
        margin: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    #footer .block_right {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .map {
        padding: 10px;
    }

        .map iframe {
            height: 400px;
        }

    div#innerbody.comtext table tr td img {
        width: 100%;
    }

    .gr_sec_bottom .blocks a {
        width: 110px !important;
        border: 0px !important;
    }

    .col_center .cap_btn_container .button a {
        margin-bottom: 0;
    }

    #innerbanner {
        height: 210px;
    }

    .innerbodygraybox {
        padding: 0;
    }

    .technology h2 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }

    .three_col_section .col_left, .three_col_section .col_center, .three_col_section .col_right {
        max-width: 550px;
    }

    .gr_sec_top .gr_sec_left, .gr_sec_top .gr_sec_right {
        max-width: 550px;
    }

    .technology {
        margin-top: 20px;
    }

    .fac_tag {
        font-size: 30px;
        padding: 35px;
    }

    #nav_container ul.menu {
        width: 100%;
    }
}

@media (max-width:480px) {
    div#children ~ .dg-container nav span, div#children ~ .dg-container2 nav span {
        padding: 5px 0;
    }

    #header_right {
        margin-top: 88px;
    }

        #header_right img {
            height: 20px;
            margin-top: 8px;
        }

    ul.fac_list li, ul.fac_list2 li {
        width: 100%;
    }

    .dg-container, .dg-container2 {
        padding-bottom: 0;
        margin-bottom: 40px;
    }

        .dg-container nav span, .dg-container2 nav span {
            background: #fff;
            width: 30px !important;
        }

            .dg-container nav span img, .dg-container2 nav span img {
                width: 30px !important;
            }

    .jcarousel-control-prev, .jcarousel-control-next {
        top: 31%;
    }

    .dg-container.video_gallery, .dg-container2.video_gallery {
        padding: 0 10px;
        margin-top: 20px;
    }

    .jcarousel-wrapper {
        margin-bottom: 0;
    }

    div#children .jcarousel-wrapper {
        margin-bottom: 20px;
    }

    .album_slider.D4 {
        margin-bottom: 0;
    }

    .dg-wrapper {
        height: 250px;
    }

    .technology.gallerypage a.jcarousel-control-prev, .technology.gallerypage a.jcarousel-control-next {
        top: 38% !important;
    }

    .pray_container .pray_hin {
        font-size: 16px;
        font-weight: bold;
        line-height: 24px;
        word-spacing: 1px;
        margin-top: 10px;
        white-space: nowrap;
        text-align: left;
    }

    .pray_container .pray_eng {
        font-size: 16px;
        text-align: left;
    }
}

.imgborder {
    border: 1px solid #34d10f;
}


.imgbtn {
    padding: 10px;
    background: #34d10f;
    text-align: center;
    color: #fff;
    font-size: 14px;
    min-height: 56px;
    display: grid;
    align-items: center;
    cursor: pointer;
}



/*Raj css*/

body {
    /*background-color: lightblue;*/
    /*background-image: url("gradient_bg.png");*/
    background-image: url('../../images/main_bg11.jpg');
    background-repeat: repeat-x;
}
/*div {
    background: rgba(204, 235, 249, 0.50)
    } /* Green background with 30% opacity */

/*h1 {
    background-color: darkblue;
    opacity: 0.5;
}*/

/*div {
    background-color: lightblue;
    opacity: 0.5;
}*/

/*p {
    background-color: lightblue;
    opacity: 0.5;
}*/



.welcome-title {
    margin: 0px 0px 15px 0px;
    padding: 0px 0px 10px 0px;
    width: 100%;
    height: auto;
    float: left;
    font-weight: 600;
    font-size: 30px;
    color: #303030;
    line-height: 35px;
    font-family: 'Raleway', sans-serif;
    position: relative;
    letter-spacing: 1px;
}


.course-sec {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: auto;
    float: left;
}

.container1 {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.course-detials {
    margin: 20px 0px;
    padding: 0px;
    width: 100%;
    height: auto;
    float: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}


.innr-program-section {
    margin: 20px 0px 0px 0px;
    padding: 20px 20px;
    width: 100%;
    height: auto;
    float: left;
    background: #fff;
    box-shadow: 0 0 15px -3px rgb(187 187 187 / 15%);
    border-radius: 5px;
}

.program-syllabus-sec {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: auto;
    float: left;
}

.hasing {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: auto;
    float: left;
}

.welcome-p {
    margin: 7px 0px 7px 0px;
    padding: 0px;
    width: 100%;
    height: auto;
    float: left;
    font-size: 14px;
    line-height: 24px;
    color: #252d31;
    text-align: justify;
    font-weight: 500;
    letter-spacing: 0px;
}

element.style {
    border-radius: 2px;
    float: left;
    padding: 0px 0px 0px 0px;
    margin: 0px 10px 10px 0px;
}

.container-small {
    margin-left: 10%;
    margin-right: 10%;
}
