.board-member-section .sec-header h2,
.board-member-section .sec-header h3{
  color: #060534;
}
.board-member-section .sec-header p{
  color: rgba(83, 83, 102, 0.85);
}
@media (max-width: 991px) {
  .board-member-section .sec-header h2,
  .board-member-section .sec-header h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .board-member-section .sec-header h2,
  .board-member-section .sec-header h3 {
    margin-bottom: 12px;
  }
}


/*-----boxy-style-------*/
.members-grid.boxy-style{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.members-grid.boxy-style .board-card{
  background: #ffffff;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #DADAEB;
  box-shadow: 0px 4px 12px 0px #00000014;
  gap: 24px;
}
.members-grid.boxy-style .member-img-div{
  background-color: #F5F6F8;
  border-radius: 8px;
  overflow: hidden;
  width: 200px;
  height: 194px;
}
.members-grid.boxy-style .member-img-div .member-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.members-grid.boxy-style .board-card h6{
  color:#060534;
  line-height: 26px;
}
.members-grid.boxy-style .board-card p{
  color: #535366;
}
@media (max-width: 991px) {
  .members-grid.boxy-style .member-img-div{
    width: 87px;
    height: 85px;
    min-width: 87px;
    min-height: 85px;
  }
  .members-grid.boxy-style .board-card h6 {
    line-height: 20px;
  }
  .members-grid.boxy-style .board-card p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .members-grid.boxy-style{
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}

/*-----round-style-------*/
.members-grid.round-style{
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 64px 32px;
  justify-content: space-between;
}
.members-grid.round-style .board-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 220px;
  justify-content: center;
  text-align: center;
}
.members-grid.round-style .member-img-div{
  border-radius: 100%;
  overflow: hidden;
  width: 220px;
  height: 220px;
  margin-left: auto;
  margin-right: auto;
}
.members-grid.round-style .member-img-div .member-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.members-grid.round-style .board-card h6{
  color:#060534;
  line-height: 26px;
}
.members-grid.round-style .board-card p{
  color: #535366;
}
@media (max-width: 1199px) {
  .members-grid.round-style{
    grid-template-columns: auto auto auto;
    gap: 64px 32px;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .members-grid.round-style .member-img-div{
    width: 98px;
    height: 98px;
  }
  .members-grid.round-style .board-card {
    width: 180px;
  }
  .members-grid.round-style .board-card p {
    font-size: 12px;
    line-height: 16px;
  }
  .members-grid.round-style .board-card h6{
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .members-grid.round-style{
    grid-template-columns: auto auto;
    gap: 24px;
  }
  .members-grid.round-style .board-card {
    width: 150px;
  }
  .members-grid.round-style .board-card h6 {
    margin-bottom: 4px !important;
  }
}
