  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
  }

  body {
      background: #fff;
      color: #444;
      font-family: "Open Sans", sans-serif;
    }

  ul{
    list-style: none;
  }

  a {
    color: #000;
    transition: 0.5s;
    text-decoration: none;
  }
  
  a:hover,
  a:active,
  a:focus {
    color: #0b6bd3;
    outline: none;
    text-decoration: none;
  }
  
  p {
    padding: 0;
    margin: 0 0 30px 0;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
  }

  .btn:focus,.btn:active {
    outline: none !important;
    box-shadow: none;
  }

  .icon::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
  }

  /* Academic page Books */
  .booksdiv {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    display: flex;
  }

  .booksleft {
    flex: 0.25;
    border-right: 0.3px solid #ccc;
  }

  .booksleft-item {
    border-bottom: 0.3px solid #ccc;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    cursor: pointer;
  }

  .booksleft-item p {
    margin-top: 0 !important;
    font-weight: 600;
    color: #414141;
  }

  .books-selected p {
    color: #FDCA0C !important;
  }

  .books-selected {
    background-color: #415881;
    border-left: 3px solid #FDCA0C;
  }

  .booksright {
    min-height: 60vh;
  }

  .booksright p {
    margin-top: 0 !important;
  }

  .booksright {
    flex: 0.75;
    background-color: #F6F6F6;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .booksright-inner {
    background: url('/images/depts/deptsbig-exam.png');
    background-size: cover;
    background-position: center;
    margin: 1.5rem 1rem;
  }

  .books-right-content {
    background-color: rgba(52, 78, 122, 0.92);
    border: 1px solid #A7A7A7;
  }
  
  .books-header {
    display: flex;
  }

  .books-header-item {
    padding: 1rem;
    color: #FDCA0C;
    font-weight: 600;
  }
  
  .books-header > div {
    flex: 1;
  }

  .books-body .books-body-row:nth-child(odd) {
    background-color: rgba(8, 86, 159, 0.89);
  }

  .books-body-rowContent {
    display: flex;
    padding: 0 1rem;
  }

  .books-body-row {
    border-top: 0.1px solid #dddddda2;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .books-body-rowContent > * {
    flex: 1;
  }

  .books-body-rowContent p {
    color: #FFF;
    font-size: 0.9rem;
  }

  .books-body-rowContent p:nth-child(1) {
    color: #FDCA0C;
    font-weight: 500;
  }

  .groupRow {
    margin-bottom: 0.3rem;
    padding-left: 1.5rem;
  }
  
  .books-rowHeading {
    margin-left: 0.5rem;
    color: #FDCA0C;
    font-weight: 600;
  }



  /* Academic page about faculty */
  .groupDiv {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
  }

  .academic-booksSection {
    width: 90%;
    margin: auto;
  }

  #academic-points {
  }

  .academic-point-div {
    display: flex;
    margin-bottom: 0.4rem;
  }
  
  .academic-point-item {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 1rem;
  }
  
  .academic-point-div .academic-point-item:last-child {
    margin-right: 0 !important;
    
  }

  .academic-point-item i {
    margin-right: 0.5rem;
  }

  .academic-point-item p {
    margin-top: 0;
  }

  .groupDiv-left {
    margin-right: 1rem;
  }

  /* Back to top button */
  
  
  .back-to-top i {
    padding-top: 12px;
    color: #fff;
  }
  
  /* Prelaoder */
  
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #007bff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/

  #header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 20px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
  }
  
  #header.header-scrolled,
  #header.header-pages {
    height: 60px;
    padding: 10px 0;
  }
  
  #header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    margin-top: 3px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* background: #0015b6; */
  }
  
  #header .logo h1 a{
    cursor: default !important;
  }

  #header .logo h1 a,
  #header .logo h1 a:hover {
    color: #00366f;
    text-decoration: none;
  }
  
  #header .logo{
    height: 140px;
    position: relative;
    bottom: 14px;
  }

  #logo-img{
    cursor: default;
  }

  #header .logo img {
    padding: 0;
    max-height: 100%;
  }

  .logo-border{
    border: 5px solid #0153aa;
  }

  .logo-border-red{
    border: 5px solid #E7032B;
  }

  .logo-border-black{
    border: 5px solid #999;
  }
  
  .main-pages {
    margin-top: 60px;
  }

  #logo-text {
    position: relative;
    top: 18px;
    display: none;
  }
  

  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  
  /* Desktop Navigation */
  
  .main-nav {
    /* Drop Down */
    /* Deep Drop Down */
  }
  
  .main-nav,
  .main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .main-nav > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
  }
  
  .main-nav a {
    display: block;
    position: relative;
    color: #004289;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
  }
  
  .main-nav a:hover,
  .main-nav .active > a,
  .main-nav li:hover > a {
    color: #007bff;
    text-decoration: none;
  }
  
  .main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
  }
  
  .main-nav .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .main-nav .drop-down li {
    min-width: 180px;
    position: relative;
  }
  
  .main-nav .drop-down ul a {
    padding: 10px 20px;
    font-size: 13px;
    color: #004289;
  }
  
  .main-nav .drop-down ul a:hover,
  .main-nav .drop-down ul .active > a,
  .main-nav .drop-down ul li:hover > a {
    color: #007bff;
  }
  
  .main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
  }
  
  .main-nav .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
  }
  
  .main-nav .drop-down .drop-down > a {
    padding-right: 35px;
  }
  
  .main-nav .drop-down .drop-down > a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
  }
  
  /* Mobile Navigation */
  
  .mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(19, 39, 57, 0.8);
    transition: 0.4s;
  }
  
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
  }
  
  .mobile-nav a:hover,
  .mobile-nav .active > a,
  .mobile-nav li:hover > a {
    color: #74b5fc;
    text-decoration: none;
  }
  
  .mobile-nav .drop-down > a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
  }
  
  .mobile-nav .active.drop-down > a:after {
    content: "\f077";
  }
  
  .mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
  .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
  }
  
  .mobile-nav .drop-down li {
    padding-left: 20px;
  }
  
  .mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }
  
  .mobile-nav-toggle i {
    margin: 18px 18px 0 0;
    color: #004289;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(19, 39, 57, 0.8);
    overflow: hidden;
    display: none;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    left: 0;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }
  /*--------------------------------------------------------------*/
 
  /*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    width: 100%;
    position: relative;
    background: url("../img/intro-bg.png") center bottom no-repeat;
    background-size: cover;
    padding: 200px 0 120px 0;
  }
  
  #intro .intro-img {
    width: 35%;
    float: right;
  }
  
  #intro .intro-info {
    width: 60%;
    float: left;
  }
  
  #intro .intro-info h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
  }
  
  #intro .intro-info h2 span {
    color: #74b5fc;
    text-decoration: underline;
  }
  
  #intro .intro-info .btn-get-started,
  #intro .intro-info .btn-services {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 0 20px 20px 0;
    color: #fff;
  }
  
  #intro .intro-info .btn-get-started {
    background: #007bff;
    border: 2px solid #007bff;
    color: #fff;
  }
  
  #intro .intro-info .btn-get-started:hover {
    background: none;
    border-color: #fff;
    color: #fff;
  }
  
  #intro .intro-info .btn-services {
    border: 2px solid #fff;
  }
  
  #intro .intro-info .btn-services:hover {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
  }

  /* end$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */

  /* Section About */
  .section-header h3 {
    font-size: 36px;
    color: #283d50;
    text-align: center;
    font-weight: 500;
    position: relative;
  }
  
  .section-header p {
    text-align: center;
    margin: auto;
    font-size: 18px;
    padding-bottom: 60px;
    color: #556877;
    width: 70%;
  }

  #about {
      padding-top: 30px;
      padding-bottom: 20px;
  }
