html {
    width: 100%;
    height: 100%;
}

body {
    position: relative;
}

    body:before {
        content: '';
        /* background: linear-gradient(45deg, rgba(66, 183, 245, 0.8) 0%, rgba(66, 245, 189, 0.4) 100%); */
        background-image: url(../img/bgimg.jpg);
        background-image: url(../img/background.gif);
        font-family: "Roboto", sans-serif;
        background-size: 500px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.3;
        z-index: -1;
        background-size: 50%;
        background-repeat: repeat;
    }

.img-new {
    max-width: 50px;
}

.overlay, .form-panel.one:before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
}

.form {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
    box-sizing: border-box;
    background-image: url(../img/loginBg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding:20px;
}

.form-toggle {
    z-index: 10;
    position: absolute;
    top: 60px;
    right: 60px;
    background: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    transform-origin: center;
    transform: translate(0, -25%) scale(0);
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .form-toggle:before, .form-toggle:after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 30px;
        height: 4px;
        background: #4285F4;
        transform: translate(-50%, -50%);
    }

    .form-toggle:before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .form-toggle:after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .form-toggle.visible {
        transform: translate(0, -25%) scale(1);
        opacity: 1;
    }

.cardnew .form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 20px;
}

.cardnew .form-group:last-child {
    margin: 0;
}

.cardnew .form-group label {
    display: block;
    margin: 0 0 10px;
    color: #cfc3ff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.two .form-group label {
    color: #FFFFFF;
}

.cardnew .form-group input {
    outline: none;
    display: block;
    width: 100%;
    border: 3px solid #a190d9;   
    box-sizing: border-box;
    padding: 7px 20px;
    color: rgba(0, 0, 0, 0.6);
    line-height: inherit;
    transition: 0.3s ease;
}
.form-group input, .form-select{
    border: 3px solid #a190d9;
    border-radius: 30px;
}
.cardnew .form-group input:focus {
        color: rgba(0, 0, 0, 0.8);
}
.cardnew .two .form-group input{
    color: #FFFFFF;
}

    .cardnew .two .form-group input:focus {
        color: #FFFFFF;
    }

.cardnew .form-group button {
    outline: none;
    background: #f2b63c;
    width: 100%;
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: uppercase;
    cursor: pointer;
}

.cardnew .two .form-group button {
    background: #FFFFFF;
    color: #4285F4;
}

