/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


a {
    text-decoration: none;
    font-family: 'Hind', sans-serif;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Hind', sans-serif;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #234957;
        border-top-color: #ecf8f9;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #022859;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #5ec6ca;
        color: #022859;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/* Top Bar */

.topbar a {
    color: #fff;
    font-size: 14px;
}

.topbar {
    background: linear-gradient(270deg, rgba(130,130,130,1) 0%, rgba(68,68,68,1) 100%);
    height: 40px;
    transition: all 0.5s;
}

    .topbar ul {
        margin: 0;
        list-style: none;
    }

    .topbar li {
        /*border: 1px #ff0000 solid;
  background: #5ec6ca;*/
        padding: 5px;
    }

.acon {
    height: 25px;
}

.nav-link {
    padding: 0;
    color: #fff;
}

.accessibility {
    flex-direction: column;
    position: relative;
    float: left;
    transition: all 0.5s;
}

    .accessibility ul {
        top: 32px !important;
        background: #b4b4b4 !important;
    }

        .accessibility ul a {
            padding: 0 10px !important;
        }

.font-selection {
    position: absolute;
    display: block;
    flex-direction: column;
    width: 100%;
    padding: 0 !important;
}

.theme-selection {
    position: absolute;
    display: none;
    flex-direction: column;
    width: 100%;
    background: #b3b3b3 !important;
    padding: 0 !important;
}

.theme-black {
    background: black;
    padding: 0 10px;
}

.theme-regular {
    background: rgb(255, 255, 255);
    color: black;
    padding: 0 !important;
}

    .theme-regular:hover {
        color: black !important;
    }

.theme {
    background-color: #fff;
    padding: 0 !important;
    /*margin: 5px 7px;*/
    display: inline-flex;
    flex-direction: column;
}

.palette.theme-black {
    color: #fff !important;
    background-color: #2a2a2a;
    width: 100%;
}

.theme-black:hover {
    background-color: rgb(0, 0, 0) !important;
    color: #ffffff !important;
}

.palette {
    width: 27px;
    display: inline-block;
    color: var(--dark) !important;
    font-size: 12px;
    height: 23px;
    line-height: 25px;
    vertical-align: middle;
}

.accessibility:hover {
    cursor: pointer;
}

    .accessibility:hover .font-selection {
        display: flex;
    }

    .accessibility:hover .theme-selection {
        display: flex;
    }


.navbar .accessibility:hover > ul {
    background: #000;
    width: 100%;
}

.navbar .accessibility > ul > li {
    min-width: 100% !important;
}

    .navbar .accessibility > ul > li > a {
        padding: 0;
    }

    .navbar .accessibility > ul > li:hover {
        background: #383838;
    }


#screenreader {
    margin-left: 5px;
}

#topbar .left-acc li {
    border-left: #c9c9c9 solid 1px;
    color: #fff;
}

    #topbar .left-acc li:first-child {
        border-left: none;
    }

.top-right li {
    margin: 0 5px;
}

.navbar a:hover i {
    color: #fff;
}

.bi-search::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    vertical-align: 0 !important;
}

.srch-box {
    display: flex;
    flex-direction: row;
    height: 30px;
    position: relative;
    top: 42px;
    background: #6e6e6e;
    padding: 5px;
    border-radius: 5px;
}

    .srch-box button {
        color: #2a2a2a;
        background-color: #fff;
        padding-bottom: 5px !important;
    }

        .srch-box button:hover {
            color: #2a2a2a;
            background-color: #c8c8c8;
        }

