* {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: black
}

ul {
    list-style-type: none;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: black;
}

a:focus,
a:hover {
    text-decoration: none;
    color: black
}
button:focus{
    outline:none;
}

/* Top Header css Starts */

.top-header {
    padding-top: 10px;
    border-top: 5px solid #AE9142;
}

.top-header .logo {
    height: 100px;
    width: 100px;
}

.top-header .social {
    padding: 40px 20px;
}

.top-header .social ul li a i {
    font-size: 25px;
}
.text {
    margin-top: 20px;
    width: 100%;
}
.text span h2{
    font-size: 20px;
}
.top-header .col-md-10{
    margin-left: -40px;
}

/* Top Header css Ends */


/* Navbar css Starts */

.bg-dark {
    background-color: #0C2340 !important;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
    font-weight: bold;
    
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .5);
    border: none;
}

.navbar-dark .navbar-toggler:hover {
    outline: none;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}


/* Navbar css Ends */

.note-section{
    padding:10px;
    border:1px solid #ccc;
    margin:auto;
}
.note-title{
    border-bottom: 1px solid #ccc;
}
.note-title h2{
    font-size: 16px;
}
.note-section ul{
    margin-top: 10px;
    list-style: circle;
    margin-left:30px;
}
.note-section ul li{
    margin-bottom: 10px;
    font-size: 14px;
}
.alumini-section{
    padding:10px;
    border:1px solid #ccc;
    margin:auto;
}
.alumini-content h2{
    font-size: 14px;
    margin-top: 10px;
}
.al-img img{
    height:100px;
    width:100px;
}
.alumini-content{
    margin-bottom:40px;
}
/* Slider css Starts */

