/*JNTUACEP CSS*/
:root {
    --mainshadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
    --primarycolor: #55198B;
    --borderbottom-color: rgba(33, 37, 41, 0.1);
    --little-shadow: 0 0.1rem 0rem 0.1rem rgba(0, 0, 0, 0.1);
    --section-secondary-color: #f8ebff;
    --faculty-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15);
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    font-family: Nunito, 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    background: #F7F7F7;
    position: relative;
}

hr {
    max-width: 50px;
    border-width: 3px;
    border-color: var(--primarycolor);
}

hr.light {
    border-color: #fff;
}

a {
    color: var(--primarycolor);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

a:hover {
    color: var(--primarycolor);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
	color:#000000;
	font-weight:bold;
}

/*buttons*/
.btn {
    font-weight: normal;
    text-transform: uppercase;
    color: #ffffff !important;
    border: none;
    border-radius: 3px;
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.btn:hover {
    cursor: pointer !important;
}

.btn-primary {
    background-color: #55198B;
    border-color: #55198B;
}


.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: #fff;
    background-color: #34196a !important;
    cursor: pointer !important;
}

.btn-primary:active,
.btn-primary:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(85, 25, 139, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(85, 25, 139, 0.5) !important;
}

.no-radius {
    border-radius: 3px;
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primarycolor) !important;
    border: 1px solid var(--primarycolor);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: #fff !important;
    background-color: var(--primarycolor) !important;
    border-color: var(--primarycolor) !important;
}

.btn-outline-primary:active,
.btn-outline-primary:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(85, 25, 139, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(85, 25, 139, 0.5) !important;
}

/*nav start*/

.hide {
    display: none !important;
    transition: all 0.5s;
}

.show {
    display: block !important;
    transition: all 0.5s;

}

.navbar {
    /*padding: 15px 10px;*/
    color: #ffffff;
    background: var(--primarycolor) !important;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-item a {
    color: #FFFFFF !important;
}

.scrolltopbtn {
    color: var(--primarycolor);
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 2.2rem;
    display: none;
    z-index: 990;
    transition: all 0.5s;
}

.scrolltopbtn > span > i::after {
    /*box-shadow: inset 2.2rem 2.2rem 0 white;*/
    content: "";
    position: absolute;
    width: 80%;
    height: 55%;
    background-color: white;
    border-radius: 50%;
    top: 25%;
    left: 10%;
    z-index: -90;
}


/*side bar*/

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 1032;
    background: var(--primarycolor);
    color: #fff;
    transition: all 0.3s;
    overflow-y: hidden;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
}


#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #55198B;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    background: #7019a9;
    /*color:;*/
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1031;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.overlay.active {
    display: block;
    opacity: 1;
}

.sidebar-line {
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #881cc7;
}

#sidebar .sidebar-header {
    padding: 12px;
    background: var(--primarycolor);
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #881cc7;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1rem;
    display: block;
    color: #FFFFFF !important;
    text-decoration: none !important;
}

#sidebar ul li a:hover {
    color: #ffffff;
    background: #8419bd;
}

#sidebar ul li.active > a,
a[aria-expanded="true"] {
    color: #fff;
    background: #7a19b3;
}

a[data-toggle="collapse"] {
    position: relative;
}

ul ul a {
    font-size: 1.3rem !important;
    padding-left: 30px !important;
    background: #7019a9;
}

ul ul ul a {
    font-size: 1.2rem !important;
    padding-left: 40px !important;
    background: #7919b3;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9rem !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}


a.article,
a.article:hover {
    background: #7019a9 !important;
    color: #fff !important;
}

/*scrollbar lib tweaks*/
.mCSB_inside > .mCSB_container {
    margin: 0 !important;
}

.mCSB_scrollTools {
    width: 6px !important;
}

/*content style*/
#content {
    margin-top: 165px;
}

.onlogohide {
    margin-top: 60px !important;

}


/*nav bar*/
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: .8em;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

.dropdown-menu {
    background-color: var(--primarycolor);
    color: #ffffff;
}

.dropdown-item {
    color: #ffffff !important;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--primarycolor) !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #ffffff !important;
}

.jntua {
    padding-top: 2px;
}