.cardnew .form-group .form-remember {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

    .cardnew .form-group .form-remember input[type=checkbox] {
        display: inline-block;
        width: auto;
        margin: 0 10px 0 0;
    }

.cardnew  .form-group .form-recovery {
    color: #4285F4;
    font-size: 12px;
    text-decoration: none;
}

.cardnew .form-panel {
    padding: 30px;
    box-sizing: border-box;
    max-width: 500px;
    width: 100%;
    margin: auto;
}

    .form-panel.one:before {
        content: "";
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .form-panel.one.hidden:before {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .form-panel.two {
        z-index: 5;
        position: absolute;
        top: 0;
        left: 95%;
        background: #4285F4;
        width: 100%;
        min-height: 100%;
        padding: 60px calc(10% + 60px) 60px 60px;
        transition: 0.3s ease;
        cursor: pointer;
    }

        .form-panel.two:before, .form-panel.two:after {
            content: "";
            display: block;
            position: absolute;
            top: 60px;
            left: 1.5%;
            background: rgba(255, 255, 255, 0.2);
            height: 30px;
            width: 2px;
            transition: 0.3s ease;
        }

        .form-panel.two:after {
            left: 3%;
        }

        .form-panel.two:hover {
            left: 93%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }

            .form-panel.two:hover:before, .form-panel.two:hover:after {
                opacity: 0;
            }

        .form-panel.two.active {
            left: 10%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            cursor: default;
        }

            .form-panel.two.active:before, .form-panel.two.active:after {
                opacity: 0;
            }

.form-header {
    margin: 0 0 20px;
    border-bottom: 1px solid #b4adce;
}

    .form-header h1 {
        padding: 4px 0;
        color: #cfc3ff;
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
        border-left: 5px solid #cfc3ff;
        padding-left: 15px;
        line-height: inherit;
    }

.two .form-header h1 {
    position: relative;
    z-index: 40;
    color: #FFFFFF;
}

.pen-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 600px;
    margin: 20px auto 100px;
}

    .pen-footer a {
        color: #FFFFFF;
        font-size: 12px;
        text-decoration: none;
        text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
    }

        .pen-footer a .material-icons {
            width: 12px;
            margin: 0 5px;
            vertical-align: middle;
            font-size: 12px;
        }

.cp-fab {
    background: #FFFFFF !important;
    color: #4285F4 !important;
}

.isdLogo {
    color: #fff;
    font-size: 22px;
}

    .isdLogo span {
        color: #f8cb30;
    }

/*custom css*/
.main {
    background: linear-gradient(45deg, rgba(66, 183, 245, 0.8) 0%, rgba(66, 245, 189, 0.7) 100%)
}

.sidebar-toggle {
    height: 40px;
    /*width: 40px;*/
    border: 2px solid #3aaab1;
    border-radius: 50%;
    background: #3aaab1;
}

.hamburger, .hamburger:after, .hamburger:before {
    background: #ffffff;
    margin: auto;
}

.navbar {
    border-bottom: solid #00ffc3 2px;
    border-top: 1px dotted #b3b0b0;
}

.sidebar-item.active .sidebar-link:hover, .sidebar-item.active > .sidebar-link {
    background: linear-gradient(90deg,rgb(5 126 122),rgba(59,125,221,.088) 50%,transparent);
    border-left-color: #0cffe2;
    color: #e9ecef;
}

header {
    transition: all 0.5s ease 0s;
    position: relative;
}

    header::before {
        background: url(../../assets/img/header-bg.jpg);
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        background-position: top;
        background-size: 100%;
        background-repeat: no-repeat;
        z-index: -1;
    }

.header-top {
    min-height: 35px;
    height: auto;
}

.bg-dark {
    background-color: #350a58 !IMPORTANT;
}

.homeButton {
    margin-top: 14%;
    border-top: 5px solid #00cded;
}

    .homeButton a {
        width: 30%;
        margin-left: 15px;
        font-size: 16px;
    }

.custom-btn {
    color: #fff;
    border-radius: 0 15px;
    padding: 10px 25px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    margin-top: 15px;
}

.btn-5 i {
    font-size: 36px;
    display: block;
    margin: 20px 0 0 0;
}
/* 5 */
.btn-5 {
    line-height: 42px;
    padding: 0;
    border: none;
    background: rgb(245 176 32);
    background: linear-gradient(0deg, rgb(252 185 44) 0%, rgb(227 154 0) 100%);
}

    .btn-5:hover {
        color: #005691;
        background: transparent;
        box-shadow: none;
        text-decoration: none;
    }

    .btn-5:before,
    .btn-5:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        height: 2px;
        width: 0;
        background: #2384c6;
        box-shadow: -1px -1px 5px 0px #fff, 7px 7px 20px 0px #0003, 4px 4px 5px 0px #0002;
        transition: 400ms ease all;
    }

    .btn-5:after {
        right: inherit;
        top: inherit;
        left: 0;
        bottom: 0;
    }

    .btn-5:hover:before,
    .btn-5:hover:after {
        width: 100%;
        transition: 800ms ease all;
    }

/*.btn {
    border: 1px solid transparent;
    border-radius: 0.2rem;*/
/* color: #495057;*/
/*cursor: pointer;
    display: inline-block;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.3rem 0.85rem;
    text-align: center;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
    text-transform: uppercase;
}*/
table {
    font-size: 15px;
}

.table-headers {
    background: linear-gradient(90deg, #222e3c, #009cb9) !important;
    color: #fff;
}

.table > :not(caption) > * > * {
    background-color: linear-gradient(90deg, #222e3c, #009cb9) !important;
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    /*    padding: 5px;*/
}

.table > :not(caption) > * > * {
    background: none;
}

.table tbody, .table td, .table tfoot, .table th, .table thead, .table tr, .table > :not(:last-child) > :last-child > * {
    border-color: #c9b2ff;
}

.btn-warning {
    background-color: #fcb92c;
    border-color: #fcb92c;
}

/*.form-select, .form-control {
    border: 1px solid #50cfe7;
}*/

h1 {
    color: #300852;
}


h2, h3, h4, h5, h6 {
    color: #350a57;
    font-weight: bold;
}

.chkElegi {
}

    .chkElegi .card-title {
        color: #005cb1;
        font-size: 14px;
        font-weight: 700;
    }

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 95%;
}

.btnNew {
    background: #350a57;
    font-size: 20px;
    /* text-transform: uppercase; */
}

.bspMenu {
    background: #330a54 !important;
    border-bottom: none;
    padding: 0;
}

    .bspMenu .nav-item {
        margin: 0 2px;
    }

    .bspMenu a.nav-link {
        color: #fff;
        padding: 4px 15px !important;
        white-space: nowrap;
        overflow: hidden;
        transition: border-color 0.66s ease-out, font-size 0.3s ease-out;
    }

.nav-item:first-child a.nav-link {
    /* background: red; */
    border-radius: 15px 0 0 15px;
}

.nav-item:last-child a.nav-link {
    /* background: red; */
    border-radius: 0 15px 15px 0;
}

.bspMenu .nav-item {
    margin: 0 2px;
    width: 261px;
    text-align: center;
}

.bspMenu a.nav-link:hover {
    font-size: 13pt;
    cursor: pointer;
    transition: border-color 0s;
    background: #f8c324;
    color: #350a56 !important;
}


.latestNews hr {
    color: #9c27b0;
}


.offcanvas-header {
    border-bottom: 1px dotted #fff;
}

.offcanvas .navbar-nav {
    margin: 0 !important;
}

main {
    margin-top: -50px;
}

.gr-1 {
    background: linear-gradient(170deg, #4a579d 0%, #a7b0e9 100%);
}

.gr-2 {
    background: linear-gradient(170deg, #916845f7 0%, #f9df80 100%);
}

.gr-3 {
    background: linear-gradient(170deg, #ecd227 0%, #4880b3 100%);
}

.gr-4 {
    background: linear-gradient(170deg, #c97cb2 0%, #6f7eb5 100%);
}

.gr-5 {
    background: linear-gradient(170deg, #56669d 0%, #ffb48e 100%);
}

.gr-5 {
    background: linear-gradient(170deg, #ffa97a 0%, #7e72eb 100%);
}

.gr-6 {
    background: linear-gradient(170deg, #3f51b5 0%, #89b1a6 100%);
}

* {
    transition: 0.5s;
}

.align-middle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.column {
    margin-top: 15px;
    padding: 10px;
}

/*.column {
    margin-top: 2rem;
    padding-left: 3rem;
}

    .column:hover {
        padding-left: 0;
    }

        .column:hover .card .txt {
            margin-left: 1rem;
        }

            .column:hover .card .txt h1, .column:hover .card .txt p {
                color: white;
                opacity: 1;
            }

        .column:hover a {
            color: white;
        }

            .column:hover a:after {
                width: 10%;
            }*/
.portalCarousel .card {
    min-height: 170px;
    padding: 15px 10px;
    border: none;
    border-radius: 15px;
    color: black;
    letter-spacing: 0.05rem;
    box-shadow: 0 0 21px rgba(0, 0, 0, 0.27);
    margin: 10px;
    transition: all 0.3s ease;
}

    .portalCarousel .card:hover {
        transform: scale(1.1);
    }


    .portalCarousel .card .txt {
        /*margin-left: -3rem;

        */
        z-index: 1;
        margin-left: 0;
    }

        .portalCarousel .card .txt h1 {
            font-size: 17px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .portalCarousel .card .txt p {
            font-size: 14px;
            letter-spacing: 0rem;
            /*     margin-top: 33px;*/
            opacity: 0;
            color: white;
        }

    .portalCarousel .card a {
        z-index: 3;
        font-size: 12px;
        color: black;
        /*        margin-left: 1rem;*/
        position: relative;
        bottom: -0.5rem;
        text-transform: uppercase;
        font-weight: bold;
    }

        .portalCarousel .card a:after {
            content: "";
            display: inline-block;
            height: 0.5em;
            width: 0;
            margin-right: -100%;
            margin-left: 10px;
            border-top: 1px solid white;
            transition: 0.5s;
        }

    .portalCarousel .card img {
        border-radius: 10px;
    }

    .portalCarousel .card .ico-card {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .portalCarousel .card i {
        position: relative;
        right: -50%;
        top: 75%;
        font-size: 8rem;
        line-height: 0;
        opacity: 0.2;
        color: white;
        z-index: 0;
    }

.portalCarousel .carousel-item {
    transition: transform 0.2s ease-in;
}
/*slider*/
@media (max-width: 767px) {
    .portalCarousel .carousel-inner .carousel-item > div {
        display: none;
    }

        .portalCarousel .carousel-inner .carousel-item > div:first-child {
            display: block;
        }
}


.portalCarousel .carousel-inner .carousel-item.active,
.portalCarousel .carousel-inner .carousel-item-next,
.portalCarousel .carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
    .portalCarousel .carousel-inner .carousel-item-end.active,
    .portalCarousel .carousel-inner .carousel-item-next {
        transform: translateX(33.3%);
    }

    .portalCarousel .carousel-inner .carousel-item-start.active,
    .portalCarousel .carousel-inner .carousel-item-prev {
        transform: translateX(-33.3%);
    }
}

.portalCarousel .carousel-inner .carousel-item-end,
.portalCarousel .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

.portalCarousel .carousel-control-prev {
    background: #9c27b0;
    height: 40px;
    width: 40px;
    left: 48%;
}

.portalCarousel .carousel-control-next {
    background: #9c27b0;
    height: 40px;
    width: 40px;
    right: 47%;
}

.portalCarousel .carousel-control {
    display: block;
    width: 100%;
    left: 0;
    position: absolute;
    bottom: -20px;
}




.portalCarousel .carousel-inner .carousel-item.active,
.portalCarousel .carousel-inner .carousel-item-next,
.portalCarousel .carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
    .portalCarousel .carousel-inner .carousel-item-end.active,
    .portalCarousel .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .portalCarousel .carousel-inner .carousel-item-start.active,
    .portalCarousel .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.portalCarousel .carousel-inner .carousel-item-end,
.portalCarousel .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

@media (max-width: 767px) {
    .portalCarousel .carousel-inner .carousel-item > .card {
        display: none;
    }

    .portalCarousel .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.newslatest .nav-tabs li a {
    cursor: pointer;
    padding: 15px;
    border: 1px solid #ededed;
    border-top: 2px solid #ededed;
    border-right: 0px none;
    color: #00b0ad;
    border-radius: 0px;
    margin-right: 0px;
    font-weight: bold;
    transition: all 0.3s ease-in 0s;
    border: 1px solid #00b0ad;
    border-top: 5px solid #00b0ad;
}

    .newslatest .nav-tabs li a:hover {
        border-bottom-color: #ededed;
        border-right: 0px none;
        background: #00b0ad;
        color: #fff;
    }

.newslatest .nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd;
}

.newslatest .nav-tabs li.active a, .newslatest .nav-tabs li.active a:focus, .newslatest .nav-tabs li.active a:hover {
    border-top: 3px solid #00b0ad;
    border-right: 1px solid #d3d3d3;
    margin-top: -15px;
    color: #444;
    padding: 22px 40px;
}

.newslatest .nav-tabs > li.active > a, .newslatest .nav-tabs > li.active > a:focus, .newslatest .nav-tabs > li.active > a:hover {
    color: #555;
    cursor: default;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

.newslatest .nav-tabs .nav-link.active {
    background: #38aeac;
    color: #fff;
}
/*
.newslatest {
    margin-top: -10px;
}
*/
.newslatest div#myTabContent {
    border: 2px solid #38aeac;
    border-radius: 15px;
    overflow: hidden;
    height: 550px;
}

.newslatest .card {
    background: #f7ffff;
    width: 100%;
/*    display: block !important;*/
    display: flex;
    flex-flow: column !important;
}

.date span {
    background: #ffd779;
    width: 100%;
    text-align: center;
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 15px 15px 0 0;
    color: #350a56;
    text-transform: uppercase;
    display: block;
    width: 120px;
}

/*p.date {
    margin-top: -26px;
}*/
/*.month {
    width: 100%;
    display: block;
    background: #fff;
    border: 1px solid #db899f;
    text-align: center;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: bold;
    line-height: 13px;
    padding: 3px;
}
*/
.counters {
    /*    max-width: 1400px;*/
    /*    margin: auto;
    margin-top: -175px !important;
    width: 100%;*/
}

    .counters .box {
        border-radius: 10px;
        background: #340a568f;
    }

    .counters i {
        color: #350a57;
        margin-bottom: 5px;
        border: 1px solid #350a57;
        border-radius: 50%;
        padding: 10px;
        text-align: center;
        font-size: 30px;
        margin: 5px;
        margin-right: 10px;
        /* background: #e187a052; */
    }

    .counters h1 {
        margin: 0;
    }

    .counters .counter {
        font-size: 40px;
        margin: 0;
        color: #fff;
        font-weight: bold;
        line-height: initial;
    }

    .counters h3 {
        font-size: 20px;
        text-transform: uppercase;
    }

        .counters h3 span {
            font-size: 54px;
            text-decoration: underline;
        }


.modal-header {
    background: #443270;
}

    .modal-header h4 {
        color: #fff;
    }

.offcanvas {
    background: rgba(20, 2, 50,0.9) !important;
    text-align: left;
    float: left;
}
#sidebar-nav {
    width:360px;
}

    button.navbar-toggler {
        background: #7c4cd1;
    }

    button.navbar-toggler:focus {
        box-shadow: none;
    }
  .list-group-item {
    border-top-width: 0;
    background: transparent;
}
label.form-label {
    font-size: 17px;
    color: #350a57;
}

.inforamtiobBG {
    background-color: #e2f5a3;
    border-radius: 30px;
    font-size: 22px;
    font-weight: bold;
}

.offcanvas-header {
    border-bottom: 2px dotted #ffc107;
}

.nav-link, a.dropdown-item {
    color: #ffc107 !important;
    border: 1.5px dotted #ffc107;
    transition: background 0.2s ease-in-out;
    padding: 10px 15px;
    font-size: 15px;
    border-radius: 15px !important;
    margin: 3px 0;
    line-height: 20px;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    background: #ffc107;
    border-radius: 10px;
    color: #3a157c;
    font-weight: bold;
}

.navbar-nav .dropdown-menu {
    position: static;
    background: none;
    padding: 0;
}

a.dropdown-item {
    background: #ffc10721;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #ffc107;
}

.table-primary th {
    background: #e5dbfd !important;
}
/*.table-striped > tbody > tr:nth-of-type(odd) > *{
    --bs-table-accent-bg: #f6faff;
    color: var(--bs-table-striped-color);
}*/
#ticker {
    background-color: #b5c4eb;
    overflow: auto;
    height: 50px;
    vertical-align: middle;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

    #ticker ul {
        display: block;
        padding: 0px;
        vertical-align: middle;
        margin: 0px;
        list-style: none;
        white-space: nowrap;
        animation: scroll 30s linear 0s infinite;
        position: absolute;
        font-weight: bold;
    }

        #ticker ul li {
            display: inline-block;
            white-space: normal;
            margin-left: 20px;
        }

    #ticker .title {
        background-color: #9556a3;
        color: #FFF;
        position: absolute;
        left: 0;
        font-weight: bold;
        border-right: 2px solid #FFF;
        top: 0;
        display: block;
        height: 100%;
        vertical-align: middle;
        line-height: 30px;
        padding-left: 10px;
        padding-right: 10px;
        z-index: 10;
        box-shadow: 0px 0px 20px rgb(0 0 0 / 80%);
        padding-top: 10px;
    }

@keyframes scroll {
    from {
        transform: translate(100%,0);
    }

    to {
        transform: translate(-150%,0);
    }
}

.homeBanner {
    margin-top: 168px !important;
}

.beneficiary-logo {
   max-width:210px; 
    position: absolute;
    top: 10px;
    background: #f4f1ff;
    border-radius: 15px;
    padding: 10px 15px;
    border: 1px solid #350a56;
    left: 45%;
    border-top: 1px solid #350a56;
    border-left: 1px solid #e9e2e2;
    border-bottom: 1px solid #e9e2e2;
    border-right: 1px solid #e9e2e2;
    width: auto;
}

.govLogo {
    max-width: 350px;
}

.footer-logo {
    max-width: 120px;
}

.photogallery {
    background-image: url('../img/beneficiaryBg.png');
}

    .photogallery figure {
        margin-bottom: 0;
        background: #fff;
        overflow: hidden;
    }

        .photogallery figure img {
            transition: all 0.3s ease;
        }

            .photogallery figure img:hover {
                transform: scale(1.2);
                padding: 5px;
            }


    /*        .photogallery figure img:hover {
            transform: scale(1.2);
        }*/

    .photogallery figcaption {
        background: #fff;
        height: 60px;
        display: flex;
        vertical-align: middle;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

        .photogallery figcaption h1 {
            font-size: 17px;
            font-weight: bold;
            text-align: center;
        }

footer p {
    font-size: 13px;
}

.counters .box-1 {
    background: rgb(0 166 207);
}

.counters .box-2 {
    background: #f8b621;
}

.counters .box-3 {
    background: #d5889d;
}

.ministerSlider {
    width: 100%;
    max-width:350px;
    margin-top: 30px;
    margin-left: 4%;
}

    .ministerSlider .carousel-caption {
        position: static;
        /* right: 15%; */
        bottom: 0;
        /* left: 15%; */
        padding:10px;
             color: #fff;
        text-align: center;
        background: #3e6788;
        border-radius: 30px;
        min-height:100px;
        overflow:hidden;
    }

    .ministerSlider p {
        margin: 0;
        font-size: 13px;
        margin: 0;
        line-height: initial;
    }

    .ministerSlider h2 {
        font-size: 18px;
        line-height: inherit;
        color: #ffc107;
        margin: 0;
    }

.ministerSlider figure {
    margin: auto;
    display: block;
    width: 140px;
    height: 140px;
    overflow: hidden;
    background: #b09cbb;
    border-radius: 50%;
    padding-top: 5px;
    border: 2px solid #456687;
}
    .ministerSlider figure img {
        width: 100%;
        display: block;
        height: 165px;
    }    .newslatest p {
        color: #000;
    }


.ministerSlider .carousel-indicators {
    display: none;
}

.ministerSlider {
    display: none;
}

.abtImg {
    max-width: 500px;
}

.btnColor {
    background: #5c5cdd;
    color: #fff;
    border-color: #564bff;
}


@media (max-width: 767px) {
    .portalCarousel .carousel-inner .carousel-item > div {
        display: none;
    }

        .portalCarousel .carousel-inner .carousel-item > div:first-child {
            display: block;
        }
}

.portalCarousel .carousel-inner .carousel-item.active,
.portalCarousel .carousel-inner .carousel-item-next,
.portalCarousel .carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
    .portalCarousel .carousel-inner .carousel-item-end.active,
    .portalCarousel .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .portalCarousel .carousel-inner .carousel-item-start.active,
    .portalCarousel .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.portalCarousel .carousel-inner .carousel-item-end,
.portalCarousel .carousel-inner .carousel-item-start {
    transform: translateX(0);
}
/*.card {
    background: linear-gradient(170deg, #ededed 0%, #d2dcff 100%);
}*/
.carouselScheme {
    min-height: 300px;
    margin-top: 30px;
}

.schemPage figure {
    place-self: center;
    border: solid 6px orange;
    /* border-image: linear-gradient(90deg, purple, orange) 1; */
    padding: 0.2em;
    color: whitesmoke;
    /* font: 1.25em ubuntu, trebuchet ms, arial, sans-serif; */
    /* clip-path: inset(0 round 6px); */
    max-width: 500px;
    float: left;
    border-radius: 30px 0;
    padding: 20px !important;
}

    .schemPage figure img {
        width: 100%;
    }

.heading-underline {
    width: 200px;
    border: 1.5px solid #021539;
    display: block;
    margin: 15px auto 15px;
}

    .heading-underline:before {
        content: '';
        background: #f73e7d;
        width: 40px;
        position: absolute;
        z-index: 9;
        height: 5px;
        margin-top: -3px;
        margin-left: -15px;
    }




/*button {
  
    transition: background 0.5s ease;
}

 

i {
     margin-left: 20px;
}*/

.arrow1 {
    animation: slide1 1s ease-in-out infinite;
    margin-left: 9px;
}



@keyframes slide1 {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, 0);
    }
}

/*html, body {
    margin: 0;
    padding: 0;
    background: #E8ECEF;
    height: 100%;
    width: 100%;
    text-align: center;
}

h1 {
    font: 400 30px roboto, "Open Sans", Helvetica, sans-serif;
    text-transform: uppercase;
}

h2 {
    font: 300 22px roboto, "Open Sans", Helvetica, sans-serif;
    text-transform: uppercase;
}
*/
.switcher-box {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: center;
}

    .switcher-box a {
        display: inline-block;
        width: 32px;
        height: 32px;
        margin-right: 10px;
        padding: 3px;
        cursor: pointer;
        background: #FFF;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    }

        .switcher-box a span {
            display: block;
            width: 100%;
            height: 100%;
            -webkit-box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15) inset, 0 5px 20px rgba(255, 255, 255, 0.4) inset;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15) inset, 0 5px 20px rgba(255, 255, 255, 0.4) inset;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-border-radius: 50%;
            border-radius: 50%;
        }

        .switcher-box a.active {
            background: #000;
            -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) inset;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) inset;
        }

            .switcher-box a.active span {
                border-color: #BBB;
            }

        .switcher-box a.skin-turquoise span {
            background: #1ABC9C;
        }

        .switcher-box a.skin-emerald span {
            background: #2ECC71;
        }

        .switcher-box a.skin-peter-river span {
            background: #3498DB;
        }

        .switcher-box a.skin-amethyst span {
            background: #9B59B6;
        }

        .switcher-box a.skin-wet-asphalt span {
            background: #34495E;
        }

        .switcher-box a.skin-sun-flower span {
            background: #F1C40F;
        }

        .switcher-box a.skin-carrot span {
            background: #E67E22;
        }

        .switcher-box a.skin-alizarin span {
            background: #E74C3C;
        }

        .switcher-box a.skin-graphite span {
            background: #454545;
        }

        .switcher-box a.skin-concrete span {
            background: #95A5A6;
        }

        .switcher-box a.skin-green-sea span {
            background: #16A085;
        }

        .switcher-box a.skin-nephritis span {
            background: #27AE60;
        }

        .switcher-box a.skin-belize-hole span {
            background: #2980B9;
        }

        .switcher-box a.skin-wisteria span {
            background: #8E44AD;
        }

        .switcher-box a.skin-midnight-blue span {
            background: #2C3E50;
        }

        .switcher-box a.skin-orange span {
            background: #F39C12;
        }

        .switcher-box a.skin-pumpkin span {
            background: #D35400;
        }

        .switcher-box a.skin-pomegranate span {
            background: #C0392B;
        }

        .switcher-box a.skin-silver span {
            background: #BDC3C7;
        }

        .switcher-box a.skin-asbestos span {
            background: #7F8C8D;
        }

        .switcher-box a.skin-dodgerblue span {
            background: dodgerblue;
        }

        .switcher-box a.skin-gray-black span {
            background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I1YmRjOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyODM0M2IiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
        }

        .switcher-box a.skin-black-glass span {
            background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2FlYmNiZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzZlNzc3NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzBhMGUwYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwYTA4MDkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
        }


/* Tabbed Styles */
.tabbed {
    border-bottom: 4px solid #00bcd4;
    overflow: hidden;
    transition: border 250ms ease;
}

    .tabbed ul {
        margin: 0px;
        padding: 0px;
        overflow: hidden;
        float: left;
        padding-left: 48px;
        list-style-type: none;
        border-bottom: 4px solid #00bcd4;
        width: 100%;
    }

        .tabbed ul * {
            margin: 0px;
            padding: 0px;
        }

        .tabbed ul li {
            display: block;
            float: right;
            padding: 10px 24px 8px;
            background-color: #49c8ef;
            margin-right: 46px;
            z-index: 2;
            position: relative;
            cursor: pointer;
            color: #330a54;
            text-transform: uppercase;
            font: 600 13px/20px roboto, "Open Sans", Helvetica, sans-serif;
            transition: all 250ms ease;
            text-align: center;
        }

            .tabbed ul li:before,
            .tabbed ul li:after {
                display: block;
                content: " ";
                position: absolute;
                top: 0;
                height: 100%;
                width: 44px;
                background-color: #49c8ef;
                transition: all 250ms ease;
            }

            .tabbed ul li:before {
                right: -24px;
                transform: skew(30deg, 0deg);
                box-shadow: rgba(0,0,0,.1) 3px 2px 5px, inset rgba(255,255,255,.09) -1px 0;
            }

            .tabbed ul li:after {
                left: -24px;
                transform: skew(-30deg, 0deg);
                box-shadow: rgba(0,0,0,.1) -3px 2px 5px, inset rgba(255,255,255,.09) 1px 0;
            }

            .tabbed ul li:hover,
            .tabbed ul li:hover:before,
            .tabbed ul li:hover:after {
                background-color: #cdeafd;
                color: #444;
            }

            .tabbed ul li.active {
                z-index: 3;
            }

                .tabbed ul li.active,
                .tabbed ul li.active:before,
                .tabbed ul li.active:after {
                    background-color: #2b0076;
                    color: #fff;
                }

    /* Round Tabs */
    .tabbed.round ul li {
        border-radius: 8px 8px 0 0;
    }

        .tabbed.round ul li:before {
            border-radius: 0 8px 0 0;
        }

        .tabbed.round ul li:after {
            border-radius: 8px 0 0 0;
        }

    /* Skins */
    .tabbed[class*="skin-"] ul li {
        color: #FFF;
        text-shadow: rgba(0,0,0,.1) 0 1px;
    }

    .tabbed.skin-turquoise {
        border-bottom-color: #1ABC9C;
    }

        .tabbed.skin-turquoise ul li,
        .tabbed.skin-turquoise ul li:before,
        .tabbed.skin-turquoise ul li:after {
            background-color: #34D6B6;
        }

            .tabbed.skin-turquoise ul li:hover,
            .tabbed.skin-turquoise ul li:hover:before,
            .tabbed.skin-turquoise ul li:hover:after {
                background-color: #40E2C2;
            }

            .tabbed.skin-turquoise ul li.active,
            .tabbed.skin-turquoise ul li.active:before,
            .tabbed.skin-turquoise ul li.active:after {
                background-color: #1ABC9C;
            }

    .tabbed.skin-emerald {
        border-bottom-color: #2ECC71;
    }

        .tabbed.skin-emerald ul li,
        .tabbed.skin-emerald ul li:before,
        .tabbed.skin-emerald ul li:after {
            background-color: #48E68B;
        }

            .tabbed.skin-emerald ul li:hover,
            .tabbed.skin-emerald ul li:hover:before,
            .tabbed.skin-emerald ul li:hover:after {
                background-color: #54F297;
            }

            .tabbed.skin-emerald ul li.active,
            .tabbed.skin-emerald ul li.active:before,
            .tabbed.skin-emerald ul li.active:after {
                background-color: #2ECC71;
            }

    .tabbed.skin-peter-river {
        border-bottom-color: #3498DB;
    }

        .tabbed.skin-peter-river ul li,
        .tabbed.skin-peter-river ul li:before,
        .tabbed.skin-peter-river ul li:after {
            background-color: #4EB2F5;
        }

            .tabbed.skin-peter-river ul li:hover,
            .tabbed.skin-peter-river ul li:hover:before,
            .tabbed.skin-peter-river ul li:hover:after {
                background-color: #5ABEFF;
            }

            .tabbed.skin-peter-river ul li.active,
            .tabbed.skin-peter-river ul li.active:before,
            .tabbed.skin-peter-river ul li.active:after {
                background-color: #3498DB;
            }

    .tabbed.skin-amethyst {
        border-bottom-color: #9B59B6;
    }

        .tabbed.skin-amethyst ul li,
        .tabbed.skin-amethyst ul li:before,
        .tabbed.skin-amethyst ul li:after {
            background-color: #B573D0;
        }

            .tabbed.skin-amethyst ul li:hover,
            .tabbed.skin-amethyst ul li:hover:before,
            .tabbed.skin-amethyst ul li:hover:after {
                background-color: #C17FDC;
            }

            .tabbed.skin-amethyst ul li.active,
            .tabbed.skin-amethyst ul li.active:before,
            .tabbed.skin-amethyst ul li.active:after {
                background-color: #9B59B6;
            }

    .tabbed.skin-wet-asphalt {
        border-bottom-color: #34495E;
    }

        .tabbed.skin-wet-asphalt ul li,
        .tabbed.skin-wet-asphalt ul li:before,
        .tabbed.skin-wet-asphalt ul li:after {
            background-color: #4E6378;
        }

            .tabbed.skin-wet-asphalt ul li:hover,
            .tabbed.skin-wet-asphalt ul li:hover:before,
            .tabbed.skin-wet-asphalt ul li:hover:after {
                background-color: #5A6F84;
            }

            .tabbed.skin-wet-asphalt ul li.active,
            .tabbed.skin-wet-asphalt ul li.active:before,
            .tabbed.skin-wet-asphalt ul li.active:after {
                background-color: #34495E;
            }

    .tabbed.skin-sun-flower {
        border-bottom-color: #F1C40F;
    }

        .tabbed.skin-sun-flower ul li,
        .tabbed.skin-sun-flower ul li:before,
        .tabbed.skin-sun-flower ul li:after {
            background-color: #FFDE29;
            color: #0A0;
        }

            .tabbed.skin-sun-flower ul li:hover,
            .tabbed.skin-sun-flower ul li:hover:before,
            .tabbed.skin-sun-flower ul li:hover:after {
                background-color: #FFEA35;
            }

            .tabbed.skin-sun-flower ul li.active,
            .tabbed.skin-sun-flower ul li.active:before,
            .tabbed.skin-sun-flower ul li.active:after {
                background-color: #F1C40F;
                color: #FFF;
            }

    .tabbed.skin-carrot {
        border-bottom-color: #E67E22;
    }

        .tabbed.skin-carrot ul li,
        .tabbed.skin-carrot ul li:before,
        .tabbed.skin-carrot ul li:after {
            background-color: #FF983C;
        }

            .tabbed.skin-carrot ul li:hover,
            .tabbed.skin-carrot ul li:hover:before,
            .tabbed.skin-carrot ul li:hover:after {
                background-color: #FFA448;
            }

            .tabbed.skin-carrot ul li.active,
            .tabbed.skin-carrot ul li.active:before,
            .tabbed.skin-carrot ul li.active:after {
                background-color: #E67E22;
            }

    .tabbed.skin-alizarin {
        border-bottom-color: #E74C3C;
    }

        .tabbed.skin-alizarin ul li,
        .tabbed.skin-alizarin ul li:before,
        .tabbed.skin-alizarin ul li:after {
            background-color: #FF6656;
        }

            .tabbed.skin-alizarin ul li:hover,
            .tabbed.skin-alizarin ul li:hover:before,
            .tabbed.skin-alizarin ul li:hover:after {
                background-color: #FF7262;
            }

            .tabbed.skin-alizarin ul li.active,
            .tabbed.skin-alizarin ul li.active:before,
            .tabbed.skin-alizarin ul li.active:after {
                background-color: #E74C3C;
            }

    .tabbed.skin-graphite {
        border-bottom-color: #454545;
    }

        .tabbed.skin-graphite ul li,
        .tabbed.skin-graphite ul li:before,
        .tabbed.skin-graphite ul li:after {
            background-color: #5F5F5F;
        }

            .tabbed.skin-graphite ul li:hover,
            .tabbed.skin-graphite ul li:hover:before,
            .tabbed.skin-graphite ul li:hover:after {
                background-color: #6B6B6B;
            }

            .tabbed.skin-graphite ul li.active,
            .tabbed.skin-graphite ul li.active:before,
            .tabbed.skin-graphite ul li.active:after {
                background-color: #454545;
            }

    .tabbed.skin-concrete {
        border-bottom-color: #95A5A6;
    }

        .tabbed.skin-concrete ul li,
        .tabbed.skin-concrete ul li:before,
        .tabbed.skin-concrete ul li:after {
            background-color: #AFBFC0;
        }

            .tabbed.skin-concrete ul li:hover,
            .tabbed.skin-concrete ul li:hover:before,
            .tabbed.skin-concrete ul li:hover:after {
                background-color: #BBCBCC;
            }

            .tabbed.skin-concrete ul li.active,
            .tabbed.skin-concrete ul li.active:before,
            .tabbed.skin-concrete ul li.active:after {
                background-color: #95A5A6;
            }

    .tabbed.skin-green-sea {
        border-bottom-color: #16A085;
    }

        .tabbed.skin-green-sea ul li,
        .tabbed.skin-green-sea ul li:before,
        .tabbed.skin-green-sea ul li:after {
            background-color: #30BA9F;
        }

            .tabbed.skin-green-sea ul li:hover,
            .tabbed.skin-green-sea ul li:hover:before,
            .tabbed.skin-green-sea ul li:hover:after {
                background-color: #3CC6AB;
            }

            .tabbed.skin-green-sea ul li.active,
            .tabbed.skin-green-sea ul li.active:before,
            .tabbed.skin-green-sea ul li.active:after {
                background-color: #16A085;
            }

    .tabbed.skin-nephritis {
        border-bottom-color: #27AE60;
    }

        .tabbed.skin-nephritis ul li,
        .tabbed.skin-nephritis ul li:before,
        .tabbed.skin-nephritis ul li:after {
            background-color: #41C87A;
        }

            .tabbed.skin-nephritis ul li:hover,
            .tabbed.skin-nephritis ul li:hover:before,
            .tabbed.skin-nephritis ul li:hover:after {
                background-color: #4DD486;
            }

            .tabbed.skin-nephritis ul li.active,
            .tabbed.skin-nephritis ul li.active:before,
            .tabbed.skin-nephritis ul li.active:after {
                background-color: #27AE60;
            }

    .tabbed.skin-belize-hole {
        border-bottom-color: #2980B9;
    }

        .tabbed.skin-belize-hole ul li,
        .tabbed.skin-belize-hole ul li:before,
        .tabbed.skin-belize-hole ul li:after {
            background-color: #439AD3;
        }

            .tabbed.skin-belize-hole ul li:hover,
            .tabbed.skin-belize-hole ul li:hover:before,
            .tabbed.skin-belize-hole ul li:hover:after {
                background-color: #4FA6DF;
            }

            .tabbed.skin-belize-hole ul li.active,
            .tabbed.skin-belize-hole ul li.active:before,
            .tabbed.skin-belize-hole ul li.active:after {
                background-color: #2980B9;
            }

    .tabbed.skin-wisteria {
        border-bottom-color: #8E44AD;
    }

        .tabbed.skin-wisteria ul li,
        .tabbed.skin-wisteria ul li:before,
        .tabbed.skin-wisteria ul li:after {
            background-color: #A85EC7;
        }

            .tabbed.skin-wisteria ul li:hover,
            .tabbed.skin-wisteria ul li:hover:before,
            .tabbed.skin-wisteria ul li:hover:after {
                background-color: #B46AD3;
            }

            .tabbed.skin-wisteria ul li.active,
            .tabbed.skin-wisteria ul li.active:before,
            .tabbed.skin-wisteria ul li.active:after {
                background-color: #8E44AD;
            }

    .tabbed.skin-midnight-blue {
        border-bottom-color: #2C3E50;
    }

        .tabbed.skin-midnight-blue ul li,
        .tabbed.skin-midnight-blue ul li:before,
        .tabbed.skin-midnight-blue ul li:after {
            background-color: #46586A;
        }

            .tabbed.skin-midnight-blue ul li:hover,
            .tabbed.skin-midnight-blue ul li:hover:before,
            .tabbed.skin-midnight-blue ul li:hover:after {
                background-color: #526476;
            }

            .tabbed.skin-midnight-blue ul li.active,
            .tabbed.skin-midnight-blue ul li.active:before,
            .tabbed.skin-midnight-blue ul li.active:after {
                background-color: #2C3E50;
            }

    .tabbed.skin-orange {
        border-bottom-color: #F39C12;
    }

        .tabbed.skin-orange ul li,
        .tabbed.skin-orange ul li:before,
        .tabbed.skin-orange ul li:after {
            background-color: #FFB62C;
        }

            .tabbed.skin-orange ul li:hover,
            .tabbed.skin-orange ul li:hover:before,
            .tabbed.skin-orange ul li:hover:after {
                background-color: #FFC238;
            }

            .tabbed.skin-orange ul li.active,
            .tabbed.skin-orange ul li.active:before,
            .tabbed.skin-orange ul li.active:after {
                background-color: #F39C12;
            }

    .tabbed.skin-pumpkin {
        border-bottom-color: #D35400;
    }

        .tabbed.skin-pumpkin ul li,
        .tabbed.skin-pumpkin ul li:before,
        .tabbed.skin-pumpkin ul li:after {
            background-color: #ED6E1A;
        }

            .tabbed.skin-pumpkin ul li:hover,
            .tabbed.skin-pumpkin ul li:hover:before,
            .tabbed.skin-pumpkin ul li:hover:after {
                background-color: #F97A26;
            }

            .tabbed.skin-pumpkin ul li.active,
            .tabbed.skin-pumpkin ul li.active:before,
            .tabbed.skin-pumpkin ul li.active:after {
                background-color: #D35400;
            }

    .tabbed.skin-pomegranate {
        border-bottom-color: #C0392B;
    }

        .tabbed.skin-pomegranate ul li,
        .tabbed.skin-pomegranate ul li:before,
        .tabbed.skin-pomegranate ul li:after {
            background-color: #DA5345;
        }

            .tabbed.skin-pomegranate ul li:hover,
            .tabbed.skin-pomegranate ul li:hover:before,
            .tabbed.skin-pomegranate ul li:hover:after {
                background-color: #E65F51;
            }

            .tabbed.skin-pomegranate ul li.active,
            .tabbed.skin-pomegranate ul li.active:before,
            .tabbed.skin-pomegranate ul li.active:after {
                background-color: #C0392B;
            }

    .tabbed.skin-silver {
        border-bottom-color: #BDC3C7;
    }

        .tabbed.skin-silver ul li,
        .tabbed.skin-silver ul li:before,
        .tabbed.skin-silver ul li:after {
            background-color: #D7DDE1;
            color: #666;
        }

            .tabbed.skin-silver ul li:hover,
            .tabbed.skin-silver ul li:hover:before,
            .tabbed.skin-silver ul li:hover:after {
                background-color: #E3E9ED;
            }

            .tabbed.skin-silver ul li.active,
            .tabbed.skin-silver ul li.active:before,
            .tabbed.skin-silver ul li.active:after {
                background-color: #BDC3C7;
                color: #FFF;
            }

    .tabbed.skin-asbestos {
        border-bottom-color: #7F8C8D;
    }

        .tabbed.skin-asbestos ul li,
        .tabbed.skin-asbestos ul li:before,
        .tabbed.skin-asbestos ul li:after {
            background-color: #99A6A7;
        }

            .tabbed.skin-asbestos ul li:hover,
            .tabbed.skin-asbestos ul li:hover:before,
            .tabbed.skin-asbestos ul li:hover:after {
                background-color: #A5B2B3;
            }

            .tabbed.skin-asbestos ul li.active,
            .tabbed.skin-asbestos ul li.active:before,
            .tabbed.skin-asbestos ul li.active:after {
                background-color: #7F8C8D;
            }

    .tabbed.skin-dodgerblue {
        border-bottom-color: dodgerblue;
    }

        .tabbed.skin-dodgerblue ul li,
        .tabbed.skin-dodgerblue ul li:before,
        .tabbed.skin-dodgerblue ul li:after {
            background-color: deepskyblue;
        }

            .tabbed.skin-dodgerblue ul li:hover,
            .tabbed.skin-dodgerblue ul li:hover:before,
            .tabbed.skin-dodgerblue ul li:hover:after {
                background-color: #33ccff;
            }

            .tabbed.skin-dodgerblue ul li.active,
            .tabbed.skin-dodgerblue ul li.active:before,
            .tabbed.skin-dodgerblue ul li.active:after {
                background-color: dodgerblue;
            }

    .tabbed.skin-gray-black {
        border-bottom-color: #28343b;
    }

        .tabbed.skin-gray-black,
        .tabbed.skin-gray-black ul li,
        .tabbed.skin-gray-black ul li:before,
        .tabbed.skin-gray-black ul li:after {
            transition: none;
        }

            .tabbed.skin-gray-black ul li,
            .tabbed.skin-gray-black ul li:before,
            .tabbed.skin-gray-black ul li:after {
                background-color: #68737B;
            }

                .tabbed.skin-gray-black ul li:hover,
                .tabbed.skin-gray-black ul li:hover:before,
                .tabbed.skin-gray-black ul li:hover:after {
                    background-color: #707A83;
                }

                .tabbed.skin-gray-black ul li.active,
                .tabbed.skin-gray-black ul li.active:before,
                .tabbed.skin-gray-black ul li.active:after {
                    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2I1YmRjOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyODM0M2IiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
                }

    .tabbed.skin-black-glass {
        border-bottom-color: #0a0809;
    }

        .tabbed.skin-black-glass,
        .tabbed.skin-black-glass ul li,
        .tabbed.skin-black-glass ul li:before,
        .tabbed.skin-black-glass ul li:after {
            transition: none;
        }

            .tabbed.skin-black-glass ul li,
            .tabbed.skin-black-glass ul li:before,
            .tabbed.skin-black-glass ul li:after {
                background-color: #333;
            }

                .tabbed.skin-black-glass ul li:hover,
                .tabbed.skin-black-glass ul li:hover:before,
                .tabbed.skin-black-glass ul li:hover:after {
                    background-color: #444;
                }

                .tabbed.skin-black-glass ul li.active,
                .tabbed.skin-black-glass ul li.active:before,
                .tabbed.skin-black-glass ul li.active:after {
                    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2FlYmNiZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzZlNzc3NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzBhMGUwYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwYTA4MDkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
                }

a.iprodev {
    line-height: normal;
    font-family: Varela Round, sans-serif;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    color: #A7AAAE;
    position: fixed;
    left: 20px;
    bottom: 20px;
    border: 1px solid #A7AAAE;
    padding: 12px 20px 10px;
    border-radius: 50px;
    transition: all .1s ease-in-out;
    text-transform: uppercase;
}

    a.iprodev:hover {
        background: #A7AAAE;
        color: white;
    }

.schemesPanel {
    background: whitesmoke;
    margin-top: 30px;
    padding-top: 15px;
    background-image: url(../img/b-schemes.png);
    background-repeat: no-repeat;
    background-position: right;
}

    .schemesPanel .carousel-indicators button {
        width: 19px !important;
        height: 0 !important;
        background: #673ab7 !important;
    }


#faqAccordion .accordion .item {
    border: none;
    margin-bottom: 50px;
    background: none;
}

#faqAccordion .fa-chevron-down:before {
    content: none;
}