.swiper {
    width: 100% !important;
    /* height: 100% !important; */
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper {
    margin-left: auto;
    margin-right: auto;
  }

/* slider css Ends */


/* Newsletter css Starts */

.newsletter {
    display: flex;
    width: 100%;
    background-color: lightgray;
    padding: 6px 0 6px 0;
}

.newsletter span {
    color: maroon;
}


/* Newsletter css Ends */


/* About css Starts */

.about-area {
    padding: 20px 0;
}

.about-area .divider {
    background: #AE9142;
    height: 4px;
    width: 80px;
    margin: 0px auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.read-more {
    padding: 5px 10px 5px 10px;
    background: none;
    border: 1px solid #AE9142;
    cursor: pointer;
}

.read-more:hover {
    background: #AE9142;
}

.read-more a:hover {
    color: #fff;
}

.read-more:focus {
    outline: none;
}


/* About css Ends */


/* News css Starts */

.accordion {
    background-color: #eee;
    color: maroon;
    cursor: pointer;
    padding: 10px 15px;
    width: 100%;
    border: none;
    margin-bottom: 18px;
    text-align: left;
    outline: none;
    font-size: 20px;
    transition: 0.4s;
}

.accordion .active,
.accordion:hover {
    background-color: #ccc;
}

.accordion:focus {
    outline: none;
}

.accordion:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 15px;
}

.accordion .active:after {
    content: '\f078';
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.events {
    display: flex;
    justify-content: space-between;
}


/* News css Ends */


/* Footer css Starts */

.footer-section {
    background: #0C2340;
    padding: 30px 0 0 0;
}

.footer-contact h2 {
    font-size: 22px;
    color: #fff;
}

.footer-contact p {
    font-size: 14px;
    color: #fff;
}

.footer-contact ul li {
    display: inline-block;
    margin-right: 10px;
    text-align: center;
}

.footer-contact ul li:first-child {
    text-align: center;
}

.footer-contact ul li a i {
    color: #fff;
    font-size: 16px;
    padding: 10px;
}

.footer-contact ul li {
    height: 40px;
    width: 40px;
    border-radius: 50px;
    border: 1px solid #fff;
}

.footer-contact ul li:hover {
    background-color: #fff;
    transition: 0.4s;
}

.footer-contact ul li a i:hover {
    color: #0C2340;
}

.links h2,
.student h2 {
    font-size: 18px;
    color: #fff;
}

.links ul,
.student ul {
    color: #fff;
}

.links ul li a,
.student ul li a {
    font-size: 16px;
    color: #fff;
}

.links ul li a i,
.student ul li a i {
    font-size: 10px;
    top: 2px;
    margin-right: 10px;
}

.student {
    margin-left: -30px;
}

.footer-about h5 {
    font-size: 16px;
    color: #fff;
    margin-top: 6px;
}

.footer-about {
    display: flex;
    width: 100%;
}

.hits {
    margin-left: 10px;
}

.hit {
    display: inline-block;
    padding: 6px 6px 4px;
    border-radius: 3px;
    background: #CADCF2;
    color: black;
    margin-right: 2px;
}

.date {
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
}

.copyright {
    margin-top: 10px;
    border-top: 1px solid #fff;
}

.copyright h4 {
    font-size: 16px;
    margin-top: 10px;
    color: #fff;
}

.copyright h4 a {
    color: #fff;
}

.copyright h4 a:hover {
    color: #AE9142;
}


/* Footer css Ends */


/* Breadcrumbs css Starts */

.page-title-area {
    background-image: url(../images/about.jpg);
    background-attachment: fixed;
    background-position: 50% 127%;
    padding: 40px 0 30px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.page-title-area .overlay {
    background: #000;
    position: absolute;
    top: 0;
    padding: 80px 0 68px;
    width: 100%;
    opacity: 0.5;
}

.page-title h2 {
    color: #fff;
    font-size: 26px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb li a {
    color: #fff;
}

.breadcrumb li:last-child {
    margin-left: 5px;
}


/* Breadcrumbs css Ends */


/* About Page css Starts */

.about-content {
    padding: 20px 0;
}

.about-content h2 {
    font-size: 24px;
}

.about-content .divider {
    background: #AE9142;
    height: 4px;
    width: 80px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.right-about {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 0;
    position: relative;
    float: right;
}

.right-about a i {
    position: absolute;
    font-size: 60px;
    color: #fff;
    left: 45%;
    top: 37%;
}

.right-about a:before {
    -webkit-transition: .3s all;
    transition: .3s all;
    background: rgba(0, 0, 0, .2);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}


/* About Page css Ends */


/* Course Page css Starts */

.info-area {
    padding: 30px 0;
}

.info-area .divider {
    background: #AE9142;
    height: 4px;
    width: 50px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.info-area h2 {
    font-size: 24px;
    letter-spacing: 4px;
}

.info-area h2 span {
    font-size: 18px;
    letter-spacing: 2px;
    color: gray;
}

.info-content {
    margin-bottom: 30px;
}

.nav-tabs .nav-link.active {
    background-color: #0C2340;
    color: #fff;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    border: 1px solid #ccc;
    margin-right: 20px;
}

.nav-tabs .nav-link:hover {
    border: 1px solid #ccc;
}

.tab-content {
    padding: 30px 0;
}

.tab-content h2 {
    font-size: 22px;
    letter-spacing: 2px;
}

.tab-content .objectives {
    margin-left: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.tab-content .objectives li {
    list-style: disc;
    margin-bottom: 4px;
}

.admission-content h1 {
    font-size: 22px;
    letter-spacing: 0;
}

.admission-content h2 {
    font-size: 20px;
    letter-spacing: 0;
}

.admission-content p {
    font-size: 16px;
}

.admission-content h4 {
    font-size: 18px;
    letter-spacing: 0;
}

.admission-content ul {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 50px;
}

.admission-content table {
    margin-bottom: 40px;
}

.accordion>.card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.btn-link {
    width: 100%;
    text-align: left;
    border-bottom: none;
    border: none;
}

.btn-link:focus,
.btn-link:hover {
    text-decoration: none;
}

.teach {
    margin-left: 40px;
}


/* Course Page css Ends */


/* Department Page css Starts */

.depart-area {
    padding: 40px 0;
}

.depart-area h2 {
    font-size: 24px;
}

.depart-area .divider {
    background: #AE9142;
    height: 4px;
    width: 50px;
    border-radius: 10px;
    margin-bottom: 20px;
}


/* Department Page css Ends */


/* Secretary Page css Starts */

.content-section h2 {
    font-size: 24px;
    letter-spacing: 2px;
}

.content-section .divider {
    background: #AE9142;
    height: 4px;
    width: 50px;
    margin: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}
.img-thumbnail{
    height:300px;
    width:100%;
}
.img-thumb img {
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.content-section ul {
    margin-left: 40px;
    margin-bottom: 20px;
}

.content-section ul li {
    list-style: circle;
    margin-bottom: 6px;
    font-weight: bold;
}
.aboutcontent
{
    margin-top:30px;
    text-align:justify;
    
}
.aboutcontent p
{
    text-indent:60px;
}
.content {
    margin-top: 20px;
}

.content h5 {
    font-size: 16px;
}


/* Secretary Page css Ends */


/* Staff Area css Starts */

.staff-area h2 {
    font-size: 24px;
    letter-spacing: 2px;
}

.staff-area .divider {
    background: #AE9142;
    height: 4px;
    width: 50px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.staff-content {
    padding: 20px;
    border: 1px solid #e6e5e5;
    -webkit-transition: .3s all;
    transition: .3s all;
    position: relative;
    top: 0;
    margin-bottom: 20px;
}

.staff-image {
    margin-bottom: 20px;
}

.staff-image img {
    border-radius: 50%;
    width: 90px;
    margin: 0 auto;
}

.staff-content .staff-info h3 {
    font-size: 20px;
    margin: 0;
}

.staff-content .staff-info p {
    margin-bottom: 10px;
}

.staff-content:hover {
    margin-top: -10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 10%);
    border: none;
}


/* Staff Area Ends */


/* Guest Lecture Page css Starts */

.guest .divider {
    background: #AE9142;
    height: 4px;
    width: 50px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.guest h2 {
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: bold;
}

h5.card-title {
    font-size: 16px;
}

.card-body h2 {
    font-size: 16px;
}


/* Guest Lecture Page css Ends */


/* Placement Page css Starts */

.place-area {
    padding: 20px 0;
}

.place-area .divider {
    background: #AE9142;
    height: 4px;
    width: 50px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.place-area h2 {
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: bold;
}

.place-area .objectives {
    margin-left: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.place-area .objectives li {
    list-style: disc;
    margin-bottom: 4px;
}


/* Placement Page css Ends */


/* Recruiter Page css Starts */

.thumb {
    border: 1px solid #ccc;
}

.thumb img {
    height: 100%;
    width: 100%;
}


/* Recruiter Page css Ends */

@media only screen and (min-width: 320px) and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px){
.top-header .col-md-10{
    margin-left: 0 !important;
    padding-left: 6px !important;
    text-align: center;
}
.top-header .col-md-2{
    text-align: center;
}
.student{
    margin-left:0;
    margin-top:10px;
}
.links{
    margin-top:10px;
}
}

.modal
{
    opacity:1 !important;
}


.bg-light {
    background-color: #fff !important;
}

.navbar {
    padding: .5rem 1rem !important;
}

.navbar-brand img {
    position: relative;
    width: 160px;
    height: 43px;
}

.navbar-nav .nav-link {
    margin-left: 0px !important;
    margin-right: 0px ! important;
    padding: .5rem 1rem;
    
}

.navbar-nav li .nav-link:last-child {
    margin-left: 10px;
    margin-right: 10px;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #f0f3f1;
}

.navbar-light .navbar-nav .nav-link {
    color: #f0f3f1;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #f0f3f1;
}

.navbar-nav>li>.dropdown-menu::before {
    border: 1px solid #f0f3f1;
    content: "";
    position: absolute;
    top: -20px;
    left: 40px;
    border-color: rgba(73, 210, 146, 0);
    border-bottom-color: black;
    border-width: 10px;
    margin-left: -10px;
}

.dropdown-toggle:hover::after {
    -webkit-transform: rotate( 180deg);
    transform: rotate( 180deg);
}

.dropdown-menu {
    padding: 0 !important;
    margin: 0 !important;
    border: none;
    background-color: white;
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 15%);
    border-radius: 0;
    min-width: 200px;
    margin: 2px 0;
}

.dropdown-submenu .dropdown-menu {
    padding: 0 !important;
    margin: 0 !important;
    border: none;
    background-color: white;
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 15%);
    border-radius: 0;
    min-width: 100px;
    margin: 2px 0;
}


/* .dropdown-item {
    color: #fff;
    padding: 10px;
} */

.dropdown-item:focus,
.dropdown-item:hover {
    color: #101010 !important;
    text-decoration: none;
    background-color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-submenu>.dropdown {
    top: 0;
    left: 100%;
    margin-top: -6px;
}

.navbar-nav li:hover>ul.dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
}

.dropdown>.dropdown-menu>li a {
    padding: 10px;
    color: #101010;
}

a#navbarDropdownMenuLink {
    margin-left: 11px;
}

.navbar .btn-more {
    position: absolute;
    right: 80px;
    top: 13px;
    z-index: 100;
    margin-top: 4px;
    display: none;
}

.navbar .btn-more a {
    color: #b3b2b2;
}

.navbar .btn-more a:hover {
    color: #1a1919;
}

@media only screen and (min-width: 320px) and (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) and (max-width: 996) {
    .visible-xs {
        display: block !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) and (max-width: 996) {
    .navbar-nav .nav-link {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) and (max-width: 996) {
    .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) and (max-width: 996) {
    .navbar-nav>li>.dropdown-menu::before {
        display: none;
    }
}
.navbar-light .navbar-nav .nav-item .box:first-child{
    animation: blink 1s linear infinite;
}

@keyframes blink{
0%{opacity: 0;}
50%{opacity: .5;}
100%{opacity: 1;}
}

.content li{
    list-style:none;
    padding:10px;
}

    input[type=text], select , textarea{
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
    }
  input[type=submit] {
  width: 100%;
  background-color: #0C2340 ;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;


}


.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}


.collapsible {
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}



.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

/*.active:after {*/
/*  content: "\2212";*/
/*}*/

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}
.modal-header{
    padding:0;
    border-bottom:none;
}

@media only screen and (min-width: 320px) and (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .top-header .col-md-10 {
        margin-left: 0 !important;
        padding-left: 6px !important;
        text-align: center;
    }
    .top-header .col-md-2 {
        text-align: center;
    }
    .student {
        margin-left: 0;
        margin-top: 30px;
    }
    .links {
        margin-top: 30px;
        margin-left: 0 !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .about-area p {
        text-align: justify;
    }
    .col-xs-6 {
        width: 50%;
        margin-top: 30px;
    }
    .left-about p{
        text-align: justify;
    }
    .tab button{
        padding: 14px 10px;
        font-size: 12px;
        font-weight: bold;
    }
    .about-content .col-md-6 .left-abou {
        margin-bottom:20px;
    }
    .note-section{
        margin-bottom: 20px;
    }
    .alumini-section{
        margin-top: 20px;
    }
    .home-section .col-md-8{
        padding-left: 15px !important;
        padding-right: 15px !important;
        z-index: 1;
    }
}

.single-product-item {
    background-color: #fff;
    padding: 10px;
    transition: all 0.4s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 3px 1px #ddd;
    border-radius: 10px;
    position: relative;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.product-area {
    background: #f9f9f9;
}

.product-thumb {
    position: relative;
    overflow: hidden;
}

.product-thumb .single-product-item {
    font-size: 0;
    overflow: hidden;
}

.single-product-item .product-thumb img {
    width: 100%;
    height: auto;
    transition: .3s;
    height:340px;
}

.product-thumb .effect-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    background: rgb(20, 20, 100, 0.4);
    transition: .5s;
    transform: scale(0);
    opacity: 0;
}

.product-thumb:hover .effect-text {
    transform: scale(1);
    opacity: 1;
}

.product-thumb .effect-text h2 {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    margin-bottom:10px;
    font-family:sans-serif;
}


