


p {
    margin-top: 0;
    margin-bottom: 10px;
}


/********** Template CSS **********/
:root {
    --primary: #4761FF;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
	background-color:#1b2e9e;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 8px 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #eaff10;
}

.navbar .dropdown-toggle::after {
    border: none;
    /* content: "\f107"; */
	content: "»";
    font-family: "Times new roman";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        z-index: 99999 !important;
        visibility: hidden;
        transition: .5s;
        min-width: 300px;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 999999999;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
    z-index: 150000 !important;
    position: absolute;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
        background-color: #e1251d;
    border: 15px solid #e12819;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Features ***/
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}


/*** About ***/
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    
    cursor: pointer;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}


.service-item img
{
    height: 45px;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: #c5332d;
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
	background-color:#fff;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
        background-color: #ffffff61;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgb(0 0 0 / 23%);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: #c5332d;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Testimonial ***/
.testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
	background-color:#fff;
    color: #000;
    transition: .5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: #c5332d;
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: #FFFFFF !important;
}

.testimonial-item img {
    width: 100% !important;
    height: 130px !important;
    border-radius: 10px;
	padding:5px;
	border:1px solid #fff;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #111111;
}
.copyright a {
    color: #fff !important;
}
.copyright a:hover {
    color: #ff8782!important;
}















/*Tob Bar*/


/*Common wrapper*/



.tobbar_main .container
{
	width:94%;
}



.tobbar_main
{
        background-color: #fdf1f1;
    border-bottom: 1px solid #de514f;
    margin: 0;
    padding: 0;
}
.common-container {
  height:36px;
}
.container.common-container {
  
  padding: 0 15px;
  width: 100%;

}
.common-left {
  float:left;
  position:relative;
}
.common-left.common-left-ind li a{line-height:22px;}
.common-left.common-left-ind li:first-child{width:115px;}


.common-right {
  float:right;
  position:relative;
}

.common-left ul li {
  float:left;
  line-height:132%;
  font-size:72%;
  font-weight:600;
  text-transform:uppercase;
  height:36px;
  padding-top:6px;
}
.common-left ul li.gov-india {
  text-align:right;
}
.common-left ul li span {
  display:block;
  font-size:120%;
}
.common-left ul li.ministry {
  padding-left:10px;
  margin-left:10px;
  border-left:1px solid #eeeeee;
}
.common-right ul li {
  float:left;
  position:relative;
  height:34px;
  border-left:1px solid #eeeeee;
    list-style: none;
}
.common-right ul li a {
  display:block;
  width:38px;
  height:32px;
  font-size:90%;
  background-repeat:no-repeat;
  background-position: center !important;
}

.common-right ul li a:hover
{
    background-color: #e8bcbc;
}

.common-right ul li.hover a {
  background-color:#434343;
}
.common-right ul li.ico-skip > a {
  background-image:url(../img/ico-skip.png);
}
.common-right ul li.ico-skip.hover > a {
  background-image:url(../img/ico-skip-h.png);
}
.common-right ul li.ico-accessibility > a {
  background-image:url(../img/ico-accessibility.png);
}
.common-right ul li.ico-accessibility.hover > a {
  background-image:url(../img/ico-accessibility-h.png);
}
.common-right ul li.ico-social > a {
  background-image:url(../img/ico-social.png);
}
.common-right ul li.ico-social.hover > a {
  background-image:url(../img/ico-social-h.png);
}
.common-right ul li.ico-login > a {
  background-image:url(../img/ico-login.png);
}
.common-right ul li.ico-login.hover > a {
  background-image:url(../img/ico-login.png);
}
.common-right ul li.ico-site-search > a {
  background-image:url(../img/ico-site-search.png);
}
.common-right ul li.ico-site-search.hover > a {
  background-image:url(../img/ico-site-search-h.png);
}
.common-right ul li.ico-sitemap > a {
  background-image:url(../img/ico-sitemap.png);
}
.common-right ul li.ico-sitemap.hover > a {
  background-image:url(../img/ico-sitemap-h.png);
}





a.sw-logo {
  background:url(../img/swach-bharat.png) no-repeat scroll 0 0;
  font-size: 1px;
  height: 68px;
  overflow: hidden;
  text-indent: -500px;
  width: 156px;
}
.bg-logo{font-size: 1px; overflow: hidden;
  text-indent: -500px;}