.mainlogo {

    height: auto;
    width:100%;
}

.logo-text > span {
    font-size: 1.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.navbarchange {
    top: 0 !important;
    /*transition: all 0.5s;*/
}

.navbar {
    top: 105px;
}

.pagewide {
    height: 105px;
    background-color: white;
    transition: all 0.5s;
}

@media (max-width: 1188px) {

    /*.mainlogo {*/
    /*width: 350px !important;*/
    /*}*/
    .logo-text > span {
        font-size: 1.65rem !important;
        text-transform: uppercase;
        font-weight: 600;
    }


}

@media (max-width: 1052px) {

    /*.mainlogo {*/
    /*width: 350px !important;*/
    /*}*/
    .logo-text > span {
        font-size: 1.45rem !important;
        text-transform: uppercase;
        font-weight: 600;
    }


}

@media (max-width: 930px) {

    /*.mainlogo {*/
    /*width: 350px !important;*/
    /*}*/
    .logo-text > span {
        font-size: 1.35rem !important;
        text-transform: uppercase;
        font-weight: 600;
    }


}

@media (max-width: 768px) {

    /*.mainlogo {*/
    /*width: 350px !important;*/
    /*}*/
    .logo-text > span {
        font-size: 1.1rem !important;
        text-transform: uppercase;
        font-weight: 600;
    }

    .mainlogo {
        /*width: 350px;*/
        height: 85px;
    }


}

@media (max-width: 420px) {

    /*.mainlogo {*/
    /*width: 350px !important;*/
    /*}*/
    .logo-text > span {
        font-size: 1rem !important;
        text-transform: uppercase;
        font-weight: 600;
        /*text-align: center !important;*/
        /*padding-left: 20px;*/
    }

    .logo-text {
        padding-left: 30px;
    }


}

/*nav end*/


.section-heading {
    margin-top: 0;
}

::-moz-selection {
    color: #fff;
    background: #212529;
    text-shadow: none;
}

::selection {
    color: #fff;
    background: #212529;
    text-shadow: none;
}

img::-moz-selection {
    color: #fff;
    background: transparent;
}

img::selection {
    color: #fff;
    background: transparent;
}

img::-moz-selection {
    color: #fff;
    background: transparent;
}


/*Section styles*/
section {
    padding: 1.5rem;
    background: #339900;
}

.section-title {
    font-size: 1.5rem;
    padding: .5rem;
    font-weight: 600;
    text-transform: none;
    text-align: center;
}

@media (max-width: 768px) {
    section {
        padding: 1.2rem;
    }

    .section-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 560px) {
    section {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.2rem;
    }
}


/*start main carousel*/
#image-slider {
    padding: 0 !important;
    margin: 0 !important;
    background: white;
}


#main-carousel {
    padding: 0 !important;

}

.carousel-inner img {
    width: 100%;
    height: 400px;
}

.carousel-caption {
    background: transparent;
    bottom: 1px !important;
}


@media (max-width: 768px) {
    .carousel-caption h3 {
        font-size: 1rem;
    }

    .carousel-caption p {
        font-size: .9rem;
    }

    .carousel-inner img {
        width: 100%;
        height: 200px !important;
    }
}

/*end main carousel*/


/*start latest news scroller*/
#latest-news-scroller {
    padding-top: .5rem;
    padding-bottom: .5rem;
    background: white;
}

#latest-news-scroller marquee {
    font-weight: 600;
    font-size: 1rem;
}

#latest-news-scroller marquee a {
    color: #0000ff;
    font-weight: bold;
}

@media (max-width: 768px) {
    #latest-news-scroller marquee {
        font-weight: 600;
        font-size: .9rem;
    }

}

/*start latest news tabs*/
/*#latest-tabs {*/
/*background: var(--section-secondary-color);*/
/*padding: 1rem;*/
/*}*/


/*#latest-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {*/
/*background-color: transparent;*/
/*border-bottom: 4px solid var(--primarycolor) !important;*/
/*font-size: 20px;*/
/*font-weight: bold;*/
/*}*/

/*#latest-tabs .nav-tabs .nav-link {*/
/*border: 1px solid transparent;*/
/*border-top-left-radius: .25rem;*/
/*border-top-right-radius: .25rem;*/
/*font-size: 1.2rem;*/
/*color: var(--primarycolor);*/
/*}*/