.test {
    height: 200vh;
}

/* Section Administration */
#administration {
    background: #ecf5ff;
  }

  #admin-message-box {
      background-color: #fff;
  }

  /* Section gallery */
  #gallery-container {
      width: 85%;
      margin: auto;
      padding: 35px;
  }

  #gal-text {
    padding-bottom: 5px;
  }

  #gal-img-1 {
      padding-left: 22px;
      padding-right: 22px;
      height: 55vh;
      width: 100%;
  }

  #gal-img-2 {
      height: 30vh;
      width: 100%;
  }

  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 90%;
    margin: auto;
    opacity: 0;
    transition: .5s ease;
    background-color: #000;
  }

  .gal-container:hover .overlay {
    opacity: 0.9;
  }
  
  .eye-icon {
    font-size: 50px;
    color: #fff;
  }

  /* Gallery aorousel */
  .owl-carousel {
    position: relative;
    margin-top: -70px;
  }
  .owl-nav {
    position: absolute;
    top: -60px;
    left: 10px;
  }
  .uk-card-primary {
    border-radius: 8px;
  }
  h3 {
    margin-top: 10px
  }
  .uk-card > :last-child {
    margin-top:0;
    margin-bottom: 10px
  }
  p {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .owl-next {
    background: #3286f0;
  }
  .owl-theme .owl-nav [class*='owl-'] {
    background: #383838;
    display: none;
  }
  .owl-dots {
    margin-top: 30px;
  }
  .uk-card-title {
    padding-bottom: 20px
  }

  /* Section Services */ 
  #quick-links {
    background: #ecf5ff;
    margin-top: -70px;
  }
  
  .wrapper{
    width:80%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 25px;
    text-align:center;
  }
  h2{
    font-family:sans-serif;
    color:#fff;
  }
  .carousel{
    width:90%;
    margin:20px auto;
  }
  .slick-slide{
    margin:10px;
  }
  .slick-slide img{
    width:100%;
  }
  .slick-prev, .slick-next{
    background: #000;
    border-radius: 15px;
    border-color: transparent;
  }
  .card{
    border: 2px solid #fff;
    box-shadow: 1px 1px 15px #ccc;
  }
  .card-body{
    background: #fff;
    width: 100%;
    vertical-align: top;
  }
  .card-content{
    text-align: left;
    color: #333;
    padding: 0px;
  }
  .card-text{
    font-size: 14px;
    font-weight: 300;
  }

  /* Contact Section %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
  #contact {
    background-image: url("../img/contact-bg.jpg");
    background-attachment: fixed;

  }
  #contact-layer{
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 0;
  }
  .opaque{
    opacity: 1;
  }
  #map{
    width: 100%;
    height: 100%;
  }

  #home-contact-box{
    background: #9e2cfc;
  }

  #contact-submit{
    background: #FF2668;
    border: none;
  }

  .input-field:focus{
    outline: none;
    background: #eee;
  }

  #change-password .input-field:focus{
    background: #fff;
  }

  /* Upper Footer */
  #upper-footer {
    background: rgb(46, 46, 46);
    color: #fff;
    margin-top: 3rem;
  }
  #uf-container{
    width: 80%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 40px;
    line-height: 1.8;
  }

  #uf-container *{
    margin: 0;
  }

  /* Lower Footer */
  #lower-footer {
    background: rgb(27, 27, 27);
    color: #ddd;
    
  }

  #lf-container{
    padding: 20px 0;
  }

  .home-social-icon{
    height: 40px;

  }

  /* About landing %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
  #about-landing {
    background-image: url("../img/pattern-4.png");
    height: 30vh;
    background-size: cover;
    background-color: #FF153F;
    background-repeat: no-repeat;
    padding: 40px 0px 110px 0px;
    background-position: center bottom;
  }

  /* Policies landing %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */


  #policies-container{
    overflow: hidden;
    min-height: 100vh;
  }

  #policies-container *{
    padding: 0;
    margin: 0;
  }

  #policies-left {
    background-color: #FF153F;
    padding-top: 100px;
    width: 20%;
  }

  #policies-left-content{
    position: fixed;
  }

  .policy-item {
    color: #fff;
    border-bottom: 1px solid rgb(247, 145, 145);
    font-size: 13px;
  }

  .policy-item:hover {
    font-size: 16px;
  }

  #policies-right {
    background-color: #fff;
    padding-top: 100px;
    width: 100%;
    padding-left: 5%;
    padding-right: 10%;
  }

  #policies-list,
  #documents-list {
    background: #ddd;
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 40px 30px;
  }


  .policy-bullet{
    color: #E7032B;
    font-size: 20px;
  }

  #policies-list li{
    padding-top: 15px;
  }

  #documents-list li{
    padding-top: 15px;
    padding-left: 10%;
    padding-right: 10%;
  }

  .table-border {
    border: 1px solid #ccc;
  }

  .active-policy {
    font-size: 16px;
  }

  #leave-policy,
  #admission-policy,
  #exam-policy,
  #facilities,
  #other-info,
  #mandatory,
  #teachers,
  #certificates{
    display: none;
  }

  .test{
    color: aqua !important;
  }
  
  /* Academics Landing */
  #academics-landing-container{
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
  }

  #academics-landing-left{
    padding-top: 100px;
  }

  #academics-landing-right{
    padding-top: 100px;
  }

  #academics-landing-right h1{
    font-family: 'Times New Roman', Times, serif;
    font-size: 70px;
    color: #00366f;
  }

  #academics-landing-right h3{
    color: #072a50;
  }

  .btn-outline{
    border: 2px solid #00366f;
    border-radius: 5%;
    padding: 10px 18px;
    color: #00366f;
    font-size: 20px;
  }

  .btn-fill{
    background: #1265bd;
    border-radius: 5%;
    padding: 12px 20px;
    color: #fff;
    font-size: 20px;
  }

  #academic-landing-img {
    height: 55vh;
  }

  /* Section Features */

  #academic-features {
    background: #c8dcff;
    padding-left: 5%;
    padding-right: 5%;
  }

  /* Text animation */
  .blink-anim {
    border-right: 0.15em solid orange;
    animation: blink 0.75s step-end infinite;
    width: max-content;
  }

  @keyframes blink {
    from,
    to {
      border-color: transparent;
    }
    50% {
      border-color: #777;
    }
  }

  #academic-features i{
    color: green;
  }

  #academic-features p{
    font-size: 17px;
  }

  .credits, .credits a {
    font-size: 12px;
    color: #aaa;
  }

  #section-grades, #section-others {
    background: #c8dcff;
  }

  /* Co-carricular Page */
  #cocarricular-landing{
    background-image: url("../img/sports.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50vh;
  }

  #cocarricular-container{
    padding-top: 150px;
  }

  #cocarricular-container h1 {
    font-size: 65px;
    color: #fff;
  }

  .font-bigger{
    font-size: 17px;
  }

  #co-items{
    background: rgb(212, 255, 206);
  }

  #craft-img{
    height: 40vh;
    width: 50vh;
  }

  /* School Video */
  #sc-video{
    width: 100%;
    height: 100%;
  }

  /* Infrastructure Page */
  #infrastructure-landing,
  #gallery-landing {
    background-image: url("../img/pattern-4.png");
    height: 35vh;
    background-size: cover;
    background-color: #FF153F;
    background-color: #0077b6;
    background-repeat: no-repeat;
    padding: 120px 0px 110px 0px;
    background-position: center bottom;
  }

  #contact-landing {
    background-image: url("../img/pattern-4.png");
    height: 35vh;
    background-size: cover;
    background-color: #0077b6;
    background-repeat: no-repeat;
    padding: 100px 0px 110px 0px;
    background-position: center bottom;
  }

  .facility-img{
    height: 300px;
  }

  #transport{
    background: rgb(245, 236, 236);
    padding: 30px 20px;
  }

  .lab-facility{
    background: rgb(245, 236, 236);
    padding: 30px 20px;
  }

  /* Page Gallery %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
  #gallery-container .mt-neg {
    margin-top: -20px;
  }

  /* Gallery Corousel */
  #gallery-swiper1 {
    width: 80%;
    margin: auto;
  }
  .gal-page-img{
    height: 300px;
  }
  #gal-video{
    width: 100%;
  }
  .video-neg-margin{
    margin-top: -40px;
  }

  /* Contact Page */
  #home-contact-box2{
    /* border: 1px solid #ddd; */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  .bg-eve{
    background: rgb(241, 240, 240);
  }
  .map-big {
    height: 400px !important;
  }

  /* Info Page */
  table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
  }

  /* Login Page */
  #login-section{
    margin:0;
    padding:0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #2980b9, #8e44ad);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .center {
    width:400px;
    background:white;
    border-radius: 10px;
}

