@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;

	
}






.wrap{
	overflow: hidden;
	position: relative;
	height: 60em;
    
}

.bg1
{
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: center;
  size: cover;
 
}

li,a,button {

    padding: 30px 10%;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #6E5D5D;
	text-decoration: none;
}

header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}


.topnav {
  
  overflow: hidden;
  display: none;
  background-color: white;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;

}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}


 /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 1500px) {
   

    header {
  	display: none;}

   .topnav{
   	display: block;
   }

  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  
}


/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 1500px) {

  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    color: black;
  }
}




.heading
{
	position: relative;
	text-align: center;
	margin-top: 2em;

}

.iiitdmj{
    padding-left: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.institute_name{
	padding-left: 10px;
}

.logo{

	cursor: pointer;
	height: 50px;
	width: 50px;
	border-radius: 5px;
	
	}

.nav_links{
	
	list-style: none;
}

.nav_links li{
   display: inline-block;
   padding: 0px 20px;
}

.nav_links li a{
   transition: all 0.3s ease 0s;
}

.nav_links li a:hover{
   color: #0088a9;
}

button {
	padding: 9px 25px;
	background-color: rgba(223, 224, 226,1);
	border: none;
	border-radius:50px;
	cursor: pointer;
	transition: all 0.3 ease 0s; 
}

button:hover {
	background-color: rgba(0,136,169,0.8);
}




.buffer{
	height: 2em;
}

.about
{   
    background-color: rgba(29, 29, 29,0);
    padding-bottom: 1em;


	
}

.content
{
	margin-left: 5em;

}

footer{
	height: 4em;
	background-color: rgba(29, 29, 29,0.2);
	text-align: center;
	padding: 1em;

}