/*#latest-tabs .tab-pane {*/
/*font-size: 1rem;*/
/*}*/

/*#latest-tabs .latest-news-links {*/
/*padding: 1rem;*/
/*}*/

/*#latest-tabs .latest-news-links a {*/
/*color: #000000 !important;*/
/*font-weight: 500;*/
/*margin: .5rem;*/

/*}*/

/*@media (max-width: 768px) {*/
/*#latest-tabs .nav-tabs .nav-link {*/
/*font-size: 1rem;*/
/*}*/

/*#latest-tabs .tab-pane {*/
/*font-size: .9rem;*/
/*}*/

/*}*/


.news-panel {
    border: 1px solid var(--primarycolor);
    margin-bottom: 1rem;
    height: 400px;
}

.news-panel-heading {
    background: var(--primarycolor);
    color: #ffffff;
    padding: .8rem;
}

.news-panel-body {
    padding: .8rem;
    color: #000000;
    font-size: .9rem;
}

.news-panel-body a {
    color: #000000;
}

@media (max-width: 768px) {
    .news-panel {
        margin-top: 1rem;
        height: 300px;
    }


    .news-panel-body marquee {
        height: 200px;
    }
}

/*latest-tabs end*/

/*about*/
#about {
    background: #ffffff;
    padding: 0rem;
}

#about p {
    font-size: .9rem;
    padding: .5rem;
	color: #000000;
	
}

@media (max-width: 768px) {
    #about p {
        font-size: .9rem;
    }
}


/*about grids*/
#about-grids {
    background: var(--section-secondary-color);
}

#about-grids .about-item img {
    width: 80%;
}

#about-grids .about-item {
    background: #ffffff;
    padding: 1rem;
    margin: 1rem;
    box-shadow: var(--mainshadow);
    border-radius: .5rem;
}

#about-grids .about-item-title {
    font-size: 1.2rem;
    font-weight: 600;
}

#about-grids .about-item-content {
    font-size: .95rem;
    text-align: left !important;
}

@media (max-width: 768px) {
    #about-grids .about-item-title {
        font-size: 1.1rem;
    }

    #about-grids .about-item-content {
        font-size: .9rem;
    }

    #about-grids .about-item img {
        width: 80%;
    }

    #about-grids .about-item {
        margin: 0.5rem;
        padding: 0.5rem;
    }
}

@media (max-width: 560px) {
    #about-grids .about-item img {
        width: 100%;
    }

    #about-grids .about-item {
        margin: 0.5rem;
        padding: 0.5rem;
    }
}

/*associations*/
#associations {
    background: #FFFFFF;
}

button .owl-dot .active {
    color: var(--primarycolor) !important;
}

/*mail subscribe*/
#mail-subscribe {
    background: #f1e0ff;
}

#mail-subscribe .subscribe-btn {
    cursor: pointer;
    background: var(--primarycolor);
    color: #FFFFFF;
}

#mail-subscribe .subscribe-info {
    display: none;
}

/*footer*/
#footer {
    background: #1A191E;
}

#footer .footer-section-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 600;
    text-decoration: underline;
}

#footer .footer-section-links a {
    color: #C5C6C5;
    font-size: .8rem;

}

#footer .footer-section-links a:hover {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
}

/*footer copy rights*/
#footer-copy-rights {
    background: #000000;
    color: #FFFFFF;
    padding: .5rem !important;
    text-align: center;
}

#footer-copy-rights p {
    margin: 0 !important;
    font-size: .8rem;
}


/*about us page*/
/*common for all sections*/
.section-title {
    font-size: 1.5rem;
}

p {
    font-size: 1.3rem;
}

ul {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }

    ul {
        font-size: 0.9rem;
    }
}

/*about-us*/
#about-us-body {
    background: #FFFFFF;
    padding: 1rem !important;
}

/*vision mission*/
#vision-mission {
    background: var(--section-secondary-color);
}


/*quality policy*/
#quality-policy {
    background: #FFFFFF;
}


/*achievements*/
#achievements {
    background: var(--section-secondary-color);
}