.center h2 {
    text-align: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid silver;
    color: #072a50;
}

.center #form1 {
    padding: 0 40px;
    box-sizing: border-box;
}

#form1 .txt_field {
    position:relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
}

#form1 .txt_field input{
    width:100%;
    padding: 0 5px;
    height:40px;
    font-size: 16px;
    border:none;
    background:none;
    outline:none;
}

.txt_field label{
    position:absolute;
    top:50%;
    left:5px;
    color: #adadad;
    transform: translateY(-50%);
    font-size:16px;
    pointer-events: none;
    transition: .5s;
}

.txt_field span::before{
    content:'';
    position:absolute;
    top: 40px;
    left:0;
    width:0%;
    height:2px;
    background: #2691d9;
    transition: .5s;
}

.txt_field input:focus ~ label,
.txt_field input:valid ~ label {
    top:-5px;
    color: #2691d9;
}

.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span::before{
    width:100%;
}

.pass{
    margin: -5px 0 20px 5px;
    color: #a6a6a6;
    cursor:pointer;
}

.pass:hover{
    text-decoration: underline;
}

#form1 #btn {
    width:100%;
    height:50px;
    background:#2691d9;
    border:1px solid;
    border-radius: 25px;
    font-size:18px;
    color: #e9f4fb;
    font-weight:700;
    cursor:pointer;
    outline:none;
}