#faqAccordion .accordion-button::after {
    background-image: none !important;
    content: "\f078";
    background-color: #6c00fb;
    border-radius: 5px;
    color: #fff;
    padding: 4px;
    width: 25px;
    height: 25px;
    outline: 2px solid #49c8ef;
    font-family: "Font Awesome 6 Free";
}

#faqAccordion .accordion-button {
    /* letter-spacing: 3px; */
    font-weight: bold;
    font-family: inherit;
}



#faqAccordion .accordion .item .item-header h2 button.btn.btn-link {
    background: #333435;
    color: white;
    border-radius: 0px;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    line-height: 2.5;
    text-decoration: none;
}

#faqAccordion .accordion .item .item-header {
    border-bottom: none;
    background: transparent;
    padding: 0px;
    margin: 2px;
}

    #faqAccordion .accordion .item .item-header h2 button {
        color: white;
        font-size: 20px;
        padding: 15px;
        display: block;
        width: 100%;
        text-align: left;
    }

.accordion .item .item-header h2 i {
    float: right;
    font-size: 30px;
    color: #eca300;
    background-color: black;
    width: 60px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

#faqAccordion button.btn.btn-link.collapsed i {
    transform: rotate(0deg);
}

#faqAccordion button.btn.btn-link i {
    transform: rotate(180deg);
    transition: 0.5s;
}

