/* CONTACT */
#boardsegment{
  padding: 50px 100px;
  /* border: 1px solid navy; */
}
#boardsegment h2{
  text-align: center;
  font-size: 2rem;
  color:#FF781F;
}

#boardblock{
  /* border: 1px solid red; */
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  background: linear-gradient(to bottom, #2E4052, #859699);
  padding: 50px;
}
#boardblock .blocks .tops{
  background: linear-gradient(to bottom, #D2EFF6, #F8EEE6);
}

#boardblock .blocks{
  width: 350px;
  margin-bottom: 10px;
  /* border-radius: 10px; */
}
#boardblock .blocks .tops{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#boardblock .blocks .tops .imghouses{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #1D2553;
}

#boardblock .blocks .tops .imghouses img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#boardblock .blocks .bottoms .names{
  text-align: center;
  color:#FF781F;
  font-weight: bold;
}
#boardblock .blocks .bottoms .titles{
  text-align: center;
  font-style: italic;
}

#boardblock .blocks .bottoms{
  min-height: 900px;
background-color: white;
padding: 0px 30px 30px 30px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}

#boardblock .blocks .bottoms .bios{
  text-align: justify;
}