#search-menu {
    position: absolute;
    width: 235px;
    height: 60px;
    top: -20em;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 9999;
    background: linear-gradient(to bottom, rgb(42 42 42 / 80%) 0%, rgb(42 42 42 / 80%) 50%, rgba(0, 0, 0, 0.01) 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
    top: 45px !important;
}

    #search-menu.toggled {
        top: 0;
        opacity: 1;
        visibility: visible;
    }

    #search-menu .wrapper {
        position: relative;
        margin: 5px auto 0 auto;
        padding: 0 1em;
    }

        #search-menu .wrapper .srchfield {
            width: 80%;
            padding: 0 0 0.125em 0;
            background: transparent;
            border: none;
            border-bottom: 2px solid #bfbfbf;
            font-size: 15px;
            color: #fff;
        }

        #search-menu .wrapper input:focus {
            outline: none;
        }

        #search-menu .wrapper button {
            position: absolute;
            display: block;
            width: 10%;
            right: 20px;
            top: 0;
            background: transparent;
            border: none;
            color: #bfbfbf;
            font-size: 18px;
            -webkit-transition: 500ms ease all;
            -moz-transition: 500ms ease all;
            transition: 500ms ease all;
        }

            #search-menu .wrapper button:hover {
                color: #fff;
            }

            #search-menu .wrapper button:focus {
                outline: none;
            }

#search-icon {
    FONT-WEIGHT: 600;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #000000;
    text-align: center;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
    background: #fff;
}

    #search-icon:hover {
        color: #8b8b8b;
    }

.navbar .social-links i {
    font-size: 18px;
}

    .navbar .social-links i.fa-x-twitter {
        font-size: 14px;
    }

.social-links {
    display: flex;
    flex-direction: row;
    padding-left: 10px;
    align-items: center;
}

    .social-links i:hover {
        color: #2a2a2a;
    }

.topbar-scrolled {
    top: -40px;
}

.form-control {
    height: 30px !important;
    padding: 0.175rem 0.75rem !important;
}

.nav-item span {
    color: #fff;
    margin-right: 10px;
}

    .nav-item span:hover {
        cursor: pointer;
        text-decoration: underline;
    }


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header .logo-wrapper {
    height: 150px;
}

#header {
    transition: all 0.5s;
    z-index: 999;
    top: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

    #header .dept-title {
        top: 40px;
        position: relative;
        display: flex;
    }

    #header .dept-title-right {
        top: 30px;
        position: relative;
        display: flex;
    }

    #header.header-scrolled {
        top: 0;
    }

    #header .logo-title a {
        color: #9b0505;
    }

    #header .logo img {
        max-height: 90px;
    }

    #header .mp-logo img {
        right: 100px;
        position: relative;
    }

    #header .logo-title h1 {
        font-size: 30px;
        font-weight: 800;
        text-transform: none;
    }

        #header .logo-title h1 span {
        }

    #header .logo-title p {
        font-family: 'Hind', sans-serif;
        margin-top: -5px;
        letter-spacing: .5px;
        font-size: 20px;
        margin-bottom: 0;
        color: #6b6b6b;
    }

    #header .logo-title {
        margin-left: 15px;
        /*! color: #fff; */
    }

#navigation .nav-sep {
    height: 30px;
}

@media (max-width: 1200px) {
    .login {
        display: none;
    }
}

@media (min-width: 991px) and (max-width: 1366px) {
    #header .logo-title h1 {
        font-size: 30px;
        font-weight: 700;
        text-transform: none;
    }

    #online-services .card-outer {
        margin-left: 20px;
        margin-right: 20px;
    }

    .navbar a,
    .navbar a:focus {
        /*padding: 10px 0 10px 20px;*/
        font-size: 12px;
    }
}

@media (min-width: 390px) and (max-width: 991px) {
    .login-page {
        width: 100%;
    }
}