#faqAccordion span.number {
    background: #6600fd;
    color: #fff;
    margin-right: 10px;
    padding: 7px;
    border-radius: 5px;
    outline: 2px solid #49c8ef;
}

#faqAccordion .accordion-item {
    border: 1px solid #dee2e6 !important;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

:root {
    --primary-color: #e0cfff;
    --bg-color: #dfe6e9;
    --text-color: white;
}

.check_eligibility .card {
    background: white;
    cursor: pointer;
    border-radius: 15px;
    position: relative;
    padding: 25px 30px;
    color: var(--primary-color);
}

    .check_eligibility .card::before {
        content: '';
        background: var(--primary-color);
        border-radius: 15px;
        height: 100%;
        width: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 0;
        clip-path: circle(10% at 0% 0%);
        transition: all .3s ease-in;
    }

    .check_eligibility .card::after {
        content: '';
        background: var(--primary-color);
        border-radius: 15px;
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        clip-path: circle(10% at 0% 0%);
        transition: all .3s ease-in;
    }

.check_eligibility table {
    position: relative;
    z-index: 1;
    transition: all .3s ease-in;
    background: white;
}

.check_eligibility .card:hover::after {
    clip-path: circle(100%);
}

.check_eligibility .card:hover .content {
    color: var(--text-color);
}