.common-right ul li.hindi a {
  font-size:95%;
  font-weight:600;
  background:none;
  line-height:35px;
  padding:0px 7px;
  width:auto;
}

.common-right ul li.hindi a:hover
{
    background-color: #e8bcbc!important;
}

.common-right ul li.hindi:hover a{color:#fff; background-color:#434343;}

.search-drop input[type='text'] {
  border:0px solid #eeeeee;
  height:36px;
  padding:0px 40px 0px 8px;
  width:200px;
}
.search-drop {
  position:relative;
}
.search-drop a {
  visibility:hidden;
  position:absolute;
  top:0px;
  left:0px;
}
.skip-main a {
  width:auto !important;
  line-height:normal;
  display:inline-block;
  padding-top:3px;
}
.common-right ul li a {
  opacity:1;
    padding-top: 3px;
    text-align: center;
}
.common-right ul li.hover a {
  opacity:1;
}
.common-right ul li ul {
  position:absolute;
  top:36px;
  right:0px;
  z-index:9999;
  box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
  background:#fff;
  padding:0px 0px;
  visibility:hidden;
  background:#333;
}
.common-right ul li ul.search-drop {
  visibility:visible;
  display:none;
}
.common-right ul li ul li {
  float:none;
  position:relative;
  height:auto;
  padding:0px 0px;
  border-left:0px solid #eeeeee;
}
/*.common-right ul li.hover ul{visibility:visible;}*/

.common-right li:hover>ul, .common-right li.hover>ul, .common-right a:focus+ul, .common-right .hover a:focus {
  visibility:visible;
}
.common-right ul li.ico-accessibility ul {
  height:auto;
}
.common-right ul li.ico-social ul {
  height:auto;
  padding:3px 0px;
}
.common-right ul li.ico-accessibility ul li {
  border-top:1px solid #434343;
}
.common-right ul li.ico-accessibility ul li a {
  background:none;
  color: #fff;
  display: inline-block;
  height: auto;
  line-height: 22px;
  margin-top: 0px;
  width: 38px;
  text-align:center;
  padding:3px 0px;
}
.common-right ul li.ico-accessibility ul li:first-child a {
  margin-top:0px;
}
.common-right ul li.ico-social ul li {
  width:38px;
  text-align:center;
  padding:3px 0px;
}
.common-right ul li.ico-social ul li a {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  display: inline-block;
  height: 22px;
  margin-top: 0px;
  width: 22px;
}
.common-right ul li.ico-social ul li:first-child a {
  margin-top:0px;
}
.common-right ul li.ico-site-search input[type="text"] {
  background: #fff url("assets/images/goi-search-bg.png") no-repeat scroll 150px 12px !important;
  /*border: 2px solid #aa2323;*/
  border:2px solid #434343;
  font-weight: 600;
  height: 36px;
  line-height: 34px;
  padding: 0 40px 0 8px;
  width: 270px;
}
.common-right ul li.ico-site-search input[type="text"]:focus {
  background:#fff !important;
}
.common-right ul li.ico-site-search ul {
  padding:0px;
  height:36px;
}
.bttn-search {
  width:38px;
  height:36px;
  cursor:pointer;
  border:0px;
  background-color:#AA2323;
  line-height:27px;
  text-align:center;
  overflow:hidden;
  text-indent:-200px;
  font-size:1px;
  background-image:url(../img/ico-search.png);
  background-repeat:no-repeat;
  background-position: center;
  position:absolute;
  top:0px;
  right:0px;
  opacity:1;
}
.bttn-search:hover {
  opacity:0.8;
}
.sw-logo {
  display:inline-block;
}
a:focus {
  outline:1px dotted #333;
}
.common-left ul li.gov-india a:hover {
  color:#686868 !important;
}
.common-left ul li.gov-india a:focus {
  color:#686868 !important;
}
.common-left a, .common-left li {
  color:#000;
}
.common-left a {
  display:inline-block;
}
.common-left a:focus {
  color:#000 !important;
}

    
    .skipto a
    {   
        float: left;
        color: #545454;
        line-height: 35px;
        font-size: 14px!important;
        font-family: verdana;
        margin: 0px 0px 0px 0px;
        padding: 0px 15px 0px 15px;
        text-decoration: none;
    }
    
    
    .skipto a:hover
    {
        background-color: #e8bcbc;
        font-size: 14px!important;
        font-family: verdana;
    }

/*Tob Bar*/






.display-5
{
    font-size: 28px;
}


.display-6 {
    font-size: 30px;
}

.pg_font a
{
    color: #fff!important;
}


.footer h4 a
{
    color: #fff!important;
}


.copyright a
{
    text-decoration: none;
    margin-right: 5px;
        font-size: 14px;

}



.header_panel
{
	padding:8px 0px!important;
	margin:0px 0px;
}


.emblemb img
{
	height:100px;
}

.emblemb2 img
{
	height:60px;
}
.header_panel h1

{
	    font-size: 40px;
    font-weight: bold;
    font-family: serif;
    margin: 7px 0px 0px 0px;
    color: #1B2F9E; 
    background-image: linear-gradient(45deg, #c4251f , #1c36c9 , #da2c26 , #1B2F9E ); 
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
	
}

.header_panel span

{
	font-size: 22px;
    color: #181818;
    font-family: auto;
	
}


.head_co
{
	font-size:35px;
}


.head_co_p
{
	font-size:16px!important;
}


.slider_cont {
    justify-content: flex-start !important;
    background-color: #0000004f;
    padding: 10px;
}



.tickerpanle_maine {
    margin: 0px 0px 0px 0px!important;
    padding: 0px 0px 0px 0px!important;
    background-color: #1f1f1f;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
}

.tickerpanle_maine_heading {
    text-align: center;
    background-color: #c5332d ;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
}


.tickerpanle_maine_view {
    text-align: center;
    background-color: #c5332d ;
    line-height: 40px;
    color: #fff;
}

.tickerpanle_maine_view a:hover {
   
    color: yellow;
}
.text-primary {
    color: #c5332d !important;
}



.btn-primary {
    color: #fff;
    background-color: #c5332d;
    border-color: #b2120b;
}

.pg_bg
{
	background-image:url('../img/pg_bg.jpg');
	background-attachment:fixed;
}

.pg_bg2
{
	background-image:url('../img/about.jpg');
	background-attachment:fixed;
}


.rounded-pill {
    border-radius: 0.5rem !important;
}

.navbar h1
{
    color: #fff;
}


.navbar-light .navbar-toggler
{
    background-color: white;
}




.pg_bg2 h1 a
{
    padding: 0px 0px;
    margin: 0px 0px;
    color: #000;
}

h1  a
{
    padding: 0px 0px;
    margin: 0px 0px;
    color: #000;
}

h1  a:hover
{
   color: red;
}





.pg_bg .owl-carousel .owl-item img
{
    height: 280px!important;
}



.modal-title
{
    color: #fff;
}

.btn-info {
    color: #fff;
    background-color: #394ecc;
    border-color: #0b3a87;
}

























/*Inner Website Content*/




.innercontainer_panel
{
    padding: 0px;
    margin: 0px auto!important;
    min-height: 450px;
}


ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #fff;
  border-bottom:1px solid #000;
}
ul.breadcrumb li {
  display: inline;
  font-size: 14px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #000;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

.heading_bannertop
{
  font-weight: bold!important;
    font-size: 32px;
    letter-spacing: 5px;
    padding: 65px 0px 5px 15px!important;
    margin: 0px 0px 5px 0px;
    line-height: 25px!important;
    color: #fff!important;
    text-align: center;
    height: 150px;
    text-shadow: 2px 5px 3px rgb(0 0 0 / 100%);
    text-transform: uppercase;
}


.innerheading {
    font-weight: bold!important;
    font-size: 20px;
    text-align: left;
    padding: 3px 0px 0px 0px!important;
    margin: 0px 0px 0px 0px;
    /*line-height: 40px!important;*/
    color: #382900!important;
    padding-left:15px;
    //background: #fceabb;  /* fallback for old browsers */
    //background: -webkit-linear-gradient(to right, #fceabb, #f8b500);  /* Chrome 10-25, Safari 5.1-6 */
    //background: linear-gradient(to right, #fceabb, #f8b500); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.pull-right
{
        text-align: right;
    font-size: 14px;
    color: #000;
    line-height: 30px;
}
.arrows-sitemap 
{
  list-style: inherit;
}
.inner_maincontainer a {
    font-size: 14px!important;
    color: DarkGreen;
}



.cms-content {
    padding: 10px 5px 5px 5px;
    color: #000;
    line-height: 22px;
    font-size:12pt;
}

.cms-content ol li {
    
    line-height: 22px;
    margin-bottom: 10px;
    margin-left: 4px;
}

.cms-content li

{
    /*margin-left: 7%;*/
    line-height: 22px;
    margin-bottom: 10px;
    font-size: 17px;
    list-style:initial;
}


.innercontainer_panel p {
    
    font-size: 16px;
    line-height: 25px;
    color: #313131;
    text-align: justify;
    margin: 20px 0px 20px 0px;
}


table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    
    font-size: 16px;
    line-height: 22px;
}

.hoverTable {
    border-collapse: collapse;
    width: 90%;
    margin: 10px;
    border: 1px solid #fff;
}
tr{
    color: #000;
    font-size: 12px;
    /*font-weight: bold;*/
}

.accordion-body
{
    float: left;
}


.hoverTable th {
    padding: 10px;
    font-size: 16px;
}

.hoverTable td {
    padding: 10px;
    border: 1px solid #e4e4e4;
    font-weight: normal;
    font-size: 16px;
}



.imageicon_linkpanel
{
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.imageicon_linkpanel_matter
{
    padding: 0px;
    margin: 0px;
    }

.imageicon_linkpanel_box
{
    width: 24%;
    padding: 15px 0px 20px 0px;
    margin: 0px 0px 10px 10px;
    border: 0px solid red;
    background-color: #f3f3f3;
    border-radius: 8px;
    min-height: 170px;
}

.imageicon_linkpanel_box img
{
    padding: 10px;
    margin: 0px 0px 10px 0px;
    border: 0px solid red;
    width: 70px;
    background-color: #14245f;
    height: 70px;
    border-radius: 50px;
}


.imageicon_linkpanel_box a
{
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    clear: both;
    border: 0px solid red;
    width: 100%;
    line-height: 25px;
    
    font-size: 16px;
    color: #000;
}

.imageicon_linkpanel_box a:hover
{
    color: red;
}




.dataTables_scrollBody
{
    max-height: none!important;
    min-height: 500px;
    overflow: scroll!important;
}


.MsoNormal span
{
    
    font-size: 14px!important;
}





.MsoListParagraphCxSpFirst span
{
    
    font-size: 14px!important;
}


.MsoListParagraphCxSpLast span
{
    
    font-size: 14px!important;
}





#cmscontent {
    width: 100%;
    height: auto;
    
    font-size: 14px!important;
    text-align: left;
    border: 0px solid red;
    float: left;
    color: #000;
    line-height: 20px;
    margin: 0px 8px 5px 0px;
    padding: 8px 8px 0px 6px;
    background-color:#def1f4;
}

.sitemap_text
{
    color: #000;
}

#cmscontent ul li a
{
    color: #000;
    /*line-height: 25px;
    line-height: 40px;*/
}

#cmscontent ul li a:hover
{
    color: #0655a2;
    text-decoration:underline;
    /*line-height: 25px;
    line-height: 40px;*/
}


.leftline_links_inner

{
    float:left; border-bottom:1px solid green; width:100%;
    line-height: 25px;
    margin-bottom: 10px;
    cursor: pointer;
    
}


.leftline_links_inner:hover

{
    background-color:#f1f1f1;
    
}

.leftline_links_inner img

{
    float:left;margin-left:1%;margin-top:12px; margin-right:10px; border:0px solid yellow; 
}



.leftline_links_inner_righticon

{ 
float:right; width:10%; border:0px solid red; min-height:26px; font-size:12px;
}



.leftline_links_inner a

{
    color: #000;
}

.leftline_links_inner a:hover

{
    color: red;
}




.accordion {
  
  cursor: pointer;
  /*width: 100%;*/
  outline: none;
  transition: 0.4s;
}



.panel {
  padding: 10px 10px;
  display: none;
  background-color: #ddd;
  overflow: hidden;
  margin-bottom: 15px;
}








ul.sidebar-links {
    background: #fff!important;
    padding: 0px 0px 0px 0px;
   
        
    margin: 0;
    margin-bottom: 30px;
    color: #000;
    float: left;
}

ul.sidebar-links li {
    list-style-type: none;
    border-top: 1px solid #dcdcdc;
    border-left: 3px solid #c5332d;
    margin: 1px 0px;
    cursor: pointer;
    float: left;
    width: 100%;
    border-bottom: 5px;
    padding:0px 10px;
    border-bottom: 1px solid #fff;
    transition: all 0.4s ease-in-out 0s;
}

ul.sidebar-links li a {
    
        box-shadow: inset 0 0 0 0 #c19514;
    color: #0066b3;
    padding: 10px 0px;
    margin: 0px 0px 0px 0px;
    width: 100%!important;
    font-size: 15px;
    float: left;
    
    line-height: 20px!important;
    text-decoration: none;
  
    
}
ul.sidebar-links li a:hover
{
    color: #fff!important;
    width: 100%;
    
}
ul.sidebar-links li:hover 
{
  color: #fff!important;
  border-left: 3px solid #0f1c68;
  box-shadow: inset 430px 0 0 0 #1b2e9e;
}





.news_panel1
{
    background-color: #ffedb8;
    padding: 10px 0px 10px 10px;
}


.rig_minpanel_new
{
    background-color: #ffedb8;
}



ul.sidebar-links-full {
    padding: 0px 0px 0px 0px;
    margin: 0;
    color: #fff;
    list-style-image: url(../images/left_bullet.jpg);
}


ul.sidebar-links-full li {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 12px;
    color: #000;
}


.booksmain {
    text-align: center;
}
.imghover {
    width: 150px;
    border: 0px solid #9325BC;
    padding: 10px;
    width: 185px;
    height: 240px;
}


.faq-details
{
    background-color: #e8e8e8;
    border: 1px solid #c1c1c1;
    padding: 12px;
    color: #000;
    margin-bottom: 10px;
    border-radius: 4px;
}


 .navbar-collapse.in {
    overflow-y: visible!important;
}

#containtdiv_urlDiv {
    width: 100%;
    font-size: 12px;
    height: 25px;
    background-color: #4da3ad;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

#containtdiv_urlDiv a {
    font-size: 12px;
    
        color: #000;
    line-height: 25px;
}




.lastup
{
    float: right;
    margin:5px 0px 0px 0px; text-align:right; width:30%;
}




.fabig {
    display: inline-block;
    font: normal normal normal 10px/1 FontAwesome;
    font-size: 20px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    margin: 0;
    display: block;
}

.fa-print:before {
    content: "\f02f";
}

.validation
{
    font-size:14px;
    color:red;
}

.modal-header
{
    background-color:#004696!important;
    color:#fff;
}

.bg-info {
    background-color: #dee2e6!important;
}

.menumainrow {
    background-color: #007e00;
    
}
.table-bordered>:not(caption)>*>*
{
    font-weight:500;
}
/*Inner Website Content*/













.brand-carousel {
  background: #eee;
  margin-top: 10%;
}
.owl-dots{
  text-align: center;
}

.owl-dot {
  display: inline-block;
  height: 15px !important;
  width: 15px !important;
  background-color: #222222 !important;
  opacity: 0.8;
  border-radius: 50%;
  margin: 0 5px;
}

.owl-dot.active {
  background-color: #FF170F !important;
}



/* ignore the code below */


.link-area
{
  position:fixed;
  bottom:20px;
  left:20px;  
  padding:15px;
  border-radius:40px;
  background:tomato;
}
.link-area a
{
  text-decoration:none;
  color:#fff;
  font-size:25px;
}







.news-item
{
    padding:0px 0px 10px 20px;
  background-position:0px 2px;
    margin:10px 0px;
    border-bottom:1px dotted #555;
  background-image: url(../img/linksicon.png);
  background-repeat:no-repeat;
  
}

.news-item a
{
  color: #000;
}

.news-item a:hover
{
  color: red;
}


.demo1
{
  padding: 0px!important;
  height: 200px!important;
}

.card-footer a
{
  color: #000;
  margin: 0px 10px;
}

.card-footer
{
  border: 0px;
}

.card-footer a:hover
{
  color:red;
} 

.card
{
    background-color: transparent;
    border: 0px;
}


.fa-chevron-up:before {
    content: "\f077";
}

.fa-chevron-down:before {
    content: "\f078";
}


.dropdown-item:hover, .dropdown-item:focus {
    color: #ffffff;
    background-color: #1b2e9e;
}

.dropdown-item
{
        border-bottom: 1px solid #9aa1cb !important;
}
.hero
{
    z-index: -1;
    position: relative;
}