/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
.wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 0px;
  font-size: 16px;
  margin-bottom: 2rem;
}
.wp-block-table table + h2, .wp-block-table table + h3, .wp-block-table table + h4, .wp-block-table table + h5, .wp-block-table table + h6 {
  margin-top: 3rem;
}
.wp-block-table table thead,
.wp-block-table table tfoot {
  color: black;
  text-transform: unset;
}
.wp-block-table table thead th,
.wp-block-table table tfoot th {
  font-weight: 600;
  font-size: 1.8rem;
  background: none;
  border-bottom: 0;
}
.wp-block-table table thead {
  border-bottom: 2px solid var(--wp--preset--color--primary);
}
.wp-block-table table thead th {
  text-align: left;
  padding: 1rem;
  color: var(--wp--preset--color--primary);
  border: 0;
  border-bottom: 1px solid var(--wp--preset--color--primary);
  margin-right: 5px;
  font-weight: 500;
}
.wp-block-table table thead th.report, .wp-block-table table thead th.webcast, .wp-block-table table thead th.presentation, .wp-block-table table thead th.download, .wp-block-table table thead th.edit {
  width: auto;
  text-align: center;
}
.wp-block-table table tbody tr:nth-child(odd) {
  background: rgba(71, 213, 242, 0.05);
}
.wp-block-table table tbody tr td {
  vertical-align: middle;
  padding: 1rem;
  border: 0;
}
.wp-block-table table tbody tr th {
  font-weight: 500;
}
.wp-block-table table tbody .file_name a {
  display: block;
  color: var(--wp--preset--color--primary);
  margin: -1rem;
  padding: 1rem;
  text-decoration: none;
}
.wp-block-table table tbody .file_name a:hover {
  text-decoration: none;
  color: white;
  background: var(--wp--preset--color--secondary);
}
@media (max-width: 782px) {
  .wp-block-table table tbody .file_name {
    min-width: 200px;
  }
}
.wp-block-table table tbody .file_size {
  width: 12rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 782px) {
  .wp-block-table table tbody .file_size {
    min-width: 9rem;
  }
}
.wp-block-table table tbody .date_published {
  width: 17rem;
  font-size: 1.4rem;
}
@media (max-width: 782px) {
  .wp-block-table table tbody .date_published {
    min-width: 12rem;
  }
}
.wp-block-table table tbody .client-name p {
  font-size: 2.2rem;
  color: var(--wp--preset--color--primary);
}
.wp-block-table table tbody .title p {
  margin-bottom: 10px;
  font-size: 2.2rem;
  color: #000;
}
.wp-block-table table tbody .title p a {
  color: #000;
  transition: 0.2s ease-in-out;
}
.wp-block-table table tbody .title p a:hover {
  color: var(--wp--preset--color--secondary);
}
.wp-block-table table tbody .title span {
  text-transform: uppercase;
  font-size: 1.6rem;
  color: var(--wp--preset--color--primary);
}
.wp-block-table table tbody .download {
  border-left: 5px solid #fff;
}
.wp-block-table table tbody .report,
.wp-block-table table tbody .webcast,
.wp-block-table table tbody .presentation,
.wp-block-table table tbody .download,
.wp-block-table table tbody .edit {
  width: auto;
  text-align: center;
  position: relative;
}
.wp-block-table table tbody .report > a,
.wp-block-table table tbody .webcast > a,
.wp-block-table table tbody .presentation > a,
.wp-block-table table tbody .download > a,
.wp-block-table table tbody .edit > a {
  position: relative;
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in-out;
}
.wp-block-table table tbody .report > a:focus svg path, .wp-block-table table tbody .report > a:hover svg path,
.wp-block-table table tbody .webcast > a:focus svg path,
.wp-block-table table tbody .webcast > a:hover svg path,
.wp-block-table table tbody .presentation > a:focus svg path,
.wp-block-table table tbody .presentation > a:hover svg path,
.wp-block-table table tbody .download > a:focus svg path,
.wp-block-table table tbody .download > a:hover svg path,
.wp-block-table table tbody .edit > a:focus svg path,
.wp-block-table table tbody .edit > a:hover svg path {
  fill: var(--wp--preset--color--primary);
}
.wp-block-table table tbody .report > a:focus svg #Path_782, .wp-block-table table tbody .report > a:hover svg #Path_782,
.wp-block-table table tbody .webcast > a:focus svg #Path_782,
.wp-block-table table tbody .webcast > a:hover svg #Path_782,
.wp-block-table table tbody .presentation > a:focus svg #Path_782,
.wp-block-table table tbody .presentation > a:hover svg #Path_782,
.wp-block-table table tbody .download > a:focus svg #Path_782,
.wp-block-table table tbody .download > a:hover svg #Path_782,
.wp-block-table table tbody .edit > a:focus svg #Path_782,
.wp-block-table table tbody .edit > a:hover svg #Path_782 {
  stroke: var(--wp--preset--color--primary);
}
.wp-block-table table tbody .report svg,
.wp-block-table table tbody .webcast svg,
.wp-block-table table tbody .presentation svg,
.wp-block-table table tbody .download svg,
.wp-block-table table tbody .edit svg {
  width: 25px;
  height: auto;
  fill: var(--wp--preset--color--primary);
  transition: all 0.25s ease-in-out;
}
.wp-block-table table tfoot th {
  background: none;
}