.check_eligibility h6 {
    background: #684783;
    color: #fff;
}

.check_eligibility .table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: #f1ecf5;
}


.loader5 {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid #20e6ff;
    border-top: 30px solid #fcb92c;
    -webkit-animation: loader5 1.2s ease-in-out infinite alternate;
    animation: loader5 1.2s ease-in-out infinite alternate;
    border-radius: 40px;
    margin: auto;
}

@keyframes loader5 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(720deg);
    }
}

@-webkit-keyframes loader5 {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(720deg);
    }
}

/*Sucess Message*/



.modal-confirm .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
}

.modal-confirm .modal-header {
    border-bottom: none;
    position: relative;
}


.modal-confirm .form-control, .modal-confirm .btn {
    min-height: 40px;
    border-radius: 3px;
}

.modal-confirm .close {
    position: absolute;
    top: -5px;
    right: -5px;
}

.modal-confirm .modal-footer {
    border: none;
    text-align: center;
    border-radius: 5px;
    font-size: 13px;
}

.modal-confirm .icon-box {
    color: #fff;
    margin: 0 auto;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #82ce34;
    padding: 10px 6px;
    text-align: center;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 10%);
}

    .modal-confirm .icon-box i {
        font-size: 50px;
    }

.modal-confirm.modal-dialog {
    margin-top: 80px;
}

