.about1{
	 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;
  overflow-x: hidden;
}
.about1 button{
	background-color: #e6e9ec;
	border-radius: 12px;
	width: 100px;
  height: 23px;
	color: #334960;
	font-size: 15px;
  border:1px solid #bac2ca;
	transition: all 0.3s ease;
}
.about1 button:hover{
	background-color: #0e2943;
	color: white;
}
.about1 h1{
	color: #334960;
	font-family: ui-monospace;
	font-size: 40px;
  text-align: center;
}
.about1 p{
	text-align: center;
	color: #7c8a98;
	width: 353px;
	font-family: sans-serif;
	margin: 20px;
	font-size: 19px;
}
.about-container{
	display: grid;
 	grid-template-columns: repeat(2,1fr);
  	gap: 10px;
  	
  	margin-top: 40px;
}
.about-box{
	height: auto;
  width: 100%;
  max-width: 700px;
  background-color: white;
  border-radius: 15px;
  border:1px solid #e2e6e9;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 30px;
  padding: 10px;
 
}
.about-box:hover{
  box-shadow: 1px 1px 15px #8c8e8fc7;
}
.about-box  i{
  color: #334960;
  font-size: 25px;
}
.about-box h1{
  margin: 10px 0 10px 0;
  font-size: 20px;
  text-align: left;
}
.about-box p{
  width: 200px;
  margin: 0;
  text-align: left;
  font-size: 17px;

}
@media(max-width: 500px){
  .about-container{
    display: grid;
    grid-template-columns: repeat(1,1fr);
  }
  .about-box{
    width: 353px;
    align-self: flex-start;
  }
  .about-box p{
    width: 290px;
  }
}
