.event1{
	height: auto;
  width: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-x: auto;
  color: white;
  padding: 40px 20px;
}
.event1 button{
	background-color: #e6e9ec;
	border-radius: 40px;
	width: 100px;
	border:1px solid #5f8ba8;
	color: #334960;
	font-size: 15px;
	transition: all 0.3s ease;
	height: 24px;
}
.event1 button:hover{
	background-color: #0e2943;
	color: white;
}
.heading1{
	color: #334960;
	font-family: ui-monospace;
	font-size: 40px;
  text-align: center;
}
.event1 p{
	text-align: center;
	color: #334960;
	width: auto;
	font-family: sans-serif;
	margin: 20px;
	font-size: 17px;
}
.event1 h4{
	font-family: ui-monospace;
  color: #334960;
  font-size: 25px;
  margin-top: 50px;
}
.comming-events{
	display: grid;
 	grid-template-columns: repeat(2, 1fr);
  	gap: 20px;
  	justify-content: center;
  	margin-top: 40px;
}
.event-box{
	height: auto;
  width: auto;
  max-width: 800px;
  background-color: white;
  border-radius: 8px;
  border:1px solid #e5e7eb;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  
  padding: 10px;
  line-height: 1.8;
}
.event-box img{
	height: auto;
	width: 100%;
	border-radius: 15px;
}
.event-box:hover{
   box-shadow: 1px 1px 20px #00000059;
}
.event-box  i{
  margin-bottom: 10px;
  color: #334960;
  font-size: 15px;
}
.event-box h1{
  margin: 0;
  font-size: 20px;
  text-align: center;
}
.event-box h4{
	font-family: ui-monospace;
  color: #334960;
  font-size: 18px;
  margin: 20px;
}
.event-box p{
  width: auto;
  text-align: left;
}
.event-box button{
	background-color: #0e2943;
	border-radius: 5px;
	width: 275px;
	border:none;
	color: white;
	font-size: 15px;
	transition: all 0.3s ease;
	height: 35px;
  margin: 0 auto 0 auto;
}
.event-box button:hover{
	width: 295px;
}
@media(max-width: 600px){
  .comming-events{
    grid-template-columns: repeat(1,1fr);
  }
}
.past-event{
	display: grid;
 	grid-template-columns: repeat(2, 1fr);
  	gap: 20px;
  	justify-content: center;
  	margin-top: 40px;
    width: 100%
}
.past-box{
	height: auto;
  width: auto;
  max-width: 800px;
  background-color:white;
  border-radius: 15px;
 border:1px solid #e5e7eb;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  
  justify-content: center;
  padding: 10px;
  line-height: 1.8;
  color: #334960;
  padding: 20px;
}
.past-box:hover{
  box-shadow: 1px 1px 20px #00000059;
}
.past-box h1{
  margin: 0;
  font-size: 20px;
  text-align: center;
}
.past-box  i{ 
  margin-bottom: 10px;
  color: #334960;
  font-size: 15px;
}
.past-box button{
 	background-color: #d3d3d3;
	border-radius: 5px;
	width: 50px;
	border:none;
	color: black;
	font-size: 15px;
	height: 35px;
}
@media(max-width: 600px){
  .past-event{
    grid-template-columns: repeat(1,1fr);
  }
}
.event-type{
	display: grid;
 	grid-template-columns: repeat(3, 1fr);
  	gap: 20px;
  	justify-content: center;
  	margin-top: 40px;
}
.type-box{
	height: auto;
  width: auto;
  max-width: 700px;
  background-color: #ffffff;
  border-radius: 15px;
  border:1px solid #e5e7eb;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  line-height: 1.8;
  color: #334960;
  padding: 15px;
}
.type-box  i{

  font-size: 15px;
}
.type-box h1{
  margin: 5;
  font-size: 17px;
  text-align: center;
}
.type-box p{
	text-align: center;
	color: #334960;
	width: auto;
	font-family: sans-serif;
	margin: 20px;
	font-size: 17px;
	line-height: 1.2;
}
@media(max-width: 600px){
  .event-type{
    grid-template-columns: repeat(1,1fr);
  }
}