/*    .modal-confirm .btn {
        color: #fff;
        border-radius: 4px;
        background: #82ce34;
        text-decoration: none;
        transition: all 0.4s;
        line-height: normal;
        border: none;
        margin: auto;
    
    }*/

.modal-confirm .btn:hover, .modal-confirm .btn:focus {
    background: #6fb32b;
    outline: none;
}

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}

.table-primary th {
    --bs-table-accent-bg: #633f7e !important;
    color: #ffffff !important;
}
/***/

.dashboard h1 {
    font-size: 40px;
    text-shadow: 0 2px black;
}

.dashboard .btn {
    /* max-width: 160px; */
    margin: auto;
    color: #fff;
    font-size: 18px;
    padding: 4px;
    width: 100%;
    border-radius: 10px;
}

.dashboard .card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
    font-weight: normal;
}

/*    .boardcard {
        border-radius: 0 15px 130px 40px;
    }*/


/*    .dashboard .boardcard-1, .dashboard .boardcard-1-btn {
        background: rgb(11, 108, 155);
        background: linear-gradient(174deg, rgb(30 132 179) 0%, rgb(1 71 104) 100%);
    }

    .dashboard .boardcard-2, .dashboard .boardcard-2-btn {
        background: rgb(255,253,235);
        background: linear-gradient(174deg, rgb(157 126 183) 0%, rgb(74 54 112) 100%);
    }

    .dashboard .boardcard-3, .dashboard .boardcard-3-btn {
        background: rgb(255,253,235);
        background: linear-gradient(174deg, rgb(1 157 142) 0%, rgb(59 131 94) 100%);
    }

    .dashboard .boardcard-4, .dashboard .boardcard-4-btn {
        background: rgb(255,253,235);
        background: linear-gradient(174deg, #c96688 0%, #93254b 100%);
    }

    .dashboard .boardcard-5, .dashboard .boardcard-5-btn {
        background: rgb(255,253,235);
        background: linear-gradient(174deg, #cfa05b 0%, #bf7e1e 100%);
    }*/


