/*
* 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-latest-research .latest-research--inner {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.block-latest-research .latest-research--inner .item {
  background: rgb(65, 88, 155);
  background: -moz-linear-gradient(149deg, rgb(65, 88, 155) 0%, rgb(33, 59, 138) 100%);
  background: -webkit-linear-gradient(149deg, rgb(65, 88, 155) 0%, rgb(33, 59, 138) 100%);
  background: linear-gradient(149deg, rgb(65, 88, 155) 0%, rgb(33, 59, 138) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#41589b",endColorstr="#213b8a",GradientType=1);
  padding: 3rem;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32%;
  transition: all 0.2s ease-in-out;
}
.block-latest-research .latest-research--inner .item:hover h4 {
  color: var(--wp--preset--color--secondary);
}
@media (max-width: 1024px) {
  .block-latest-research .latest-research--inner .item {
    width: 49%;
  }
}
@media (max-width: 782px) {
  .block-latest-research .latest-research--inner .item {
    width: 100%;
    min-height: auto;
  }
}
.block-latest-research .latest-research--inner .item h4 {
  color: #fff;
  font-size: 2.2rem;
  margin-top: 0px;
  font-weight: 400;
  line-height: 32px;
  transition: all 0.2s ease-in-out;
}
.block-latest-research .latest-research--inner .item span {
  color: #47D5F2;
  text-transform: uppercase;
  font-size: 1.6rem;
}
.block-latest-research .latest-research--inner .item span.client {
  color: #fff;
  font-size: 1.8rem;
}
