body {
  overflow-y: hidden;
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}



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

.contact_us {
  border-radius: 12px !important;
  border: #309255 2px solid !important;
  color: #12311e !important;
  padding: 15px 20px 15px 20px !important;
}
.contact_us:hover {
  color: white !important;
  background: #309255;
  padding: 13px 17px 13px 17px;
  font-size: 18px;
}

.loaderwrapper {
  height: 100vh;
  width: 100vw;
  background: rgb(243, 243, 243);
  position: fixed;

  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition-duration: 0.4s;
  transition-timing-function: ease-in;
}
.loader img {
  animation: loading 0.5s ease-in-out;
  transition-duration: 0.3s !important;
  position: relative;
  height: 15vh;
  width: auto;
}
.loader {
  transition-duration: 0.5s;
  position: relative;

  height: auto;
  width: auto;
}
@keyframes loading {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

html::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	background-color: #F5F5F5;
	border-radius: 10px;
}
html::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}
html::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: #FFF;
	background-image: -webkit-gradient(linear,
									   40% 0%,
									   75% 84%,
									   from(#309255),
									   to(#19911D),
									   color-stop(.6,#45b14c))
}

.loadertext {
  /* background-color: red; */
  height: auto;
  width: auto;
  overflow: hidden;
}

.loadertext h1 {
  transform: translateY(60px);
  transition-duration: 0.5s;
}
a {
  cursor: pointer;
}

.app {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: relative;
  right: 10%;
  top: 0%;
  /* z-index: -1; */
}

.slide {
  aspect-ratio: 1.75/1;
  height: 500px;
  width: 40vw;
  border-radius: 3em;
  color: white;
  font-weight: 700;
  font-family: "Montserrat";
  padding: 1em 2em;
  margin: 1em 0em;
  display: flex;
  align-items: end;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), transparent),
    url("../assets/images/gallery/Conference\ Gallery/INNOVACION\ 2022/2.jpg");
    background-repeat: no-repeat;

  background-size: cover;
  background-position: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-size 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* .slide:hover{
  box-shadow: 
    0 0 0 10px hsl(0, 0%, 80%),
    0 0 0 15px hsl(0, 0%, 90%),
    0 14px 28px rgba(0,0,0,0.25),
    0 10px 10px rgba(0,0,0,0.22);
  background-size: 130%;
} */
.slide:first-child {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), transparent),
    url("../assets/images/conference/d-18_1.jpg");

  background-repeat: no-repeat;
  background-size: cover;
}
.slide:nth-child(3) {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), transparent),
    url("../assets/images/ClassRoomImages _IEM _CSE/LG\ 4.7.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
}
.slide h1 {
  position: absolute;
  bottom: 1.75em;
  letter-spacing: 0.05em;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.carousel {
  position: relative;
}

.carousel .dots {
  position: absolute;
  bottom: 3em;
  left: 2em;
  display: flex;
  gap: 0.5em;
}

.active {
  /* width: 2em; */
  opacity: 1;
}
.slide-vis {
  display: none;
}

.fade {
  animation: transform 400ms ease-in-out;
}
.bg-fade {
  animation: background-transform 400ms ease-in-out;
}

@keyframes transform {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

/* @keyframes background-transform {
  from {
    background-size: cover;
  }
  to {
    background-size: 100%;
  }
} */

@media only screen and (max-width: 767px) {
  .app {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
    margin-left: 20%;
  }
  .slide {
    width: 95vw;
    height: 40vh;
  }
}

.about {
  height: auto !important;
  min-height: 80vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abouthead {
  width: 100%;
}
.aboutsec {
  margin-top: 10vh;
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.aboutcontent {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.aboutcontent .aboutimg {
  width: 45%;
  overflow: hidden;
  /* background-color: red; */
  border-radius: 15px;
  position: relative;
  height: auto;
}
.aboutcontent .aboutimg img {
  transition-duration: 0.1s;
  border-radius: 15px;
  height: 100%;
  width: 100%;
  transform: scale(1.4);
}
.aboutcontent .aboutpara {
  width: 50%;
}
.aboutpara p {
  width: 90%;
  font-size: 1rem;
}

.vision {
  padding-top: 10%;
}

.visionimg img {
  border-radius: 15px;
}

.misson {
  height: 100vh;
  background-color: red;
}

.hodmsg {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;
}
.msgcontent {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  margin-top: 130px;
}
.socials li {
  height: 50px !important;
  transform: scale(2);
}

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

.rwd-table {
  margin: auto;
  min-width: 380px;
  max-width: 100%;
  border-collapse: collapse;
}

.rwd-table tr:first-child {
  border-top: none;
  background: #309255;
  color: #fff;
}

.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f5fcf7;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #ebf3f9;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:first-child {
  margin-top: 0.5em;
}

.rwd-table td:last-child {
  margin-bottom: 0.5em;
}

.rwd-table td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
  width: 120px;
  display: inline-block;
  color: #000;
}

.rwd-table th,
.rwd-table td {
  text-align: left;
}

.rwd-table {
  color: #333;
  border-radius: 0.4em;
  overflow: hidden;
}

.rwd-table tr {
  border-color: #bfbfbf;
}

.rwd-table th,
.rwd-table td {
  padding: 0.5em 1em;
}
@media screen and (max-width: 601px) {
  .rwd-table tr:nth-child(2) {
    border-top: none;
  }
}
@media screen and (min-width: 600px) {
  .rwd-table tr:hover:not(:first-child) {
    background-color: #d8f3d9;
  }
  .rwd-table td:before {
    display: none;
  }
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: 0.25em 0.5em;
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
}

.researchtable {
  height: auto !important;
  min-height: 80vh;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100vw;
  flex-direction: column;
  margin-bottom: 0vh;
}
.researchtable .tablehead {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}

.researchpdfs {
  margin-bottom: 10vh;
  height: auto;
  width: 100vw;
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.researchpdfs .researchButton .pdfbutton {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.pdfviewer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pdfviewer embed {
  width: 70%;
  background-color: #b2d3be;
  height: 0;
  border-radius: 15px;
  transition-duration: 0.5s;
}

.researchpdfs .researchButton .pdfbutton li {
  border: 2px solid #309255;
  padding: 15px 20px 15px 20px;
  border-radius: 15px;
  transition-duration: 0.3s;
  cursor: pointer;
}
.researchpdfs .researchButton .pdfbutton li:hover {
  background-color: #309255;
  color: white;
}
.researchButton {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.yearsec {
  overflow-y: scroll;
  scrollbar-width: none;
  height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.5s;
  gap: 10px;
  text-align: center;
  flex-direction: column;
  /* background-color: red; */
}
.yearsec li {
  transition-duration: 0.5s;
  cursor: pointer;
  border: 1px solid #309255;
  width: 50%;
  text-align: center;
  padding: 10px;
  border-radius: 15px;
}
.yearsec li:hover {
  background-color: #309255;
  color: #fff;
}

.researchlabs {
  margin-bottom: 10vh;
  height: auto !important;
  width: 100vw;
  /* background-color: red; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 70px;
}

.labcards {
  display: flex;
  justify-content: center;
  align-items: center;

  min-width: 80%;
  max-width: 90%;
  gap: 20px;
}
.labsheading {
  font-size: 40px;
  font-weight: 700;
}
.labcards .cardwrapper {
  border: 2px #a3a3a3 solid;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  width: 70%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  transition-duration: 0.4s;
}
.labcards .cardwrapper:hover {
  border-color: #309255;

  transform: scale(1.02);
}

.labcards .cardwrapper .cardimage {
  width: 100%;
}

.labcards .cardwrapper .cardimage img {
  border-radius: 15px;
}

.cardcontent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.cardcontent .button {
  border: #309255 1px solid;
  min-width: 20%;
  max-width: 40%;
  padding: 12px 15px 12px 15px;
  text-align: center;
  border-radius: 12px;
  transition-duration: 0.5s;
  cursor: pointer;
}
.cardcontent .button:hover {
  background-color: #309255;
  color: #fff;
}
.textcontentp2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.textcontentp2 .cordinators {
  width: 60%;
}

.facultyprofilewrapper {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100vw;
  height: auto;
  min-height: 100vh;
}
.facultyprofilewrapper .heading {
  font-size: 40px;
}

.profileswrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.profileswrapper .cardswrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 70%;
  gap: 100px;
  padding: 20px;
  box-sizing: border-box;
}

.cardswrapper .card {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 450px;
  border-radius: 15px;
  width: calc(
    33.333% - 30px
  ); /* Three cards per row with 20px margin on each side */
  max-width: 300px; /* Adjust maximum width as needed */
  margin-bottom: 20px;
  padding: 25px;
  border: #309255 2px solid;
}

.cardswrapper .card .cardimg {
  width: 50%;
 background-color: #e8ffe9;
 height: 100px;
 border-radius: 100%;
 width: 100px;
 color: #12311e;
 font-size: 25px;
 font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cardswrapper .card .cardimg img {
 
  border-radius: 100%;
}

.cardheads {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  height: auto;
}

.cardheads .cardname {
  text-align: center;
  font-size: 20px;
}

.cardheads .carddesig {
  border: #309255 2px solid;
  padding: 5px 10px 5px 10px;
  border-radius: 10px;
  background-color: #309255;
  text-align: center;
  color: white;
}

@media screen and (max-width: 992px) {
  .cardswrapper .card {
    width: calc(
      50% - 40px
    ); /* Two cards per row with 20px margin on each side */
  }
}

@media screen and (max-width: 600px) {
  .cardswrapper .card {
    width: calc(100%); /* One card per row with 20px margin on each side */
  }
  .profileswrapper .cardswrapper {
    width: 100%;
    gap: 20px;
  }
}

.infrastructure {
  padding-top: 50px;
  gap: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100vw;
}

.infrastructure h1 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
}

.infrawrapper {
  display: flex;
  width: 80%;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.infrawrapper .card {
  /* flex-basis: 33.3%; */
  max-width: 20%;

  min-width: 15%;
  max-height: 270px;
  min-height: 245px;
  padding: 25px 20px 25px 20px;
  border: #309255 1px solid;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
}

.infrawrapper .card .cardimg {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.infrawrapper .card .cardimg img {
  width: 40%;
}

.infrawrapper .card .cardcontent {
  width: 80%;
  text-align: center;
}

.infraclsses {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
.labclasseshead {
  font-size: 40px;
  font-weight: 700;
}
.infraclsses .labclasses {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}

.infraclsses .labclasses .labclassesgrid {
  display: flex;
  width: 100%;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.infraclsses .labclasses .labclassesgrid .card {
  flex-basis: 30%;
  max-width: 50%;
  min-width: 25%;
  max-height: 420px;
  min-height: 300px;
  padding: 25px 5px 20px 5px;
  border: #638570 1px solid;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
}
.infraclsses .labclasses .labclassesgrid .card .cardimg {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.infraclsses .labclasses .labclassesgrid .card .cardimg img {
  border-radius: 15px;
}
.infraclsses .labclasses .labclassesgrid .card .cardhead {
  font-weight: 700;
  text-align: center;
  width: 80%;
}

.coursewrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  width: 100vw;
  height: auto;
  margin-bottom: 50px;
  padding-top: 50px;
}
.coursewrapper .coursehead {
  font-size: 40px;
  font-weight: 700;
}
.coursesecs {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.coursesecs .btechcse {
  display: flex;
  width: 70%;
  flex-direction: column;
  border-radius: 15px;
  border: 2px solid #f7fffa;
  padding: 30px;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
.coursesecs .btechcse .csehead {
  display: flex;
  width: 100%;
  font-size: 30px;
  align-items: center;
  justify-content: flex-start;
}
.coursesecs .btechcse .csedesc {
  display: flex;
  width: 100%;

  align-items: center;
  justify-content: flex-start;
}

.coursesecs .btechcse .csedesc p {
  width: 80%;
}

.coursesecs .btechcse .csesyllebus {
  display: flex;
  width: 100%;
  padding: 50px;
  gap: 20px;
  border: 2px solid #000000;
  border-radius: 15px;
  background-color: #e9fff1;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.coursesecs .btechcse .csesyllebus .syllebushead {
  display: flex;
  width: 100%;
  font-size: 30px;
  align-items: center;
  justify-content: flex-start;
}
.coursesecs .btechcse .csesyllebus .syllebus {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}

.coursesecs .btechcse .csesyllebus .syllebus .syllebuscard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  gap: 0px;
  transition-duration: 0.35s;
  flex-direction: column;
  border: 2px solid #309255;
  width: 100%;
  padding: 10px;
  background-color: white;
}

.coursesecs .btechcse .csesyllebus .syllebus .syllebuscard .maicontent {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.coursesecs .btechcse .csesyllebus .syllebus .syllebuscard .syl_year {
  padding-left: 20px;
  font-weight: 600;
}

.coursesecs .btechcse .csesyllebus .syllebus .syllebuscard img {
  cursor: pointer;
  min-width: 1%;
  max-width: 15%;
  padding: 10px;
  padding-right: 10px;
  transition-duration: 0.35s;
}

.coursesecs .btechcse .csesyllebus .syllebus .syllebuscard .semcontent {
  /* background-color: red; */
  /* border: #12311e 1px solid; */
  width: 100%;
  position: relative;
  background-color: #e9fff1;
  padding: 0px;
  justify-content: center;
  align-items: center;
  height: 0;

  overflow: hidden;
  display: flex;
  border-radius: 10px;
  transition-duration: 0.35s;
  transition-timing-function: ease-in-out;
}
.coursesecs .btechcse .csesyllebus .syllebus .syllebuscard .semcontent ul {
  overflow: hidden;
  height: 0;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition-duration: 0.35s;
}
.coursesecs .btechcse .csesyllebus .syllebus .syllebuscard .semcontent ul li{
  color: #000;
  cursor: pointer;
  padding: 15px 20px 15px 20px;
  border-radius: 10px;
  transition-duration: 0.35s;
  min-width: 15%;
  max-width: 25%;
  text-align: center;
}

.coursesecs
  .btechcse
  .csesyllebus
  .syllebus
  .syllebuscard
  .semcontent
  ul
  li:hover {
  background-color: #309255;
  color: white;
}
[data-invalid_sem] {
  color: #c9c9c9 !important;
}
[data-invalid_sem]:hover {
  background-color: transparent !important;
  cursor: not-allowed !important;
}

.eventhead {
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-top: 50px;
  margin-bottom: 50px;
  font-weight: 700;
}

.placement_trendwrapper {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: auto;
  gap: 50px;
  padding-top: 50px;
  justify-content: center;
  align-items: center;
}

.placement_trendwrapper .trendhead {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}
.placement_trendwrapper .trendembed {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.placement_trendwrapper .trendembed embed {
  max-width: 1500px;
  min-width: 600px;
  align-self: center;
  height: 20vw;
}

.statisticswrapper {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: auto;
  gap: 50px;
  padding-top: 50px;
  margin-bottom: 50px;
  justify-content: center;
  align-items: center;
}
.statisticswrapper .statistichead {
  font-size: 40px;
  font-weight: 700;
}
.statisticswrapper .statisticssec {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.statisticswrapper .statisticssec .batchheads {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
}
.statisticswrapper .statisticssec .stattables {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  width: 80%;
  /* background-color: red; */
  height: auto;
}

.studentchapter {
  width: 100vw;
  padding-top: 50px;
  display: flex;
  gap: 50px;
  height: auto;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
}

.studentchapter .chapterhead {
  font-size: 40px;
  font-weight: 700;
}

.studentchapter .chapterwrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
  /* background-color: red; */
}
.studentchapter .chapterwrapper .chaptercard {
  width: 65%;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  /* background-color: red; */
  border: #000 2px solid;
  padding: 30px 40px 30px 40px;
  border-radius: 15px;
}

.studentchapter .chapterwrapper .chaptercard .cardhead {
  display: flex;
  width: 100%;
  font-size: 40px;
}
.studentchapter .chapterwrapper .chaptercard .carddesc {
  display: flex;
  width: 100%;
  font-size: 20px;
}

.studentchapter .chapterwrapper .chaptercard .linkcontain {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  background-color: #e9fff1;
  gap: 40px;
  border: #000 1px solid;
  border-radius: 12px;
  padding: 30px 40px 30px 40px;
}
.studentchapter .chapterwrapper .chaptercard .linkcontain .linkhead {
  font-size: 30px;
}
.studentchapter .chapterwrapper .chaptercard .linkcontain ul {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  gap: 7px;
  border: #000 2px solid;
  border-radius: 12px;
  padding: 30px 40px 30px 40px;
  align-items: center;
}
.peopso {
  width: 100vw;
  padding-top: 50px;
  margin-bottom: 50px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 50px;
  height: auto;
  flex-direction: column;
}
.peopso .head {
  font-size: 40px;
  font-weight: 700;
}

.peopso .peopsowrapper {
  display: flex;
  flex-direction: column;
  /* background-color: red; */
  border-radius: 15px;
  height: auto;
  width: 80%;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
.peopso .peopsowrapper .card {
  gap: 30px;
  border: #000 2px solid;
  display: flex;
  border-radius: 15px;
  /* background-color: red; */
  flex-direction: column;
  padding: 30px 40px 30px 40px;
  height: auto;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.peopso .peopsowrapper .card .cardhead {
  width: 100%;
  font-size: 40px;
}
.peopso .peopsowrapper .card .cardcontent {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}

.peopso .peopsowrapper .card .cardcontent ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.peopso .peopsowrapper .card .cardcontent ul li {
  padding: 20px;
  background-color: #ddffea;
  border-radius: 12px;
}

.contactwrapper {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.contactwrapper .contactcontainer {
  width: auto;
}
.anualreportwrapper {
  height: auto;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-top: 50px;
}

.anualreportwrapper .reporthead {
font-size: 40px;
font-weight: 700;
}

.innovp {
  width: 100vw;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  margin-bottom: 50px;
  gap: 50px;
}
.innovp .head{
font-size: 40px;
font-weight: 700;
}

.innovp .content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.innovp .content .part1,.innovp .content .part2 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.innovp .content .part1 .head,.innovp .content .part2 .head {
  font-size: 30px;
}

.innovp .content .part1 .tables,.innovp .content .part2 .tables {
 width: 50%;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}
.innovp .content .part3 {
  display: flex;

  gap: 50px;
  justify-content: center;
  align-items: center;
  width: 80%;
  /* background-color: red; */
  height: auto;
  flex-wrap: wrap;
}
.innovp .content .part3 img {
flex-basis: 33.3%;
max-width: 23.3%;
}
.adbboard {
  width: 60%;
  padding-bottom: 50px;
}
.infrawrapper-stake {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 20px;
  align-items: center;
  justify-content: center;
 
}
.infrawrapper-stake .stakefeed {
  width: 80%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.stakefeeddesc {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 80%;
  /* background-color: red; */
}
.stakefeeddesc .stakefeedhead {
  font-size: 25px;
  font-weight: 600;
}
.conferencewrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  gap: 50px;
  padding-top: 50px;
  margin-bottom: 50px;
}
.conferencewrapper .conferencehead {
  font-size: 40px;
  font-weight: 700;
}

.conferencewrapper .conferencelist{
gap: 20px;
display: flex;
width: 80%;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.conferencewrapper .conferencelist .conferencecard {
  flex-basis: calc(25% - 20px); /* 25% width with 20px gap */
  max-width: calc(25% - 20px);
  gap: 20px;
  /* background-color: red; */
  /* border: #000 2px solid; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 15px;
  transition-duration: 0.2s;
}
.conferencewrapper .conferencelist .conferencecard:hover {
  background-color: #deffea;
  cursor: pointer;
}
.conferencewrapper .conferencelist .conferencecard img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
border-radius: 10px;
}

.diversonwrapper {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  margin-bottom: 50px;
}
.diversonwrapper .diversionsec {
  width: 100%;
  gap: 50px;

  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.diversonwrapper .diversionsec .diversoncard {
  width: 70%;
  display: flex;
  flex-direction: column;
  /* background-color: red; */
  border: #000 2px solid;
  border-radius: 15px;
  padding: 30px 40px 30px 40px;
}
.diversonwrapper .diversionsec .diversoncard .cardcontent {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
.diversonwrapper .diversionsec .diversoncard .cardcontent .contenthead {
  font-size: 40px;
  font-weight: 700;
  text-align: left;
}
.diversonwrapper .diversionsec .diversoncard .cardcontent .contentdate {
  text-align: right;
  font-weight: 600;
  width: 100%;
  padding-bottom: 20px;
}
.diversonwrapper .diversionsec .diversoncard .cardcontent .contentdesc {
  text-align: left;

  width: 100%;
}
.diversonwrapper .diversionsec .diversoncard .cardlinks {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  justify-content: center;
  align-items: center;
  /* background-color: red; */
  border-radius: 15px;
}
.diversonwrapper .diversionsec .diversoncard .cardlinks .cardlinkhead {
 text-align: left;
 width: 100%;
 font-size: 30px;
 font-weight: 600;
}
.diversonwrapper .diversionsec .diversoncard .cardlinks .links {
  width: 100%;
}
.diversonwrapper .diversionsec .diversoncard .cardlinks .links ul {
  width: 40%;
  padding: 20px;
  border-radius: 12px;
  background-color: #ddffe9;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
}
.imggrid {
  width: 60%;
  /* background-color: red; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.imggrid img {
  flex-basis: calc(50% - 10px); 
  max-width: calc(50% - 10px);

}
.diversionpdf {
  display: flex;
  justify-content: center;
  align-items: center;
}
.diversionpdf img {
  width: 90%;
}

.naac {
  height: auto;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  gap: 30px;
}
.naac .naachead {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}
.naac .naacimages {
  display: flex;
  width: 80%;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.naac .naacimages img{
  width: 40%;
}
.gallerysec {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding-top: 50px;
  margin-bottom: 50px;
  width: 100vw;
  flex-direction: column;
  height: auto;
}
.gallerysec .galleryhead{
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.gallerysec .gallery {
  width: 90%;
  /* background-color: red; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gallerysec .gallery img {
  flex-basis: calc(33.3% - 20px); 
  max-width: calc(33.3% - 20px);
}

.alumnigrid {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.alumnigrid .card {
padding: 30px 0px 30px 0px;
border-radius: 15px;
gap: 20px;
height: 600px;
flex-direction: column;
  border: #19911D 2px solid;
display: flex;
justify-content: center;
align-items: center;

  width: calc(33.33% - 20px); 
  margin-bottom: 20px; 
}
.alumnigrid .card .cardimg {
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 12px;
  width: 100%;
}
.alumnigrid .card .cardimg img {
  border-radius: 12px;
  width: 90%;
}
.alumnigrid .card .carddesc {
  /* background-color: red; */
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.alumnigrid .card .carddesc .cardnamadd {
  width: 70%;
  /* background-color: blue; */
  align-self:flex-start;
}
.alumnigrid .card .carddesc .cardnamadd h1 {
  font-size: 30px;
}
.alumnigrid .card .carddesc .cardnamadd p {
  font-size: 17px;
}
.alumnigrid .card .carddesc .cardbatch {
  background-color: #19911D;
  color: white;
  width: 30%;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
}
@media screen and (max-width: 1600px) {
  


.header-menu .sub-menu li .sub-menu {
  top: 0px;
  left: -100%;
  opacity: 0;
  visibility: hidden;
}
}
@media screen and (max-width: 678px) {
  .alumnigrid .card .carddesc .cardnamadd h1 {
    font-size: 22px;
  }
  .alumnigrid .card .carddesc .cardnamadd p {
    font-size: 12px;
  }
  .alumnigrid .card .carddesc .cardbatch {
    background-color: #19911D;
    color: white;
    width: 30%;
    text-align: center;
    padding: 20px;
    font-size: 10px;
    border-radius: 12px;
  }
  .alumnigrid .card .carddesc {
    /* background-color: red; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .alumnigrid .card {
    height:auto;
    padding: 30px 30px 30px 30px;
    border-radius: 15px;
    gap: 10px;
    flex-direction: column;
      border: #19911D 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    
      width:100%;
      margin-bottom: 10px; 
    }
    .alumnigrid .card .cardimg img {
      border-radius: 12px;
      width: 100%;
    }
  .gallerysec .gallery img {
    flex-basis: 100%; 
    max-width: 100%;
  flex-direction: column;
  width: 100% !important;
  }
  .imggrid {
    width: 90%;
    /* background-color: red; */
    display: flex;
flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .imggrid img {
    flex-basis: 100%; 
    max-width: 100%;
  
  }
  .diversonwrapper .diversionsec .diversoncard .cardlinks .links ul {
    width: 70%;
    padding: 20px;
    border-radius: 12px;
    background-color: #ddffe9;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
  }
  .diversonwrapper .diversionsec .diversoncard {
    width: 90%;
    display: flex;
    flex-direction: column;
    /* background-color: red; */
    border: #000 2px solid;
    border-radius: 15px;
    padding: 20px 25px 25px 20px;
  }
  .conferencewrapper .conferencelist{
    gap: 20px;
    display: flex;
    flex-direction: column;
    width: 90%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    }
    .conferencewrapper .conferencelist .conferencecard {
      
      max-width: 90%;
      gap: 20px;
      /* background-color: red; */
      /* border: #000 2px solid; */
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 20px;
      border-radius: 15px;
      transition-duration: 0.2s;
    }
  .adbboard {
    width: 100%;

  }
  .innovp .content .part3 {
flex-direction: column;

  }
  .innovp .content .part3 img {
    max-width: 100%;
    
      }
  .innovp .content .part1 .tables,.innovp .content .part2 .tables {
width: 90%;
  }
  .peopso .peopsowrapper .card {
    padding: 25px 20px 25px 20px;
  }

  .peopso .peopsowrapper {
    width: 95%;
  }
  .peopso .peopsowrapper .card .cardhead {
    font-size: 25px;
  }
  .studentchapter .chapterwrapper .chaptercard .carddesc {
    font-size: 12px;
  }
  .studentchapter .chapterwrapper .chaptercard .linkcontain ul {
    padding: 15px 20px 15px 20px;
  }
  .studentchapter .chapterwrapper .chaptercard .linkcontain {
    padding: 15px 20px 15px 20px;
  }
  .studentchapter .chapterwrapper .chaptercard {
    width: 92%;
    padding: 30px 20px 30px 20px;
  }
  .placement_trendwrapper .trendembed embed {
    max-width: 1000px;
    min-width: 400px;
    align-self: center;
    height: 40vh;
  }
  .coursesecs .btechcse .csesyllebus .syllebus .syllebuscard .semcontent ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 15%;
    max-width: 25%;
    padding: 5px;
    font-size: 12px;
  }
  .coursesecs .btechcse .csesyllebus {
    padding: 30px 20px 30px 20px;
  }
  .coursesecs .btechcse {
    width: 95%;
    padding: 30px 20px 30px 20px;
  }

  .coursesecs .btechcse .csesyllebus .syllebus .syllebuscard {
    width: 100%;
    padding: auto;
  }
  .aboutcontent {
    flex-direction: column-reverse;
    width: 100vw;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .aboutcontent .aboutpara {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .aboutpara p {
    text-align: center;
    width: 90%;
    font-size: 1rem;
  }
  .abouthead {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .aboutcontent .aboutimg {
    width: 80%;
    height: auto;
  }
  .vision {
    font-size: 15px;
  }
  .msgcontent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
  }
  .researchtable .tablehead {
    padding-top: 50px;
    font-size: 25px !important;
  }
  .researchtable {
    margin: 50px 0 50px 0;
  }
  .researchButton {
    width: 70vw;
 
  }
  .researchButton ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .pdfviewer embed {
    border-radius: 15px;
    width: 90%;
  }
  .labcards {
    flex-wrap: wrap;
  }
  .labcards .cardwrapper {
    width: 100%;
  }
  .diversonwrapper .diversionsec .diversoncard .cardcontent .contenthead {
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 20px;
  }
  .labsheading,
  .labclasseshead,
  .eventhead,
  .studentchapter .chapterhead,
  .studentchapter .chapterwrapper .chaptercard .cardhead,.anualreportwrapper .reporthead {
    font-size: 25px;
    font-weight: 700;
  }
  .peopso .head {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
  }
  .infrawrapper {
    display: flex;
    width: 80%;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .infrawrapper .card {
    max-width: 100%;
    min-width: 80%;
  }
  .infraclsses .labclasses .labclassesgrid .card {
    max-width: 100%;
    min-width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
}

.email_adj {
  width: 50% !important;
  font-size: 18px !important;
}