.dashboard .boardcard-1-btn {
    background: rgb(11, 108, 155);
    /* background: linear-gradient(174deg, rgb(30 132 179) 0%, rgb(1 71 104) 100%);*/
}

.dashboard .boardcard-2-btn {
    background: rgb(157 126 183);
    /*    background: linear-gradient(174deg, rgb(157 126 183) 0%, rgb(74 54 112) 100%);*/
}

.dashboard .boardcard-3-btn {
    background: rgb(1 157 142);
    /*    background: linear-gradient(174deg, rgb(1 157 142) 0%, rgb(59 131 94) 100%);*/
}

.dashboard .boardcard-4-btn {
    background: #c96688;
    /*    background: linear-gradient(174deg, #c96688 0%, #93254b 100%);*/
}



.dashboard .boardcard-5-btn {
    background: #cfa05b;
    /*   background: linear-gradient(174deg, #cfa05b 0%, #bf7e1e 100%);*/
}

.dashboard i {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    margin: auto !important;
    align-items: center;
}

.dashboard .boardcard-1 i {
    color: #0b6c9b !important;
    border: 1px solid #0b6c9b;
    border-radius: 10px;
    box-shadow: black;
}

.dashboard .boardcard-2 i {
    color: #9c7eb6 !important;
    border: 1px solid #9c7eb6;
    border-radius: 10px;
    box-shadow: black;
}

.dashboard .boardcard-3 i {
    color: #019d8e !important;
    border: 1px solid #019d8e;
    border-radius: 10px;
    box-shadow: black;
}

.dashboard .boardcard-4 i {
    color: #c96688 !important;
    border: 1px solid #c96688;
    border-radius: 10px;
    box-shadow: black;
}

.dashboard .boardcard-5 i {
    color: #cfa05b !important;
    border: 1px solid #cfa05b;
    border-radius: 10px;
    box-shadow: black;
}
/*responsive css*/
@media (max-width:1800px) {
    .counters i {
        font-size: 20px;
    }

    .counters .counter {
        font-size: 30px;
    }

    .counters h3 {
        font-size: 16px;
        margin: 0;
        font-weight: bold;
    }

    .newslatest .nav-tabs li a {
        padding: 10px 15px;
    }
}

@media(max-width:1600px) {
    .counters h3 span {
        font-size: 44px;
    }

    .portalCarousel .carousel-control-next {
        right: 45%;
    }

    .h2, h2 {
        font-size: 1.8rem;
    }

    .heading-underline {
        margin: 5px auto 15px;
    }

    .portalCarousel .card .txt h1 {
        font-size: 15px;
    }

    .portalCarousel .card a {
        bottom: 0;
    }

    .portalCarousel .carousel-control-next, .portalCarousel .carousel-control-prev {
        height: 25px;
        width: 25px;
    }
}

@media(max-width:1580px) {
    .ministerSlider {
        margin-left: 0;
    }

    .counters h3 span {
        font-size: 40px;
    }

    main {
        margin-top: -30px;
    }

    .ministerSlider figure {
        width: 120px;
        height: 120px;
        margin-bottom: 80px;
    }
}

@media(max-width:1399px) {
    .bspMenu .nav-item {
        width: 220px;
    }

    .portalCarousel .card .txt h1 {
        font-size: 18px;
    }

    .portalCarousel .card {
        height: 100%;
    }

    .portalCarousel .carousel-control-prev, .portalCarousel .carousel-control-next {
        background: #9c27b0;
        height: 30px;
        width: 24px;
    }

    span.date {
        font-size: 16px;
    }

    .month {
        font-size: 10px;
        font-weight: bold;
    }

    p {
        font-size: 15px;
    }

    .ministerSlider h2 {
        font-size: 16px;
    }

    .ministerSlider p {
        font-size: 12px;
        line-height: 13px;
    }

    .ministerSlider figure {
        margin-bottom: 70px;
    }

    .ministerSlider {
        margin-top: 10px;
    }
}

@media (max-width:1250px) {
    .bspMenu .nav-item {
        width: 200px;
    }
}

@media (max-width:1179px) {
    .bspMenu .nav-item {
        width: 180px;
    }
}

@media (max-width:1110px) {
    .bspMenu .nav-item {
        width: auto;
    }
}

@media (max-width:1075px) {
    .bspMenu .nav-item {
        width: auto;
    }

    .bspMenu a.nav-link {
        padding: 4px 5px !important;
    }
}

@media (max-width: 991px) {
    .form-panel {
        margin-top: 70px;
    }

    .bspMenu {
        background: #340a56 !important;
    }

    .counters {
        margin-top: 0 !important;
    }

        .counters .container {
            max-width: 100% !important;
        }

        .counters .box {
            background: #340a56db;
        }

    p {
        font-size: 14px;
    }

    .bspMenu .nav-item {
        margin: 5px 2px;
        width: 100%;
        text-align: left;
    }

    .bspMenu a.nav-link {
        font-size: 18px;
    }
}