@media (min-width: 1366px) and (max-width: 1920px) {

    .container {
        max-width: 1366px !important;
    }

    .navbar .login {
        position: absolute;
        right: -197px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.bi-house-door-fill {
    color: #fff;
    text-align: center;
    margin-right: 5px;
    z-index: 999;
}

.bi bi-caret-down-fill {
    font-size: 17px;
    color: #fff;
    height: 27px;
    width: 27px;
    text-align: center;
    line-height: 32px;
}

#navigation {
    background: linear-gradient(270deg, rgba(130,130,130,1) 0%, rgba(68,68,68,1) 100%);
    box-shadow: 0 4px 24px 0 rgb(0 0 0 / .05), 0 12px 64px 0 rgb(0 0 0 / 0.05);
    height: 40px;
}


    #navigation .navbar > li > a {
        padding: 10px 30px;
        display: block;
        font-weight: 500;
        color: #fff;
        text-transform: uppercase;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        position: relative;
        overflow: hidden;
        font-size: 15px;
    }

.navbar .dropdown ul li a {
    color: #2a2a2a;
}

#navigation .navbar .nav-link {
    border-right: #F2E18D 1px solid;
    margin-left: 10px;
    padding-right: 20px;
}

#navigation .navbar .first-child {
    border: none;
    padding: 7px !important;
    transform: scale(1.5);
    background: var(--light);
    margin-left: 0 !important;
    position: relative;
    z-index: 10;
}

    #navigation .navbar .first-child:hover {
        border-radius: 70px;
        background-color: #0f0d38;
    }


#navigation .navbar-nav > li > i {
    font-size: 17px;
    color: #fff;
    height: 27px;
    width: 27px;
    text-align: center;
    line-height: 32px;
    margin-left: 5px;
}

.navbar {
    padding: 0;
    height: 40px;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        left: 0;
        display: flex;
        list-style: none;
        align-items: center;
        position: relative;
    }

    .navbar .login {
        border: #828282 1px solid;
        padding: 0;
        display: flex;
    }

        .navbar .login a {
            padding: 5px 10px;
        }

    .navbar li {
        position: relative;
        padding: 0 7px;
        white-space: nowrap;
    }

    .navbar a,
    .navbar a:focus {
        flex-direction: row !important;
        display: flex inline;
        align-items: center;
        justify-content: space-between;
        font-family: "Hind", sans-serif;
        font-size: 16px;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
        font-weight: 400;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 14px;
            line-height: 0;
            margin-left: 5px;
        }




        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a ::before {
            color: #fff;
            bottom: 0;
            margin: 0;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 0px;
        top: calc(100% + 30px);
        margin: 0 !important;
        padding: 0 !important;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 5px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
            border-bottom: 1px solid #828282;
            color: #fff;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            text-transform: none;
            width: 100%;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #fff;
                color: #022859;
                background-color: #e8e8e8;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }



@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: 90%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: block;
        flex-direction: row;
        padding: 10px 15px;
        background: #717171;
        transition: all 0.5s;
    }

    /* #skiptomain {
        display: none;
    } */

    #header .logo img {
        align-items: start;
        max-width: 70px;
        display: block;
    }

    #header .logo-title h1 {
        font-size: 22px;
        max-width: 160px;
    }

    #header .logo-title p {
        font-size: 16px;
    }

    .logo-wrapper .dept-title-right {
        top: -75px !important;
        position: relative;
        flex-direction: column;
        right: -135px;
    }

    .quick-links {
        padding: 25px;
    }

    .centre-schms {
        display: none;
    }

    .top-right {
        width: 100%;
    }

    .nav-sep {
        display: none;
    }

    .navbar li {
        padding: 3px 8px;
    }

    .navbar a {
        justify-content: left;
    }
}

.navbar-toggler {
    background: #fff;
    border: 0;
}

    .navbar-toggler .collapsed {
        background: #fff;
        border: none !important;
    }

    .navbar-toggler i {
        color: #000;
    }

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(60, 60, 60, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 8px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #555555;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #022859;
        }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #022859;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*.navbar .show {
  background: #717171;
  padding: 10px;
  transition: all 0.5s;
}*/

/* Nivo Slider */

.mnslider {
    padding: 0;
}

.nivoSlider {
    max-height: 450px !important;
}

