 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.training1{
  height: auto;
  width: 100%;
  background:white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  padding: 40px 20px;
  overflow-x: hidden;
}
.training1 button{
  background-color: #e6e9ec;
  border:1px solid #bac2ca;
  border-radius: 40px;
  width: 150px;
  height: 25px;
  color: #334960;
  font-size: 15px;
  transition: all 0.3s ease;
}	
.heading1{
	color: #0e2943;
	font-family: ui-monospace;
	font-size: 40px;
	text-align: center;
}
.training1 p{
	text-align: center;
	color: #627384;
	width: auto;
	font-family: sans-serif;
	margin: 20px;
	font-size: 17px;
}
.training-container{
	display: grid;
 	grid-template-columns: repeat(3, 1fr);
  	gap: 20px;
  	justify-content: center;
  	margin-top: 40px;
}
.training-box{
  height: auto;
  width: auto;
  max-width: 600px;
  background-color: white;
  border:1px solid #cacdd1;
  border-radius: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 30px;
  padding: 10px;
  gap:10px;
  line-height: 1.8;
}
.training-box:hover{
  box-shadow: 1px 1px 15px #e2e6e9;
}
.training-box button{
  background-color: white;
  border-radius: 8px;
  width: 85px;
  height: 20px;
  color: black;
  font-size: 13px;
}
.training-box  i{
  color: #334960;
  font-size: 27px;
}
.heading2{
  margin: 0;
  font-size: 17px;
  text-align: center;
  color: #0e2943;
}
.training-box p{
  width: auto;
  margin: 0;
  text-align: left;
  font-size: 15px;
}

.training-container2{
    display: grid;
 	grid-template-columns: repeat(2,1fr);
  	gap:10px;
  	justify-content: center;
  	margin-top: 40px;
}
.training-box2{
  height: auto;
  width: 100%;
  max-width: 600px;
  background-color: white;
  border:1px solid #cacdd1;
  border-radius: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 6px;
  padding: 10px;
  gap:10px;
}
.training-box2:hover{
  box-shadow: 1px 1px 15px #e2e6e9;
}
.training-box2 p{
	text-align: center;
	color: #334960;
	width: auto;
	font-family: sans-serif;
	margin: 20px;
	font-size: 17px;
}
.training2{
	height: auto;
  width: 90%;
  min-width: 200px;
  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;
  line-height: 1.5;
}
.training2 p{
	text-align: center;
	color: #eaf1f5;
	width: auto;
	font-family: sans-serif;
	margin: 20px;
	font-size: 17px;
	
}
.training2 button{
	height: 37px;
    width: 315px;
    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:  #3b6c8fa3;
	color: white;
  border:1px solid #5f8ba8;
}
@media(max-width: 850px){
  .training-container{
    grid-template-columns: repeat(1,1fr);
  }
  .training-box{
    width: 360px;
  }
}
@media(max-width: 500px){
  .training-container2{
    grid-template-columns: repeat(1,1fr);
  }
  .training-box2{
    width: 360px;
  }

}