/*memorandum*/
#memorandum {
    background: #FFFFFF;
}


/*beyond academics*/
#beyond-academics {
    background: var(--section-secondary-color);
}

/*about us page end*/


/*administrative structure*/

#administrative-structure {
    background: #FFFFFF;
}

#bog-teqip-ii {
    background: #FFFFFF;
}

h6 {
    font-weight: 600;
    font-size: 1.1rem;
}

#academic-council {
    background: #FFFFFF;
}

#board-of-studies {
    background: #FFFFFF;
}

ul {
    font-size: .9rem;
}

ol {
    font-size: .9rem;
}

@media (max-width: 768px) {
    h6 {
        font-size: 1rem;
    }

}

th {
    background: var(--primarycolor);
    color: #FFFFFF;
}

.table {
    font-size: .9rem;
    background: #FFFFFF;
}

.table-container {
    overflow: auto;
}

@media (max-width: 768px) {
    .table {
        font-size: .8rem;
    }

    .table-container {
        overflow: auto;
    }
}

/*accordion tabs*/
#accordion .card-header {
    background: var(--primarycolor);
}

#accordion .card-header a {
    color: #FFFFFF;
    font-weight: 600;
    display: block;
    background: none;
}

#accordion .card-header .card-link .open-close-symbols:after {
    font-family: 'Font Awesome\ 5 Free';
    content: "\f0ab";
}


/*members of cac*/

#members-of-cac {
    background: #FFFFFF;
}


/*facilities*/
#facilities {
    background: #FFFFFF;
}

/*academic facilities*/
#academic-facilities {
    background: var(--section-secondary-color);
}

#freedom-to-staff {
    background: #FFFFFF;
}

#best-practices {
    background: var(--section-secondary-color);
}

#master-plan {
    background: #FFFFFF;
}

/*central library*/

#central-library {
    background: #FFFFFF;
}

#library-working-hours {
    background: var(--section-secondary-color);
}

#diff-sections {
    background: #FFFFFF;
}

#services-of-library {
    background: var(--section-secondary-color);
}

#library-books {
    background: #FFFFFF;
}

/*sports*/
#about-sports {
    background: #FFFFFF;
}

#sports-events {
    background: var(--section-secondary-color);
}

/*hostels*/

#hostels {
    background: #FFFFFF;
}

#hostel-staff {
    background: var(--section-secondary-color);
}

/*dispensary*/

#dispensary {
    background: #FFFFFF;
}

/*guest house*/
#guest-house {
    background: #FFFFFF;
}

/*training & placements*/

#about-placements {
    background: #FFFFFF;
}

#placement-people {
    background: #FFFFFF;
}

#non-teaching-people {
    background: var(--section-secondary-color);
}

#placement-branch-people {
    background: #FFFFFF;
}

.people-card {
    box-shadow: var(--mainshadow);
    padding: 1rem;
    text-align: center;
    background: #FFFFFF;
    margin-top: 1rem;
}

.people-card .people-content {
    text-align: left;
    padding: 1rem;
}

.people-card img {
    width: 200px;
    height: 200px;
}

/*events organised*/
#events-organised {
    background: #FFFFFF;
}

/*companies*/
#companies {
    background: #FFFFFF;
}

.company-image {
    padding: 1rem;
    text-align: center;
}

.company-image img {
    width: 200px;
    height: 100px;
}


/*placements*/

#placements-2017-18 {
    background: #FFFFFF;
}

#placements-2016-17 {
    background: #FFFFFF;
}

#placements-gallery {
    background: #FFFFFF;
}

/*image model*/
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1069; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}


@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

.gallery-image-item {
    margin-top: 1rem;
}

.gallery-image-item img:hover {
    cursor: pointer;
}

/*ALUMNI*/

#alumni {
    background: #FFFFFF;
}

#anti-ragging-act {
    background: #FFFFFF;
}

/*contact us*/
#contact-us {
    background: #FFFFFF;
}

/*feedback*/
#feedback {
    background: #FFFFFF;
}

/*departments 18-02-2019*/
/*eee 18-02-2019*/
#depteee {
    background: #FFFFFF;

}


/*02-05-2019*/
.header-nav-buttons {
    font-size: .7rem !important;
}