.slider-wrapper {
    top: 200px;
    z-index: 1;
    margin-bottom: 120px;
    height: 65vh;
}

    .slider-wrapper img {
        height: 65vh;
        object-fit: cover;
    }

.nivo-controlNav {
    top: -70px;
    position: relative;
    z-index: 999;
}

.control {
    bottom: -50px;
    position: relative;
    z-index: 999;
    left: 15px;
    border: none;
    display: inline-block;
    background: #ffffff8f;
    text-align: center;
    width: 25px;
    border: solid 1px #9b0505;
    color: #fff !important;
    line-height: 29px;
    height: 27px;
}

/* Modern Ticker */

.headertxt {
    top: 130px;
    position: relative;
    z-index: 997;
}

.modern-ticker {
    width: 100%;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    position: relative;
}

    .modern-ticker a {
        text-decoration: none
    }

    .modern-ticker ul {
        margin: 0;
        padding: 0;
        list-style: none
    }

.mt-round {
    border-radius: 0px;
}

.mt-body {
    position: relative
}

.mt-label {
    /* margin-right: 2px; */
    position: absolute;
    left: 0;
}

.mt-round .mt-label {
    background: #A66D05;
    color: rgb(244 246 250);
    padding: 0 10px;
    text-transform: capitalize;
    font-size: 14px;
}

.mt-label:after {
    content: '';
    position: absolute;
    border-left: 6px solid #A66D05;
    border-top: 6px solid rgba(0, 0, 0, 0);
    border-bottom: 6px solid rgba(0, 0, 0, 0);
    left: 100%;
    top: 12px;
    z-index: 1;
}

.mt-news {
    overflow: hidden;
    position: absolute
}

.mt-scroll .mt-news {
    background-color: #383838;
}

.mt-news ul {
    background-repeat: no-repeat;
    background-position: -1000px
}

.mt-news li {
    float: left
}

.mt-round .mt-news:first-child,
.mt-round .mt-news:first-child a {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px
}

.mt-round .mt-news:last-child,
.mt-round .mt-news:last-child a {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px
}

.mt-news a {
    padding: 0 5px 0 35px;
    margin-right: 2px;
    background-repeat: no-repeat;
    background-position: 7px center;
    display: block;
    white-space: nowrap;
}


.mt-scroll.mt-round .mt-news a {
    border-radius: 0
}

.mt-hide {
    display: none
}

.mt-controls {
    margin-left: 2px;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
    background-position: -1000px;
    top: 4px;
}

.mt-next,
.mt-play,
.mt-prev {
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 4px;
    margin-left: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    background-size: 6px;
}

.modern-ticker {
    color: #383838;
}

.mt-news {
    background-color: #686868;
}

.mt-preloader {
    background: url(../images/preloader.gif) no-repeat center
}

.mt-news ul {
    background-image: url(../img/bullet-over.png)
}

.mt-news a {
    color: #fff;
    background-image: url(../img/bullet.png);
}

    .mt-news a:hover {
        color: #fff;
    }

.mt-controls {
    background-image: url(../img/pause1.png)
}

.mt-prev {
    background-image: url(../img/arrow-prev.png)
}

.mt-next {
    background-image: url(../img/arrow-next.png)
}

.mt-play {
    background-image: url(../img/play1.png);
}

.mt-pause {
    background-image: url(../img/pause1.png)
}

.mt-next:hover,
.mt-play:hover,
.mt-prev:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.mt-next:active,
.mt-play:active,
.mt-prev:active {
    background-color: rgba(255, 255, 255, 0.329);
}


#mainNew {
    /* top: 130px; */
    top: 65px;
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
}

#mainNews {
    /* top: -60px; */
    position: relative;
    padding-top: 0px;
}

#main {
    top: 0px;
    position: relative;
    padding-top: 30px;
}

#mains {
    position: relative;
    padding-top: 75px;
    min-height: 550px;
}

.upper {
    margin-bottom: 40px;
}

.demo1 .slick-track {
    left: 0 !important;
}

