.colab1{
	height: auto;
  width: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-x: auto;
  box-shadow: 2px 2px 20px #c1bcbc;
  color: white;
  padding: 40px 20px;
}
.colab1 button{
  background-color: #e6e9ec;
  border-radius: 40px;
  width: 235px;
  border:none;
  color: #334960;
  font-size: 15px;
  transition: all 0.3s ease;
  height: 24px;
}
.colab1 button:hover{
  background-color: #0e2943;
  color: white;
}
.heading1{
  color: #334960;
  font-family: ui-monospace;
  font-size: 40px;
  margin-top: 15px;
  text-align: center;
}
.colab1 p{
  text-align: center;
  color: #334960;
  width: auto;
  font-family: sans-serif;
  margin: 20px;
  font-size: 17px;
}
.colab-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}
.colab-box{
  height: auto;
  width: auto;
  max-width: 600px;
  background-color: white;
  border-radius: 15px;
  border:1px solid #7b8e9e;
  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.2;
  color: #0e2943;
}
.heading2{
  font-family: ui-monospace;
    font-size: 18px;
    margin: 10px auto 0 auto;
    text-align: center;
}
.colab-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: 500px){
  .colab-container{
    grid-template-columns: repeat(1,1fr);
  }
}