.block-team-grid {
  overflow: hidden;
  margin-top: 5rem !important;
}
p + .block-team-grid, h2 + .block-team-grid, h3 + .block-team-grid, h4 + .block-team-grid, h5 + .block-team-grid, h6 + .block-team-grid {
  margin-top: 3rem;
}
.block-team-grid + .team {
  margin-top: 3rem;
}
div + .block-team-grid {
  margin-top: 4rem;
}
.block-team-grid.team-fade .team-head:not(.open) img {
  opacity: 0.35;
}

.team-head {
  margin: 0 0 20px 0;
  position: relative;
  cursor: pointer;
}
.team-head img {
  width: 100%;
  margin: 0;
  aspect-ratio: 0.9/1;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.team-head .profile {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.team-head .profile .committees {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 10px;
}
.team-head .profile .committees li {
  width: 24px;
  height: 24px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin: 0 0 0.4ch 0;
  padding: 3px;
  color: var(--wp--preset--color--primary);
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--wp--preset--color--primary);
  border-radius: 50%;
}
.team-head .profile .committees li:before {
  display: none;
}
.team-head .team-details {
  display: flex;
  width: 100%;
  margin: 1.8rem 0 0 0;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: border 0.18s ease-in-out;
}
.team-head .team-details .title {
  width: 100%;
}
.team-head .team-details h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5ch;
  padding: 2rem 2rem;
  text-align: center;
  transition: color 0.18s ease-in-out, opacity 0.18s ease-in-out;
  background-color: var(--wp--preset--color--primary);
  transition: all 0.2s ease-in-out;
  border-bottom: 3px solid var(--wp--preset--color--primary);
  color: #fff;
  width: 90%;
  margin: 0 auto;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
.team-head .team-details p {
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 1rem;
  transition: color 0.18s ease-in-out, font-weight 0.18s ease-in-out, opacity 0.18s ease-in-out;
}
.team-head.open .team-details h3, .team-head:hover .team-details h3 {
  background-color: #fff;
}
.team-head.open .team-details h3, .team-head.open .team-details p, .team-head:hover .team-details h3, .team-head:hover .team-details p {
  color: var(--wp--preset--color--primary);
}
.team-head.open .team-details p {
  font-weight: 400;
}

.team-bio {
  width: 100%;
  height: 0;
  transition: height 0.3s ease-in-out, border 0.3s ease-in-out;
  overflow: hidden;
}
.team-bio .inner {
  margin: 0 0 20px 0;
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .team-bio .inner {
    gap: 3rem;
  }
}
.team-bio .inner .details {
  width: 350px;
  background: rgba(71, 213, 242, 0.05);
  min-height: 100px;
  padding: 4rem;
}
.team-bio .inner .details a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--wp--preset--color--foreground);
}
.team-bio .inner .details a svg {
  width: 30px;
  height: 30px;
  align-self: center;
  margin-right: 10px;
}
.team-bio .inner .details a.phone svg {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}
.team-bio .inner .details a.linkedin:hover {
  color: var(--wp--preset--color--secondary);
}
.team-bio .inner .details a.linkedin svg {
  width: 30px;
  height: 30px;
  align-self: center;
  margin-right: 10px;
}
.team-bio .inner .details a.linkedin svg path {
  fill: var(--wp--preset--color--secondary);
}
@media (max-width: 782px) {
  .team-bio .inner .details {
    width: 100%;
  }
}
.team-bio .inner .bio {
  flex: 1;
}
@media (max-width: 782px) {
  .team-bio .inner {
    padding-top: 0;
  }
}
.team-bio p.linkedin {
  padding-top: 1ch;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.team-bio p.linkedin a {
  width: 30px;
  display: inline-block;
}
.team-bio p:last-of-type {
  margin: 0;
}
.team-bio.active-tab {
  height: auto;
}
.team-bio.active-tab .inner {
  animation: fadeIn 1s forwards 0.15s;
}

@media (min-width: 380px) {
  .block-team-grid {
    margin: 0 -18px 0px -8px;
  }
  .team-head {
    width: calc(100% - 23px);
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin: 0 7px 30px 8px;
  }
  .team-bio {
    float: left;
    padding-left: 8px;
    padding-right: 18px;
  }
}
@media (max-width: 6990px) {
  .acc-panel {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 700px) {
  .team-head {
    width: calc(33.33% - 23px);
  }
  .team-bio {
    padding-right: 21px;
  }
}
