/* Custom Css Property (This Property Don't Change) */

body {
  font-family: "Poppins-Regular", sans-serif !important;
  font-size: 1rem;
}

*,
*::after,
*::before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

ol,
ul {
  list-style: none;
  margin-bottom: 0;
}

/* Custom Css Property -- Ends  */

/* == Font Family == */

@font-face {
  src: url("../fonts/Poppins-Regular.ttf");
  font-family: "Poppins-Regular";
}

@font-face {
  src: url("../fonts/Poppins-Medium.ttf");
  font-family: "Poppins-Medium";
}

@font-face {
  src: url("../fonts/Poppins-SemiBold.ttf");
  font-family: "Poppins-SemiBold";
}

@font-face {
  src: url("../fonts/Poppins-Bold.ttf");
  font-family: "Poppins-Bold";
}

.Poppins-Regular {
  font-family: "Poppins-Regular", sans-serif !important;
}

.Poppins-Medium {
  font-family: "Poppins-Medium", sans-serif !important;
}

.Poppins-SemiBold {
  font-family: "Poppins-SemiBold", sans-serif !important;
}

.Poppins-Bold {
  font-family: "Poppins-Bold", sans-serif !important;
}

/* == Font Family End == */

/* == Header Part Start == */

/* = Desktop Manu Bar = */

.logo {
  padding: 7px 0;
}

.logo img {
  height: 100px;
  width: 500px;
  object-fit: contain;
  display: inline-block;
}

.hamburge {
  background-color: rgb(50, 104, 229);
  padding: 12px 0;
}
.hamburge nav ul {
  margin-bottom: 0;
}
.hamburge nav ul > li:first-child {
  padding-left: 0;
}

.hamburge nav ul > li:last-child {
  padding-right: 0;
}

.hamburge nav ul > li {
  float: left;
  padding: 0 11px;
  position: relative;
}

.hamburge nav ul > li > a {
  color: rgb(255, 255, 255);
  display: block;
  transition: 0.5s;
}
.hamburge nav ul > li > a i {
  padding-left: 3px;
  vertical-align: middle;
  font-size: 14px;
}

.hamburge nav ul > li:hover .hoverMenu {
  display: block;
}
.hoverMenu {
  position: absolute;
  left: 0px;
  right: 0px;
  background: rgb(255, 255, 255);
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.335);
  overflow: hidden;
  display: none;
  text-align: center;
  z-index: 999;
}
.hoverMenu > a {
  color: rgb(11, 12, 12);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.397);
  transition: 0.5s;
  font-size: 14px;
}
.hoverMenu > a:last-child {
  border-bottom: none;
}
.hoverMenu > a:hover {
  background-color: rgb(221, 221, 221);
}
.mAuto {
  display: flex;
  justify-content: center;
}
/* == End Desktop Menu == */

/* == Start Mobile Menu == */
#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: -255px;
  height: 100vh;
  z-index: 999;
  background: rgb(115, 134, 213);
  color: rgb(255, 255, 255);
  transition: all 0.3s;
  overflow-y: scroll;
  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: rgb(74, 128, 255);
  position: absolute;
  top: 10px;
  box-shadow: 0 0 13px #00000025;
  right: 10px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#dismiss:hover {
  background: rgb(255, 255, 255);
  color: rgb(115, 134, 213);
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.overlay.active {
  display: block;
  opacity: 1;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: rgb(109, 127, 204);
}

#sidebar ul.components {
  padding: 50px 0;
}

#sidebar ul p {
  color: rgb(255, 255, 255);
  padding: 10px;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 16px;
  display: block;
  color: rgb(255, 255, 255);
}
#sidebar ul li a i {
  float: right;
  margin-top: 5px;
  margin-right: 10px;
}

#sidebar ul li a:hover {
  color: rgb(45, 46, 47);
  background: rgb(255, 255, 255);
}

/* #sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
} */

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

ul ul a {
  font-size: 14px !important;
  padding-left: 30px !important;
  background: rgb(55, 81, 142);
}

ul.CTAs {
  padding: 20px;
}

ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}

a.download {
  background: rgb(255, 255, 255);
  color: rgb(115, 134, 213);
}

a.article,
a.article:hover {
  background: rgb(109, 127, 204) !important;
  color: rgb(255, 255, 255) !important;
}

.mobilenav {
  float: left;
}

.mobileLogo {
  float: right;
  width: 100%;
  display: flex;
  justify-content: center;
}
.mobileLogo a img {
  height: 67px;
  width: 343px;
  object-fit: contain;
  margin: 0 auto;
  margin-top: 15px;
  display: inline-block;
}
.mobileMenu {
  position: relative;
}
.bars_ {
  position: absolute;
  top: 20px;
  left: 20px;
}
.newBtn {
  background-color: rgb(67, 118, 234);
  border-color: rgb(67, 118, 234);
}
/* == End Mobile Menu == */