.section-title {
    color: #9b0505 !important;
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
}

    .section-title::after {
        content: '';
        position: absolute;
        width: 180px;
        top: 110%;
        left: calc(50% - 90px);
        border-bottom: 4px double #4c4633;
        height: 1px;
    }

    .section-title::before {
        content: '';
        position: absolute;
        top: 110%;
        left: calc(50% - 5px);
        border: 3px solid #fff;
        background: #9b0505;
        height: 15px;
        width: 15px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.302);
        z-index: 1;
        margin-top: -5px;
    }

.section-title2 {
    color: #9b0505 !important;
    font-weight: 600;
    position: relative;
    margin-bottom: 75px;
}

    .section-title2::after {
        content: '';
        position: absolute;
        width: 180px;
        top: 80%;
        left: calc(50% - 90px);
        border-bottom: 4px double #4c4633;
        height: 1px;
    }

    .section-title2::before {
        content: '';
        position: absolute;
        top: 80%;
        left: calc(50% - 5px);
        border: 3px solid #fff;
        background: #9b0505;
        height: 15px;
        width: 15px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.302);
        z-index: 1;
        margin-top: -5px;
    }


.contact-info {
    text-align: center;
    margin-top: 15px;
}

.contact-left {
    padding-left: 40px;
}

.contact-info i {
    font-size: 24px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    color: #9b0505;
}

.contact-address {
    text-align: left;
    flex-direction: row;
    padding-top: 15px;
}

    .contact-address h3 {
        margin-bottom: 0;
        align-items: center;
        display: flex;
    }

.contact-para {
    text-align: left;
    border-bottom: 1px dashed #9b0505;
}

.intro p {
    text-align: justify;
}

.intro .read-more {
    background: #A66D05;
    color: #fff;
}

.quicklink-items {
    border: 2px double #A66D05;
    border-radius: 15px;
    background: #fff;
}

.quick-item {
    border-bottom: 1px solid #555555;
    /*margin-top: 10px;
  margin-bottom: 10px;*/
    padding: 9px 0;
}

    .quick-item:last-child {
        border-bottom: none;
    }

    .quick-item a {
        color: #022859;
        font-weight: 500;
        font-size: 18px;
    }

.item-sec a {
    color: #9b0505 !important;
}

.quick-item i {
    margin: 0 10px;
}

.quick-item a:hover {
    text-decoration: none;
}

.quick-item:hover {
    cursor: pointer;
}

/*.animate:hover {
  border-bottom: 2px solid #9b0505;
  animation: border_anim 3s linear forwards;
}*/

.animate {
    position: relative;
    font-size: 18px;
}

    .animate:hover ::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        border-bottom: 2px solid #9b0505;
        animation: border_anim .3s linear forwards;
    }