#form1 #btn:hover {
    border-color:#2691d9;
    transition: .5s;
}

.signup_link{
    margin: 30px 0;
    text-align:center;
    font-size: 16px;
    color: #666666;
}

.signup_link a{
    text-decoration: none; 
    color:#2691d9;
}

.signup_link a:hover {
    text-decoration: underline;
}

/* Admin Page */
#admin-page-container {
  padding-top: 110px;
  min-height: 100vh;
  background: linear-gradient(120deg, #86cefd, #dc89ff);
}

#admin-page-container p {
  padding: 0;
  margin: 0;
}

#admin-left-panel{
  /* border: 1px solid rgb(155, 190, 253); */
}

.admin-left-item {
  background: #eee;
  width: 100%;
}

.admin-left-item{
  border-bottom: 1px solid #fff;
}

#admin-right{
  background: rgb(224, 242, 245);
  min-height: 80vh;
}

textarea:focus {
  outline: none;
}

#post-confirmation{
  background: rgb(151, 255, 151);
}

.text-small{
  font-size: 15px;
}

.notification-item {
  background: #eee;
  font-size: 14px;
  padding: 10px 10px;
  border-bottom: 1px solid #fff;
}

#update-tab:hover,
#password-tab:hover{
  background: rgb(224, 242, 245);
}

