.join1{
	height: auto;
  width: 100%;
  background: white;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-x: auto;
  color: white;
  padding: 40px 20px;
}
.join1 button{
	background-color: #e6e9ec;
	border-radius: 40px;
	width: 100px;
	border:none;
	color: #334960;
	font-size: 15px;
	transition: all 0.3s ease;
	height: 24px;
}
.join1 button:hover{
	background-color: #0e2943;
	color: white;
}
.heading1{
	color: #334960;
	font-family: ui-monospace;
	font-size: 40px;
	text-align: center;
}
.join1 p{
	text-align: center;
	color: #334960;
	width: auto;
	font-family: sans-serif;
	margin: 20px;
	font-size: 17px;
}
.join1 h4{
	font-family: ui-monospace;
  color: #334960;
  font-size: 25px;
  margin-right: auto;
  margin-top: 50px;
}
.heading2{
	font-family: ui-monospace;
    color: #334960;
    font-size: 25px;
    margin-right: auto;
    margin-top: 50px;
}
.event-type{
	display: grid;
 	grid-template-columns: repeat(3, 1fr);
  	gap: 20px;
  	justify-content: center;
  	margin-top: 40px;
}
.type-box{
	height: auto;
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 15px;
  border: 2px solid #e2e6e9;
  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:hover{
  transform: translate(-5px, -5px);
  box-shadow: 2px 2px 25px #e2e6e9;
}
.type-box  i{
  margin-bottom: 10px;
  font-size: 15px;
}
.type-box h1{
  margin: 0;
  font-size: 20px;
  text-align: center;
}
.type-box p{
	text-align: center;
	color: #334960;
	width: 200px;
	font-family: sans-serif;
	margin: 20px;
	font-size: 17px;
	line-height: 1.2;
}
@media (max-width: 600px) {
  .event-type {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .event-type {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .event-type {
    grid-template-columns: repeat(3, 1fr);
  }
}

.past-event{
	display: grid;
 	grid-template-columns: repeat(2, 1fr);
  	gap: 40px;
  	justify-content: center;
  	margin-top: 40px;
}
.past-box{
	height: auto;
  width: 100%;
  max-width: 500px;
  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;
  padding: 10px;
  line-height: 2.0;
  color: #334960;
  padding: 15px;
}
.past-box:hover{
  transform: translate(-5px, -5px);
  box-shadow: 2px 2px 25px black;
}
.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{
	border-radius: 5px;
	width: 144px;
	border:#e5e7eb;
	color: black;
	font-size: 11px;
	height: 18px;
}
@media (max-width: 600px) {
  .past-event {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .past-event {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .past-event {
    grid-template-columns: repeat(3, 1fr);
  }
}
.but-2{
	border-radius: 5px;
	width: 144px;
	border:#e5e7eb;
	color: black;
	font-size: 11px;
	height: 18px;
	margin-left: auto;
}
.training2{
	height: auto;
  width: auto;
  max-width: 645px;
  background:linear-gradient(to bottom, #0A2942, #296698);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  box-shadow: 2px 2px 25px #c1bcbc;
  padding: 40px 20px;
  border-radius: 15px;
  margin: 70px auto 70px auto;
}
.training2 p{
	text-align: center;
	color: #eaeff3;
	width: auto;
	font-family: sans-serif;
	margin: 20px;
	font-size: 17px;
	
}
.training2 button{
	height: 37px;
    width: 285px;
    background-color: #f3f5f7;
    border-radius: 8px;

    font-size: 18px;
    font-family: arial;
    color: #183e5e;
    justify-content: left;
    margin: 5px;
    border: none;
    transition: all 0.3s ease;
}
.button{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; 

}
.training2 button:hover{
	background-color: #0e2943;
	color: white;
}