@keyframes border_anim {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.prog1 h4 {
    background-color: #717171;
    color: #fff;
    border-radius: 5px 25px 5px 5px;
    padding: 10px;
}

.prog-title {
    margin-bottom: 5px;
}

.prog-body {
    border: 2px solid #9b0505;
    padding-top: 10px;
    border-radius: 10px;
}

.prog-item p {
    margin-bottom: 0;
}

.prog-item {
    padding: 5px;
    min-width: 350px;
}

    .prog-item i {
        color: #9b0505;
    }

.cal-icon {
    color: #9b0505;
    font-weight: 500;
}

.prog-item h5 {
    color: #9b0505;
    white-space: nowrap;
    padding: 5px;
    width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    border-bottom: 1px dashed #555555;
}

.prog2 h4 {
    background-color: #717171;
    color: #fff;
    margin-top: 20px;
    border-radius: 5px 25px 5px 5px;
    padding: 10px;
}

.centre-schms {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px 0;
}

.centre-schms-outer {
    background-image: url(../img/sliderbg.jpg);
}

.owl-item {
    position: relative;
    margin: 10px;
}

.centre-schms-inner {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}

.media-outer {
    margin-top: 20;
    padding: 30px 0;
}

.media-publication {
    max-width: 98%;
}

.gallery-title {
    margin-bottom: -35px;
}

.photo-gallery {
    width: 100%;
}

.item img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.item {
    margin: 0 12px 30px;
    position: relative;
    box-shadow: 1px 5px 12px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    background: #fff;
    padding: 8px;
}

    .item:hover img {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
    }

.item {
    position: relative;
    overflow: hidden;
}

.gallery-item .desp {
    padding: 12px 8px 8px;
    font-weight: 500;
    text-align: center;
    color: #000;
    text-transform: uppercase;
}

.btnmore {
    background: #593D07;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.071) !important;
    padding: 8px 11px;
    color: rgb(255 255 255) !important;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

    .btnmore:hover {
        background: #14083a;
    }

.publication-outer {
    border: 2px solid #9b0505;
    background: #fff;
    padding: 20px;
}

.publication-card {
    padding: 20px;
    /*box-shadow: 0 0 15px 6px rgba(0, 0, 0, 0.08);*/
    height: 180px;
    overflow: auto;
}

    .publication-card p {
        text-align: justify;
    }

.price-card {
    padding-top: 10px;
    background-color: #fff;
    box-shadow: 0px 10px 30px rgba(47, 47, 47, 0.15);
    border-top: 3px solid #9b0505;
    padding: 20px;
    position: relative;
    z-index: 3;
    border-radius: 0 0 15px 15px;
    min-height: 540px;
}

.price-card_icon {
    width: 50px;
    height: 50px;
    background-color: #9b0505;
    text-align: center;
    border-radius: 0 0 99px 99px;
    position: absolute;
    top: 0;
    right: 25px;
    line-height: 50px;
}

    .price-card_icon img {
        max-height: 30px;
    }

.box-title {
    font-size: 20px;
    line-height: 1.417;
    font-weight: 700;
    margin-top: 0em;
    margin-bottom: -20px;
}

.price-card_content {
    border-top: 1px solid #9b0505;
    margin-top: 25px;
    padding-top: 10px;
}

.price-card_icon .fas {
    color: #fff;
    font-size: 25px;
}

.price-card .checklist {
    margin: -5px 0 25px 0;
}

.price-card .themeholy-btn {
    background-color: #9b0505;
    width: 100%;
    padding: 8px 12px;
    border-radius: 10px;
}

    .price-card .themeholy-btn:hover {
        color: #fff;
        text-decoration: none;
        background-color: #383838;
    }

.price-card_content ul li {
    margin: 10px 0;
}

.checklist ul {
    padding-left: 0;
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}

    .checklist ul li a {
        color: #000;
        font-weight: 500;
    }

.themeholy-btn {
    color: aliceblue;
}


.swiper-notification {
    display: none !important;
}

.footer {
    color: rgb(255, 255, 255);
    position: relative;
    display: block;
    font-size: 15px;
    background: linear-gradient(270deg, rgba(130,130,130,1) 0%, rgba(68,68,68,1) 100%);
    padding-bottom: 10px;
    margin-top: 0px;
    clear: both;
}

.checklist li i {
    float: left;
    margin-right: 6px;
    margin-top: 3px;
}

.spacer {
    margin: 12px 0;
    border-bottom: 1px dashed rgb(242 244 248 / 17%);
}

.footer-middle {
    padding: 15px 0 0 15px;
}

    .footer-middle ul li::marker {
        display: none !important;
        color: rgb(85, 85, 85);
    }

    .footer-middle ul {
        list-style-type: none;
    }

.footer-links li a {
    padding: 0px 12px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    margin: 0 3px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

    .footer-links li a:hover {
        text-decoration: underline;
    }

.footer-links li + li a::before {
    content: "|";
    position: absolute;
    left: -5px;
}

.footer .fa-angle-up::before {
    line-height: 1.3 !important;
}

.scrollToTop {
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    color: #fff !important;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    z-index: 999;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    animation: lab_run_top_y 5s linear infinite;
    background: #00000070;
}

.innercon {
    margin-top: 230px;
    position: relative;
}

    .innercon .innercon {
        margin-top: 0px;
    }

        .innercon .innercon h3 {
            display: none !important;
        }

.innerpage-block .innerpage-block {
    border: 0px;
    box-shadow: none;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
}

.inner-title {
    background-image: url(../img/sliderbg.jpg);
    padding: 20px 0;
}

.pagenav-inner {
    border: #593D07 2px solid;
    border-radius: 30px;
    padding: 0 10px;
}

    .pagenav-inner i {
        align-self: center;
        color: #9b0505;
    }

    .pagenav-inner a {
        color: #2a2a2a;
        font-weight: 500;
        margin: 10px;
    }

.pagenav .d-flex.justify-content-start {
    position: absolute;
    top: -90px;
}

.innercon .inner-page.Extra-Header .innercon h3 {
    display: block !important;
    text-align: center;
}

#mains.inner-page.Extra-Header {
    padding-top: 0px;
}

    #mains.inner-page.Extra-Header .pagenav .d-flex.justify-content-start {
        top: 90px;
    }

.innerpage-block {
    background: #fff;
    margin-bottom: 10px;
    margin-top: 20px;
    padding: 20px;
    box-shadow: 0px 5px 6px -4px #888888;
    height: auto !important;
    border: solid 1px #e3e2e2;
    border-radius: 20px;
}

    .innerpage-block p {
        margin-bottom: 0;
        padding: 5px 15px;
        text-align: justify;
    }

.feedback-pg {
    text-align: center;
    align-content: center;
    display: flex;
    justify-content: space-evenly;
}

.org-img img {
    width: 100%;
}

/*------ TABS ------*/

.tabs {
    width: 90%;
    max-width: 1040px;
    margin: 50px auto;
    padding: 20px;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
    font-size: 16px;
}

.tab {
    border: #593D07 2px dashed;
    border-radius: 20px;
}

section {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.tab input {
    display: none;
}

a.themeholy-btn {
    position: absolute;
    bottom: 15px;
    width: 100px !important;
}

label {
    display: inline-block;
    margin: 0 0 -1px;
    padding: 5px 15px;
    font-weight: bold;
    text-align: center;
    color: #9b0505;
    border: 1px solid transparent;
}

    label:before {
        font-weight: normal;
        margin-right: 10px;
    }

    label:hover {
        color: #888;
        cursor: pointer;
    }

input:checked + label {
    color: #636363;
    border: 1px solid #ddd;
    border-top: 5px solid #9b0505;
    border-bottom: 1px solid #fff;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5,
#tab6:checked ~ #content6,
#tab7:checked ~ #content7 {
    display: block;
}

/*
ul > li{
	margin-bottom: 5px;
}*/

/*------ TABS ------*/

.gallery-grid {
    flex-direction: row;
}

.innerpage-block .cont-img {
    overflow: hidden;
}

.img-holder {
    border: #593D07 1px dashed;
    padding: 20px;
}

.innerpage-block .cont-img img {
    max-height: 350px;
}

.para {
    text-align: justify;
}

/***
Login page
***/

.logo-text {
    padding-top: 25px;
}

.login-page {
    background: linear-gradient(270deg, rgba(130,130,130,1) 0%, rgba(68,68,68,1) 100%);
    margin: auto;
    height: 110vh;
}

.navbar-brand {
    text-align: center;
}

.login {
    display: grid;
    color: #fff;
    padding-top: 25px;
}

.container-login {
    flex-direction: column;
    margin: auto;
    background: #ffffffa2;
    padding: 30px;
    border-radius: 30px;
    height: auto;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #9b0505;
}

.login-form {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}

    .login-form label {
        display: block;
        margin-bottom: 4px;
        text-align: left;
    }

    .login-form input {
        width: 100%;
        padding: 10px;
        border-radius: 9px;
        border: none;
    }

        .login-form input:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(253, 242, 233, 0.5);
        }

.btn--form {
    background-color: #cb564e;
    color: #fdf2e9;
    align-self: end;
    padding: 8px;
}

.btn,
.btn:link,
.btn:visited {
    display: inline-block;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
}

button {
    outline: 1px solid #cb564e;
}

.btn--form:hover {
    background-color: #fdf2e9;
    color: #cb564e;
}

print-option {
    position: absolute;
    right: 16px;
}

.print-option button {
    outline: none !important;
    background-color: #cb564e;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 10px 25px;
}

.searchtop {
    margin-left: 25px;
}

.desp {
    position: absolute;
    bottom: 0;
    background: #232323ab;
    width: 100%;
    text-align: center;
    opacity: 0;
    color: #ffff;
    height: 15%;
    transition: all .3s ease;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    left: 0;
    right: 0;
}

.item:hover .desp {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.form-group input {
    height: 32px;
    padding: 0 16px;
    margin-right: 10px;
    font-size: 15px;
}

#exTab1 .tab-content {
    color: white;
    background-color: #428bca;
    padding: 5px 15px;
}


/* change border radius for the tab , apply corners on top*/

#exTab3 .nav-pills li a {
    border-radius: 4px 4px 0 0;
    background-color: #ccc;
    color: #000
}