@media (max-width: 700px) {
    /* .counters .container {grid-template-columns: repeat(2, 1fr);}
        .counters .container > div:nth-of-type(1),
        .counters .container > div:nth-of-type(2) {
                border-bottom: 1px lightskyblue solid;
                padding-bottom: 20px;
            }*/
}

.btn-check:active + .btn, .btn-check:checked + .btn, .btn.active, .btn.show, .btn:active {
    color: var(--bs-btn-active-color);
    background-color: #4c1a75;
    border-color: #4c1a75;
}

fieldset {
    border: 2px solid #5d129a !important;
    padding: 0 0.5em 0.5em 0.5em !important;
    margin: 0 0 1.5em 0;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #cab2fe;
    border-radius: 0 15px 15px 15px;
    background: #fdfcff;
}

legend {
    width: inherit;
    padding: 0 14px;
    border-bottom: none;
    margin-top: -16px;
    background: #5d129a;
    color: #fff;
    border-radius: 15px 0 15px 0;
    font-size: 16px;
    line-height: 32px;
}

input[type="radio"], input[type="radio"] + label {
    margin-right: 10px;
}

div#MainContent_divExcel {
    width: 100%;
    overflow: hidden;
    display: table;
}

.downloadBtnDiv .downloadBtn i {
    font-size: 20px;
}

.downloadBtnDiv .downloadBtn {
    background: #c85206;
    border: 2px solid #fff;
    box-shadow: 1px 1px 3px #000;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s ease-out;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    display: table;
    align-items: center;
    font-weight: bold;
    /* margin-right: -189px; */
    float: right;
    margin-bottom: 15px;
}

/*   .downloadBtnDiv .downloadBtn:hover {
            right: 0;
            width: 254px;
            margin-right: 0;
        }*/


/*news slider*/

/*p.date {
    margin-top: -22px;
    padding: 0;
}
*/



.bgOffice {
    background: #d5edf3;
}

.h3, h3 {
    font-size: 22px;
}


.wrap {
    width: 150px;
    z-index: 1;
    cursor: pointer;
}

.wrap-2 {
    width: 150px;
    z-index: 1;
    margin-right: 160px;
}

.msg {
    color: whitesmoke;
    text-align: center;
    font-family: 'Bree Serif', Courier, monospaced;
    font-size: 1.5em;
    width: 150px;
    position: absolute;
    margin: 45px 0 0 2px;
    pointer-events: none;
    line-height: 1;
}

.sticker {
    width: 150px;
    height: 150px;
    position: absolute;
    background: url('../img/sticker.png') top center no-repeat;
    animation: spin 10s linear infinite;
    /*Set our animation play state to paused initially */
    animation-play-state: paused;
}

.sticker-2 {
    width: 150px;
    height: 150px;
    position: absolute;
    background: url('../img/sticker-2.png') top center no-repeat;
    animation: spin 10s linear infinite;
    /*Set our animation play state to paused initially */
    animation-play-state: paused;
    margin-right: 200px;
}

    .sticker:hover, .sticker-2:hover {
        /* Toggle our animation play state to running when we are hovering over our sticker */
        animation-play-state: running;
    }

@keyframes spin {
    100% {
        transform: rotate(1turn);
    }
}

.counter {
    color: #fff;
    background: linear-gradient(to right bottom, #FFD81B, #f9b12a);
    font-family: 'Dosis', sans-serif;
    text-align: center;
    width: 180px;
    height: 180px;
    padding: 30px 20px 20px;
    margin: 0 auto;
    border-radius: 10px 10px 100px 100px;
    box-shadow: 0 0 15px -5px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

    .counter:after {
        content: '';
        background-color: #f9b12a;
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    }

    .counter .counter-value {
        font-size:24px;
        font-weight: 600;
        margin: 0;
        display: block;
    }

    .counter h3 {
        font-size:16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0 0 20px;
    }

    .counter.green {
        background: linear-gradient(to right bottom, #a9dd23, #52C242);
    }

        .counter.green:after {
            background: #52C242;
        }

    .counter.cgreen {
        background: linear-gradient(to right bottom, #01AD9F, #008888);
    }

        .counter.cgreen:after {
            background: #008888;
        }

    .counter.blue {
        background: linear-gradient(to right bottom, #00C5EF, #0092f4);
    }

        .counter.blue:after {
            background: #0092f4;
        }


.slick-slider .slick-list {
    height: auto !important;
    overflow: hidden;
    padding: 15px 0;
}

@media screen and (max-width:1760px) {
    .counter {
        width: 145px;
        height: 170px;
    }
}

@media screen and (max-width:990px){
        .counter {
            margin-bottom: 40px;
        }
}
/*Image fade effact*/
.fadeGallery, .fadeGallery1, .fadeGallery2, .fadeGallery3 {
    position: relative;
    height: 270px;
 
}
    .fadeGallery .fadeInimage, .fadeGallery1 .fadeInimage, .fadeGallery2 .fadeInimage, .fadeGallery3 .fadeInimage{
        position: absolute;
        z-index: 1;
        transition: all .7s;
    }

        .fadeGallery .fadeInimage.active, .fadeGallery .fadeInimage1.active, .fadeGallery .fadeInimage2.active, .fadeGallery .fadeInimage3.active {
            z-index: 2;
        }
.h2, h2 {
    font-size: 1.5rem;
}
.leftMenuStart{
    background: #f4efff !important;
    margin: 0;
}
.bgBspLogin .RadioButtonListCssClass {
    color: #ebc065;
    font-size: 17px;
    font-style: italic;
    width: 100%;
}

.bgBspLogin .RadioButtonListCssClass input[type=radio] {
        width: 0.85em;
        height: 0.85em;
}

.bgBspLogin .card{
    padding: 0;
    background: none;
    box-shadow: none !important;
    border: none;
    margin-top: -100px;
}

  .form-panel{
    max-width: 100%;
}

.bgBspLogin {
    background: #ffe4eb;
    border-radius: 10px;
    max-width: 1200px;
    margin: auto;
}

  .bgBspLoginContent{
    background-image: url(../assets/img/bg-2.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.importantText li{
    font-size: 16px;
    margin-bottom: 15px;
    list-style: none;
}

 ul.importantText span {
    background: #3e1d58;
    border-radius: 8px;
    color: #fff;
    padding: 4px 10px;
    margin-right: 10px;
}

@media (max-width:1154px){
    .bspMenu .nav-item {
        width: auto;
    }
    .bgBspLogin {
        background: #ffe4eb;
        border-radius: 10px;
        max-width: 1000px;
        margin: auto;
    }
    .form-header h1 {
           font-size: 20px;
    }
    .cardnew .form-group label {
             letter-spacing: inherit;
    }
    ul.importantText {
        padding: 0;
    }
    .bgBspLoginContent {
        padding-right: 0 !important;
    }
    }
@media (max-width:991px){
    .form-panel {
        margin-top: 0;
    }
/*    #sidebar-nav {
             display: none;
    }*/
    .headerMenu{
        display:none ;
        background:red;
    }
    .headerMenuHide {
        background: blue;
    }
    .collapse:not(.show) {
        display: block;
    }

    #sidebar-nav {
        width: 100%;
        min-height: auto !important;
    }
    .flex-nowrap {
        flex-wrap: wrap !important;
        display: block;
    }
}
#sidebar {
    height: 100%;
}
 #sidebar a:hover{
        background: #f5bb38;
        color: #220358 !important;
        font-weight: bold;
  }

.paginationDiv table {
    float: right;
}

    .paginationDiv table span {
        margin: auto;
        border: 2px solid #623f7d;
        width: 25px;
        height: 25px;
        display: grid;
        text-align: center;
        background: #623f7d;
        color: #ffff;
        font-weight: bold;
        margin-right: 5px;
    }

    .paginationDiv table a {
        margin: auto;
        border: 1px solid #623f7d;
        width: 25px;
        height: 25px;
        display: grid;
        text-align: center;
        text-decoration: none;
        margin-right: 2px;
        color: #623f7d;
    }

        .paginationDiv table a:hover {
            background: #623f7d;
            color: #ffff;
        }

.bspHD {
    background: #f3454f;
    display: table;
    margin: auto;
    border-radius: 15px;
    padding: 8px 15px;
    color: #fff;
    /* font-size: 22px; */
}