.admin-tab-active{
  background: rgb(224, 242, 245);
}

.display-none{
  display: none;
}

.inactive-tab{
  background: #ccc;
  color: #000;
}

/* Notofications */
#ntf-btn{
  position: fixed;
  right: 0;
  top: 40%;
}

#ntf-btn{
  cursor: pointer;
}

#notification-panel{
  position: fixed;
  right: 5px;
  top: 40%;
  z-index: 99999999999;

}

#notification-panel{
  padding: 10px 10px;
  background: #3a7dfa;
  border-radius: 8px;
  min-width: 25vw;
  max-width: 30vw;
  display: none;
}

#notifications p{
  margin: 0;
  padding: 0;
}

#messages-home{
  overflow-y: scroll;
  height: 45vh;
  padding-right: 8px;
}

.messages-home-item{
  background: #eee;
  padding: 10px 10px;
  color: #000;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 7px;
}

.notification {
  display: inline-block;
  position: relative;
  padding: 0.6em;
  background: #3498db;
  border-radius: 0.2em;
  font-size: 1.3em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.notification::before, 
.notification::after {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.notification::before {
    display: block;
    content: "\f0f3";
    font-family: "FontAwesome";
    transform-origin: top center;
}

.text-white{
  color: #fff;
}

.notification::after {
  font-family: Arial;
  font-size: 0.7em;
  font-weight: 700;
  position: absolute;
  top: -15px;
  right: -15px;
  padding: 5px 8px;
  line-height: 100%;
  border: 2px #fff solid;
  border-radius: 60px;
  background: #3498db;
  opacity: 0;
  content: attr(data-count);
  opacity: 0;
  transform: scale(0.5);
  transition: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.notification.notify::before {
  animation: ring 1.5s ease;
}

.notification.show-count::after {
  transform: scale(1);
  opacity: 1;
}

@keyframes ring {
  0% {
      transform: rotate(35deg);
  }
  12.5% {
      transform: rotate(-30deg);
  }
  25% {
      transform: rotate(25deg);
  }
  37.5% {
      transform: rotate(-20deg);
  }
  50% {
      transform: rotate(15deg);
  }
  62.5% {
      transform: rotate(-10deg);
  }
  75% {
      transform: rotate(5deg);
  }
  100% {
      transform: rotate(0deg);
  }
}

/* Gallery Remaining */
.faculty-img-div{
  width: 85%;
  margin: auto;
  padding: 0;
}

#faculty-img{
  width: 100%;
  height: 500px;
}

.stud-img {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stud-img img, .cel-img {
  /* height: 300px !important; */
  height: 15rem;
}

/* Cocarricular remaining */
#yoga{
  background: #d6e7ff;
}

/* Utility Classes $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
    .text-para-bigger {
        font-size: 17px;
    }
    .box-vertical {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .margin-minus{
      margin-top:  0;
    }
    .text-black {
      color: #000;
    }

    .quick-links-img{
      height: 180px;
    }

    .link-text{
      font-size: 18px;
    }

    .div-link{
      cursor: pointer;
    }

  @media (max-width: 1366px) {
    .academic-booksSection {
      width: 95%;
    }
  }

  /* Media Queries %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */ 
  @media (max-width: 991px) {
    #header {
      height: 60px;
      padding: 10px 0;
    }

    .books-rowHeading, .books-body-rowContent p {
      font-size: 0.9rem;
    }

    .academic-booksSection {
      width: 98%;
    }
  
    #header .logo h1 {
      font-size: 28px;
      padding: 8px 0;
    }

    #intro {
        padding: 140px 0 60px 0;
      }
    
      #intro .intro-img {
        width: 80%;
        float: none;
        margin: 0 auto 25px auto;
      }
    
      #intro .intro-info {
        width: 80%;
        float: none;
        margin: auto;
        text-align: center;
      }
    }

  @media (max-width: 768px) {
    .books-rowHeading, .books-body-rowContent p {
      font-size: 0.85rem;
      margin-right: 0.5rem;
    }
    .books-right-content {
      overflow-x: scroll;
      min-width: 120vw;
    }
    .booksdiv {
      flex-direction: column;
    }
    .groupDiv {
      flex-direction: column;
    }
    .groupDiv-left img {
      width: 95%;
      margin: auto;
    }
    #intro {
      padding: 100px 0 20px 0;
    }
    #logo-img{
      display: none;
    }
    #logo-text {
      position: relative;
      top: 11px;
      display: none;
    }
    #quick-links{
      display: none;
    }
    .map-div{
      height: 50vh;
      margin-bottom: 20px;
    }
    #upper-footer{
    display: none;
    }
    #lf-container{
      font-size: 12px;
    }
    #policies-left {
      padding-top: 70px;
      width: 100%;
      text-align: center;
    }
    #policies-left-content{
      position: static;
    }
    #policies-right {
      padding-top: 50px;
      text-align: center;
    }
    #policies-list li{
      text-align:left;
    }
    #cocarricular-landing{
      background-image: url("../img/sports2.jpg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      height: 80vh;
    }
    #cocarricular-landing{
      height: 150vh;
    }
    #cocarricular-container h1 {
      font-size: 55px;
    }
    .video-neg-margin{
      margin-top: -20px;
    }
    #contact-landing {
      height: 50vh;
      padding: 100px 0px 50px 0px;
    }
    #logo-img{
      display: none !important;
    }
    #logo-text{
      display: block !important;
    }
    #general-info *, #facilities *{
      text-align: left;
    }
    .center {
      width:90%;
    }
    #notification-panel{
      min-width: 90%;
      max-width: 95%;
      margin: auto;
    }
  }


/* New Changesssssssssssss */
.disclosurediv {
  border: 1px solid #444;
}

#certificates-container {
  margin: auto;
}

.cert-item {
  background-color: #eee;
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  cursor: pointer;
}

.cert-item:hover {
  background-color: #fff !important;
}

.cert-item > p {
  margin: 0;
}

.cert-iamge {
  display: flex;
  justify-content: center;
  align-items: center;
}

#cert0 {
  background-color: #fff;
}