@media (max-width: 768px) {

    .nav-head-btns {
        display: none;
    }
}

.default-section {
    background: white;
}

.side-menu-container div {
    margin: .5rem;
}

.side-menu-container a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {

    .side-menu-container {
        display: none;
    }

    .faculty-name p {
        font-weight: bold;
        font-size: 1rem;
    }

}

.head-dept-image a:hover {
    text-decoration: none;
}


.faculty-row {
    box-shadow: var(--faculty-shadow);
    padding: 1rem;
    margin-bottom: .5rem;
}

.faculty-content > div > p {
    margin-bottom: .5rem !important;
}

.faculty-name p {
    font-weight: bold;
    font-size: 1.1rem;
}

.faculty-designation p {
    font-size: .9rem;
}

.faculty-interests p {
    font-size: .9rem;
}

.faculty-phone p {
    font-size: .9rem;
}

.faculty-email p {
    font-size: .9rem;
}

.faculty-profile {
    padding: 1rem;
    vertical-align: middle;
}

.faculty-image img {
    width: 120px;
    height: 140px;
}

.faculty-container {
    margin-top: 1rem;
}

/* new side menu */
.side-menu-container > .card > .list-group > .list-group-item {
    cursor: pointer;
}

.side-menu-container > .card > .list-group > .list-group-item > a {
    color: black;
}

/* .side-menu-container > .card > .list-group > .list-group-item > a:hover{
    color: var(--primarycolor);
} */

.side-menu-container > .card > .list-group > .list-group-item:hover {
    color: var(--primarycolor);
    background-color: rgb(243, 231, 253);
    border-left: 2px solid var(--primarycolor);
}

/* .sidebar-item-0 .side-menu-container .card .list-group .list-group-item:nth-child(0) {
  background-color: #f3e7fd !important;
  
  border-left: 2px solid var(--primarycolor);
} */
.sidebar-item-1 .side-menu-container .card .list-group .list-group-item:nth-child(1) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-2 .side-menu-container .card .list-group .list-group-item:nth-child(2) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-3 .side-menu-container .card .list-group .list-group-item:nth-child(3) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-4 .side-menu-container .card .list-group .list-group-item:nth-child(4) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-5 .side-menu-container .card .list-group .list-group-item:nth-child(5) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-6 .side-menu-container .card .list-group .list-group-item:nth-child(6) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-7 .side-menu-container .card .list-group .list-group-item:nth-child(7) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-8 .side-menu-container .card .list-group .list-group-item:nth-child(8) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-9 .side-menu-container .card .list-group .list-group-item:nth-child(9) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-10 .side-menu-container .card .list-group .list-group-item:nth-child(10) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-11 .side-menu-container .card .list-group .list-group-item:nth-child(11) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-12 .side-menu-container .card .list-group .list-group-item:nth-child(12) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-13 .side-menu-container .card .list-group .list-group-item:nth-child(13) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-14 .side-menu-container .card .list-group .list-group-item:nth-child(14) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}


.sidebar-item-15 .side-menu-container .card .list-group .list-group-item:nth-child(15) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}


.sidebar-item-16 .side-menu-container .card .list-group .list-group-item:nth-child(16) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}


.sidebar-item-17 .side-menu-container .card .list-group .list-group-item:nth-child(17) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}


.sidebar-item-18 .side-menu-container .card .list-group .list-group-item:nth-child(18) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}


.sidebar-item-19 .side-menu-container .card .list-group .list-group-item:nth-child(19) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}

.sidebar-item-20 .side-menu-container .card .list-group .list-group-item:nth-child(20) {
    background-color: #f3e7fd !important;
    color: var(--primarycolor);
    border-left: 2px solid var(--primarycolor);
}


/*23-07-2019*/
.cse-carousel .carousel-inner img {
    width: 100%;
    height: 300px;
}

/*26-07-2019*/

.epic-carousel .carousel-inner img {
    width: 100%;
    height: 400px;
}


#tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {

    background-color: transparent;
    border-color: transparent transparent var(--primarycolor);
    border-bottom: 4px solid !important;
    font-size: 20px;
    font-weight: bold;
}

#tabs .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    font-size: 20px;
}
