@import url("https://fonts.googleapis.com/css2?family=Agbalumo&family=Noto+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700&family=Playpen+Sans:wght@100;200;300;500;600;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,400;1,600&family=Roboto+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto+Flex:opsz,wght@8..144,100;8..144,200;8..144,300;8..144,400;8..144,500;8..144,600;8..144,700;8..144,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;1,200;1,300;1,400;1,600&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,700;1,600&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-family: "Titillium Web", sans-serif;
  color: white;
}
html {
  scroll-behavior: smooth;
}
header {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: black;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.29);
}
header #logo {
  height: 50px;
  cursor: pointer;
}
header .name {
  font-size: 24px;
  cursor: pointer;
}
nav {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  border-bottom: 1px solid rgba(255, 255, 255, 0.29);
  position: sticky;
  top: 0;
}
nav ul a {
  color: #333333;
  text-decoration: none;
  font-size: 18px;  
}
nav ul a li:hover,
header .name:hover,
.contact .main-contact .contact-info .social-media a i:hover,
.contact .main-contact .contact-info h3:hover,
.academics .card-group .card .descp h3 a:hover {
  color: #ff001e;
}
nav ul a li {
  list-style: none;
  display: inline-block;
  gap: 100px;
  padding: 20px;
  margin: 0px 10px;
  color: white;
}
.img-body {
  height: 100vh;
  background: url("Sujal-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-position: center;
}
#academic {
  height: calc(100vh - 2px);
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* padding: 100px 0px; */
  border-bottom: 1px solid white;
  border-top: 1px solid white;
}
#academic span {
  font-size: 30px;
  text-transform: uppercase;
}
.academics .card-group {
  height: 60vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0px;
}
.academics .card-group .card {
  height: 450px;
  width: 350px;
  margin: 30px;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  box-shadow: 0px 0px 5px 2px white;
  transition: 0.3s all ease-in-out;
}
.academics .card-group .card:hover {
  background-color: #ccc;
  box-shadow: 0px 0px 5px 2px white;
}
.academics .card-group .card img {
  height: 270px;
  padding: 20px;
  width: 310px;
  border-radius: 18px;
}
.academics .card-group .card .descp {
  padding: 5px 20px;
}
.academics .card-group .card .descp h1,
.academics .card-group .card .descp h3,
.academics .card-group .card .descp h3 a {
  color: black;
}
.contact {
  height: calc(100vh - 1px);
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid white;
}
.contact .main-contact {
  margin-top: 10vh;
  height: 70vh;
  width: 55%;
  background-color: rgb(53, 3, 77);
  border-radius: 15px;
  display: flex;
  padding: 50px;
  align-items: center;
}
.contact .main-contact .contact-info {
  width: 45%;
  height: 85%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 0px 20px;
}
.contact .main-contact .contact-info .social-media a i {
  font-size: 35px;
  margin: 0px 20px;
}
.contact .main-contact .contact-info h1 {
  font-size: 40px;
  font-weight: 500;
}
.contact .main-contact .contact-info .info {
  font-weight: 300;
  cursor: pointer;
}
.contact .main-contact .contact-info .info i {
  margin-right: 10px;
  cursor: pointer;
}
.contact .main-contact .contact-form {
  background-color: white;
  border-radius: 15px;
  height: fit-content;
  overflow: hidden;
  width: 650px;
}
.contact .main-contact .contact-form form {
  padding: 30px;
}
.contact .main-contact .contact-form form label,
.contact .main-contact .contact-form form input {
  color: black;
  font-size: 18px;
  font-weight: 600;
}
.contact .main-contact .contact-form form input {
  border: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0.416);
  width: 100%;
  padding: 8px 0px;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
}
.contact .main-contact .contact-form form input:focus {
  border-bottom: 3px solid rgb(236, 5, 32);
}
.contact .main-contact .contact-form form button {
  height: 50px;
  font-size: 20px;
  outline: none;
  color: white;
  background-color: rgb(255, 22, 22);
  width: 100%;
  border: none;
  cursor: pointer;
}
.contact .main-contact .contact-form form button i {
  margin-right: 10px;
}
.contact .main-contact .contact-form form button:hover {
  background-color: #d80000;
}
footer{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  height: 80px;
  font-size: 18px;
}