#exTab3 .tab-content {
    color: #000;
    padding: 5px 15px;
    border-top: solid 1px #333
}

#exTab3 .nav-pills li.active a {
    color: #fff;
    background-color: #3e68b0;
}



#exTab3 img {
    border: 10px solid #eef3f7;
    box-shadow: 0 0 7px rgb(0 0 0 / 70%);
    margin-top: 10px;
    width: auto !important;
    padding: 0px !important;
    height: auto !important;
    max-height: 230px !important;
}

#exTab3 .name {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 30px;
}

.search {
    height: 32px !important;
    width: 32px !important;
    margin-top: 0px;
    color: transparent;
    background-image: url(../img/search.png);
    background-position: center;
    background-size: 15px !important;
    background-repeat: no-repeat;
    background-color: #ffffff;
    border: 0px;
}

.navbar .login:hover i,
.navbar .login:focus i {
    color: #fff;
}

.innerpage-block .tab-pane table table tr td img {
    height: auto !important
}

input[type="range"],
.print-option {
    display: none;
}

@media (max-width: 1366px) {
    .price-card {
        min-height: 565px;
    }
}

@media (max-width:1024px) {
    #navigation > .container {
        width: 100%;
        max-width: 100%;
    }

    .navbar li {
        padding: 0 2px;
    }

    .quick-item {
        padding: 5px 6px;
    }

    .row.gy-4.justify-content-center {
        justify-content: flex-start !important;
    }
}

@media (max-width:768px) {
    .logo-wrapper .dept-title-right {
        flex-direction: row;
    }
}

@media (max-width:767px) {
    .logo-wrapper .dept-title-right {
        flex-direction: column;
    }

    .inner-page table {
        width: 100% !important;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        flex-wrap: wrap;
    }

    .innerpage-block {
        padding: 0px;
    }

        .innerpage-block img {
            max-width: 100% !important;
            height: auto !important;
        }

        .innerpage-block p {
            margin-left: 0px !important
        }

        .innerpage-block video {
            width: 100% !important;
        }

        .innerpage-block .nav.nav-tabs li {
            margin-bottom: 10px;
        }

        .innerpage-block .tab-pane table table tr {
            display: block;
        }

            .innerpage-block .tab-pane table table tr td {
                float: left;
                width: 100%;
            }

    .pagenav .d-flex.justify-content-start {
        top: -70px;
    }

    .innerpage-block iframe {
        width: 100% !important;
    }
}