/* == Start Annoucement & Welcome == */
.imgSlider img{
  max-height: 466px;
  height: auto;
}
.bgBlackColor {
  background-color: rgba(0, 0, 0, 0.1);
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.headerContent {
  position: absolute;
  bottom: 0;
  left: 20px;
}
.headerContent .title h2 {
  font-family: "Poppins-Medium", sans-serif !important;
  color: rgb(255, 255, 255);
  font-size: 30px;
}
.headerContent .contentTitle p {
  width: 80%;
  color: rgb(236, 236, 236);
  line-height: 28px;
}

.removewlDots .owl-theme .owl-nav {
  display: none;
}
.titleofAnnoucement h2 {
  font-family: "Poppins-Medium", sans-serif !important;
  font-size: 28px;
  color: rgb(26, 92, 245);
}
.annouceist > ul > li {
  margin-top: 18px;
}
.annouceist > ul > li > a {
  color: rgb(14, 14, 15);
  transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.annouceist > ul > li > a i {
  color: rgb(26, 92, 245);
}
.annouceist > ul > li > a:hover {
  color: rgb(47, 106, 245);
}
.viewAll a {
  display: block;
  background-color: rgb(26, 92, 245);
  border-radius: 5px;
  margin-top: 14px;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 0 8px;
}

.viewAll a i {
  float: right;
  margin-top: 4px;
}
.aboutCollegeText p {
  color: rgb(14, 14, 15);
  line-height: 30px;
  text-align: justify;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 20px;
}
/* == End Annoucement & Welcome == */
/* == Facilit Section Start == */
.titleFacility h2 {
  font-family: "Poppins-Bold", sans-serif !important;
}
.titleFacility {
  display: block;
  width: 100%;
}
.Facility {
  float: left;
}
.Facility h2 {
  color: rgb(26, 92, 245);
  margin-bottom: 0;
}
.Facility span {
  display: block;
  height: 5px;
  width: 70px;
  background-color: #0e254d;
}
.titleFacility a {
  display: block;
  float: right;
  margin-top: 12px;
  color: rgb(26, 92, 245);
}
.FacilityList {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 19px rgba(100, 141, 234, 0.57);
}
.titleFacility a i {
  vertical-align: middle;
}
.headImg img {
  height: 185px;
  width: 100%;
  object-fit: cover;
}
.mtNew {
  margin-top: 50px;
}
.faclityHead {
  padding: 25px 10px;
}

.faclityHead h3 {
  font-size: 24px;
  color: #1a5cf5;
  font-family: "Poppins-Bold", sans-serif !important;
  margin-bottom: 0;
}
.FacilityList {
  transition: 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.FacilityList:hover {
  margin-top: -10px;
}
.faclityHead span {
  display: block;
  height: 2px;
  width: 30px;
  background: #000000cf;
}
.FacilityContent {
  padding: 0 10px 20px;
}
.FacilityContent p {
  margin-bottom: 0;
  text-align: justify;
}
/* == Facilit Section End == */

/* == Faculty Section Start == */
.Faculty a {
  display: block;
  border-radius: 5px;
  text-align: center;
  padding: 20px 0;
  font-family: "Poppins-Bold", sans-serif !important;
  font-size: 20px;
  color: rgb(26, 92, 245);
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
}
.Faculty a span {
  color: rgb(26, 24, 24);
  border-bottom: 5px solid black;
}
.mtNew2 {
  margin-top: 30px;
}
/* == Faculty Section End == */
/* == Footer Start == */
.footer {
  background-color: rgb(50, 104, 229);
  padding: 25px 0;
}
.Footerlogo {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Footerlogo a img {
  width: 247px;
  height: 47px;
  object-fit: contain;
}
.footerhead h3 {
  font-size: 20px;
  color: rgb(255, 255, 255);
  font-family: "Poppins-Bold", sans-serif !important;
  letter-spacing: 3px;
}

.footerNav ul {
  margin-top: 25px;
}
.footerNav ul li a {
  color: rgb(255, 255, 255);
  font-size: 18px;
  margin-top: 10px;
  display: inline-block;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footerNav ul li a:hover {
  margin-left: 5px;
}
.footerNav ul li a i {
  margin-right: 5px;
}
.ContactNav ul {
  margin-top: 37px;
}
.ContactNav ul li {
  color: rgb(255, 255, 255);
  margin-top: 10px;
}
.ContactNav ul li i {
  margin-right: 5px;
}
.copyright {
  background-color: rgb(39, 40, 42);
  padding: 10px 0;
}

.CopyrightTagline p {
  color: rgb(255, 255, 255);
  margin-bottom: 0;
}
.terms p {
  margin-bottom: 0;
  color: rgb(255, 255, 255);
  text-align: right;
}
/* == Footer End == */

/* ==============================
  History Page Start
================================= */
.collegeHistory p {
  text-align: justify;
}
.historyChart table {
  border-radius: 5px;
  overflow: hidden;
}

/* ==============================
  History Page End
================================= */

/* ==============================
  Infrastructure Page Start
================================= */
.infaIMG {
  width: 100%;
}
.sliderImges {
  padding: 0 10px;
}
.sliderImges img {
  height: 260px;
  width: 260px !important;
  object-fit: cover;
  border-radius: 5px;
}
.contenIN {
  margin-top: 20px;
}
.contenIN span {
  color: rgb(26, 92, 245);
  font-family: "Poppins-Bold", sans-serif !important;
  text-transform: capitalize;
  font-size: 18px;
  border-bottom: 3px solid rgba(26, 92, 245, 0.781);
  margin-bottom: 10px;
  display: inline-block;
}
.infraContent {
  margin-top: 30px;
}
/* ==============================
  Infrastructure Page End
================================= */

/* ==============================
  Mission Page Start
================================= */
.mission ul {
  list-style-type: square;
}
.mission ul li {
  margin-top: 15px;
  text-align: justify;
}

.missionContent p {
  margin-top: 30px;
  text-align: justify;
}

/* ==============================
  Mission Page End
================================= */

/* ==============================
  Vision Page Start
================================= */
.visionText p {
  text-align: justify;
}
/* ==============================
    Vision Page End
  ================================= */

/* ==============================
  lab Page Start
================================= */
.imglab img {
  object-fit: cover;
  height: 450px;
  border-radius: 5px;
}
.labInformation {
  margin-top: 30px;
}
.labInformation p {
  text-align: justify;
}
/* ==============================
    lab Page End
  ================================= */

/* ==============================
  Image Gallery Page Start
================================= */
.imgGaller {
  overflow: hidden;
  transition: 0.5s ease-in-out;
}
.imgGaller img {
  height: 250px;
  border-radius: 5px;
  border: 4px solid rgb(239, 239, 239);
  margin-top: 30px;
}
.imgGaller:hover {
  margin-top: -5px;
}
/* ==============================
    Image Galler Page End
  ================================= */

/* ==============================
  Video Gallery Page Start
================================= */
.vidoGaller {
  margin-top: 30px;
  border-radius: 5px;
  overflow: hidden;
}
.vidoGaller video {
  border-radius: 5px;
  outline: none;
}
/* ==============================
    Video Galler Page End
  ================================= */

/* ==============================
  Staff Profile Page Start
================================= */
.stafProfile {
  border-radius: 5px;
  box-shadow: 0 0 20px #00000054;
  overflow: hidden;
  margin-top: 30px;
  padding: 20px 10px;
  transition: 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.stafProfile:hover {
  transform: translateY(-5px);
}
.staffImag img {
  width: 200px;
  height: 200px;
  /* background: red; */
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.29);
  border-radius: 5px;
}
.staffWork span,
.staffWork a {
  display: block;
  margin-top: 18px;
  font-size: 15px;
}
.staffWork a {
  color: rgb(26, 92, 245);
}
.staffWork span:first-child {
  color: rgb(26, 92, 245);
  margin: 0;
  border-bottom: 1px solid rgb(26, 92, 245);
  display: inline-block;
}
/* ==============================
    Staff Profile Page End
  ================================= */

/* ==============================
    Contact us Profile Page Start
  ================================= */
.GoogleMap {
  padding: 10px;
  width: 100%;
  display: flex;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.233);
}
.GoogleMap iframe {
  width: 100%;
  height: 350px;
}
.address {
  background-color: rgb(50, 104, 229);
  padding: 20px 10px;
  width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.233);
}
.address address {
  margin-bottom: 0;
  color: rgb(255, 255, 255);
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.address address span,
.phno span {
  margin-bottom: 5px;
  display: block;
  font-family: "Poppins-Bold", sans-serif !important;
  color: rgba(255, 255, 255, 0.945);
  letter-spacing: 1px;
  font-size: 18px;
  border-bottom: 3px solid #27282ac2;
}
.phno {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.phno a {
  color: rgb(255, 255, 255);
}
/* ==============================
    Contact us Profile Page End
  ================================= */

/* ==============================
    Fee Details Page Start
  ================================= */

.feeStructure table,
.academicCalender table {
  border-radius: 7px;
  overflow: hidden;
}
.feeStructure th,
.academicCalender th {
  font-weight: lighter;
}
.academicCalender a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}
.academicCalender span {
  vertical-align: super;
  font-size: 14px;
  margin-left: 9px;
  color: rgb(236, 48, 48);
  -webkit-animation: New 5s infinite;
  animation: New 15s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes New {
  0% {
    color: rgb(26, 92, 245);
  }
  50%{
    color: rgb(0, 255, 255);
  }
  100% {
    color: rgb(236, 48, 48);
  }
}

@keyframes New {
  0% {
    color: rgb(26, 92, 245);
  }
  50%{
    color: rgb(0, 255, 255);
  }
  100% {
    color: rgb(236, 48, 48);
  }
}
/* ==============================
    Fee Details Page End
  ================================= */

/* ==============================
    Syllabus Sec Start
  ================================= */
.titleSyllabus h3 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #3268e5;
  list-style: square;
}

.titleSyllabus h3 i {
  font-size: 10px;
  vertical-align: middle;
  line-height: 3px;
  color: #3e444a;
  margin-right: 7px;
  margin-top: -3px;
}
.Syllabus table {
  border-radius: 7px;
  overflow: hidden;
}
.Syllabus table tr td a {
  color: #fff;
}
/* ==============================
    Syllabus Sec End
  ================================= */

/* ==============================
    Balancesheet Sec Start
  ================================= */
.balanceSheet {
  border-radius: 5px;
  border: 1px solid rgb(39, 40, 42);
}

.headeofBalancesheet h4 {
  color: #fff;
  padding: 10px;
  background-color: rgb(39, 40, 42);
  margin-bottom: 30px;
  font-size: 20px;
}
.tablelistView table tr td a {
  color: rgb(39, 40, 42);
}

/* ==============================
    Balancesheet Sec End
  ================================= */

/* ==============================
    Old Question Paper  Sec Start
  ================================= */

.oldQuestionPaper .table td,
.oldQuestionPaper .table th {
  white-space: nowrap;
}
.oldQuestionPaper .table td a {
  color: #212529;
  text-decoration: underline;
}
/* ==============================
    Old Question Paper  Sec End
  ================================= */

/* ==============================
    Student Profile  Sec Start
  ================================= */
.DepartMentProfiles table {
  border-radius: 5px;
  border: 1px solid #343a40;
}
.DepartMentProfiles table tr td img {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  object-fit: contain;
}
.DepartMentProfiles table tr td,
.DepartMentProfiles table th {
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
}

.studentCorner table tbody tr td a{
  color: #212529;
  text-decoration: underline;
}

/* ==============================
    Student Profile  Sec End
  ================================= */

/* ==============================
    student activity sec start
  ================================= */
.bg-shadow {
  border-radius: 7px;
  box-shadow: 0 0 9px #00000038;
  margin-top: 30px;
}
.activityTitle {
  margin: 20px 0;
  border-bottom: 1px solid rgba(105, 105, 105, 0.527);
}
.activityTitle h3 {
  font-size: 20px;
  color: #3268e5;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
/* .activityTitle span {
  width: 50px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.657);
  display: block;
} */

.activityInformati p {
  text-align: justify;
}
.studentActivityImg img {
  height: 285px;
  object-fit: cover;
}

/* ==============================
    student activity sec End
  ================================= */

/* ==============================
    Result sec Start
  ================================= */
.widthNw {
  width: 70.5%;
  margin: auto;
}
.resultist table{
  border-radius: 5px;

  overflow: hidden;
}
.resultist table tbody tr td:first-child {
  width: 20%;
}
.resultist table tbody tr td{
  vertical-align: middle;
}
.resultist table tbody tr td a{
  text-decoration: underline;
  color: #212529;
}
.resultist table tbody {
  border-left: 1px solid #dee2e6;
  border-right: 2px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
.newOne{
  vertical-align: super;
    font-size: 14px;
    margin-left: 5px;
    color: rgb(236, 48, 48);
    -webkit-animation: New22 2s infinite;
    animation: New22 2s;
    animation-iteration-count: infinite;
}
@-webkit-keyframes New22 {
  0% {
    color: rgb(26, 92, 245);
  }
  50% {
    color: rgb(29, 28, 27);
  }
  100% {
    color: rgb(236, 48, 48);
  }
}

@keyframes New22 {
  0% {
    color: rgb(26, 92, 245);
  }
  50% {
    color: rgb(29, 28, 27);
  }
  100% {
    color: rgb(236, 48, 48);
  }
}
/* ==============================
    Result sec End
  ================================= */
