.team-sec {
  height: auto;
  width: 100%;
  background-color: white;
  border-radius: 7px;
  color: #0e2943;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 10px;
  line-height: 1.6;
  overflow-x: hidden;

}
.team-sec button {
  height: 20px;
  width: 85px;
  border-radius: 14px;
  color: rgb(14, 41, 67);
  background-color: white;
  letter-spacing: 1px;
  border:1px solid #5f8ba8;
  transition: all 0.3s ease;
  font-family: arial;
  margin:4px;
}
.team-sec button:hover{
  background-color: #3e5368;
  color: white;
  border:1px solid #5f8ba8;
}
.team-sec h1 {
  font-family: serif;
  font-size: 50px;
  margin: 20;

 
}
.team-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
  padding: 10px;
  overflow-x: hidden;
}

.team-box {
  height: auto;
  width: auto;
  min-width: 250px;
  max-width: 800px;
  background-color: white;
  opacity: 85%;
  border:1px solid #5f8ba8;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 5px;
}
.team-box img{
  height: auto;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
}
.team-box p{
  margin: 5px;
}
.team-box h4{ 
  font-family: ui-monospace;
  color: #0e2840;
  font-size: 20px;
  text-align:center;
  margin:5px;
}
@media(max-width: 600px){
  .team-container{
    grid-template-columns: repeat(1,1fr);
  }
}


.advisory-counsil {
  display: grid;
 grid-template-columns: repeat(3,1fr);
  background: linear-gradient(to top,#3B86B7,#0F2B46  );
  gap: 20px;
  justify-content: center;
  padding: 20px;
  border-radius: 6px;
  overflow-x: hidden;
}

.council-box {
  height: auto;
  width: auto;
  min-width: 250px;
  max-width: 800px;
  
  opacity: 85%;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 5px;
}
.council-box img{
  height: auto;
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
}
.council-box p{
  margin: 5px;
}
.heading2{ 
  align-self: center;
  font-family: ui-monospace;
  color:#0e2840;
  font-size: 40px;
  text-align:center;
  margin:10px;
}
.council-box h4{ 
  font-family: ui-monospace;
  color: white;
  font-size: 20px;
  text-align:center;
  margin:5px;
}
@media(max-width: 600px){
  .advisory-counsil{
    grid-template-columns: repeat(1,1fr);
  }
}