/*
* 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 : cta */
.cta {
  margin-bottom: 50px !important;
}

.cta-bg {
  display: block;
  min-height: 250px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-bg.icon {
  background-size: 20%;
}

.cta.icon-magni .icon {
  background-size: 45%;
}

.cta-content {
  padding: 3rem;
  background: var(--wp--preset--color--primary);
  position: relative;
}
.cta-content > * + * {
  margin-top: 2rem;
  margin-bottom: 0;
}
.cta-content .btn {
  overflow: hidden;
  border: 0;
  outline: 0;
  text-align: center;
  padding: 1.5rem 2rem;
  color: #fff;
  background: var(--wp--preset--color--primary);
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--normal);
  font-family: "Red Hat Display";
  line-height: 1;
  position: relative;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  gap: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.4rem;
}
.cta-content .btn svg,
.cta-content .btn span {
  z-index: 2;
  position: relative;
}
.cta-content .btn svg path,
.cta-content .btn span path {
  fill: #fff;
}
.cta-content .btn svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}
.cta-content .btn:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: 0.5rem;
}
.cta-content .btn:hover, .cta-content .btn:active, .cta-content .btn:focus {
  text-decoration: none;
  background: var(--wp--preset--color--tertiary);
  color: var(--wp--preset--color--primary);
}
.cta-content .btn:hover svg,
.cta-content .btn:hover span, .cta-content .btn:active svg,
.cta-content .btn:active span, .cta-content .btn:focus svg,
.cta-content .btn:focus span {
  color: var(--wp--preset--color--primary);
}
.cta-content .btn:hover svg path,
.cta-content .btn:hover span path, .cta-content .btn:active svg path,
.cta-content .btn:active span path, .cta-content .btn:focus svg path,
.cta-content .btn:focus span path {
  fill: var(--wp--preset--color--primary);
}
.cta-content .btn.back-to-clients {
  background-color: transparent;
  padding: 0px;
  color: var(--wp--preset--color--secondary);
  transition: all 0.2s ease-in-out;
}
.cta-content .btn.back-to-clients svg {
  width: 20px;
  transition: all 0.2s ease-in-out;
}
.cta-content .btn.back-to-clients:hover {
  background-color: transparent;
}
.cta-content .btn.back-to-clients:hover svg {
  transform: translate(10px, 0);
}
.cta-content .btn.back-to-clients:hover svg path {
  fill: transparent;
}
.cta-content .btn.company-website-button {
  background: var(--wp--preset--color--secondary);
  width: 100%;
  text-align: center;
  margin: 3rem 0;
}
.cta-content .btn.company-website-button:hover {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
}
.cta-content .btn.company-website-button:hover svg,
.cta-content .btn.company-website-button:hover span {
  color: #fff;
}
.cta-content .btn.company-website-button:hover svg path,
.cta-content .btn.company-website-button:hover span path {
  fill: #fff;
}
.cta-content .btn.button-primary {
  background: var(--wp--preset--color--secondary);
  color: #fff;
  border: 1px solid var(--wp--preset--color--secondary) !important;
}
.cta-content .btn.button-primary path {
  fill: #fff;
}
.cta-content .btn.button-primary:hover, .cta-content .btn.button-primary:active, .cta-content .btn.button-primary:focus {
  background: #fff;
  color: var(--wp--preset--color--secondary);
  border: 1px solid #fff !important;
}
.cta-content .btn.button-primary:hover svg,
.cta-content .btn.button-primary:hover span, .cta-content .btn.button-primary:active svg,
.cta-content .btn.button-primary:active span, .cta-content .btn.button-primary:focus svg,
.cta-content .btn.button-primary:focus span {
  color: #fff;
}
.cta-content .btn.button-primary:hover svg path,
.cta-content .btn.button-primary:hover span path, .cta-content .btn.button-primary:active svg path,
.cta-content .btn.button-primary:active span path, .cta-content .btn.button-primary:focus svg path,
.cta-content .btn.button-primary:focus span path {
  fill: #fff;
}
.cta-content .btn.btn-primary, .cta-content .btn.is-style-btn-primary {
  color: var(--wp--preset--color--foreground);
  background: var(--wp--preset--color--tertiary);
}
.cta-content .btn.btn-primary path, .cta-content .btn.is-style-btn-primary path {
  fill: var(--wp--preset--color--foreground);
}
.cta-content .btn.btn-primary:hover, .cta-content .btn.btn-primary:active, .cta-content .btn.btn-primary:focus, .cta-content .btn.is-style-btn-primary:hover, .cta-content .btn.is-style-btn-primary:active, .cta-content .btn.is-style-btn-primary:focus {
  background: var(--wp--preset--color--foreground);
}
.cta-content .btn.btn-primary:hover svg,
.cta-content .btn.btn-primary:hover span, .cta-content .btn.btn-primary:active svg,
.cta-content .btn.btn-primary:active span, .cta-content .btn.btn-primary:focus svg,
.cta-content .btn.btn-primary:focus span, .cta-content .btn.is-style-btn-primary:hover svg,
.cta-content .btn.is-style-btn-primary:hover span, .cta-content .btn.is-style-btn-primary:active svg,
.cta-content .btn.is-style-btn-primary:active span, .cta-content .btn.is-style-btn-primary:focus svg,
.cta-content .btn.is-style-btn-primary:focus span {
  color: var(--wp--preset--color--tertiary);
}
.cta-content .btn.btn-primary:hover svg path,
.cta-content .btn.btn-primary:hover span path, .cta-content .btn.btn-primary:active svg path,
.cta-content .btn.btn-primary:active span path, .cta-content .btn.btn-primary:focus svg path,
.cta-content .btn.btn-primary:focus span path, .cta-content .btn.is-style-btn-primary:hover svg path,
.cta-content .btn.is-style-btn-primary:hover span path, .cta-content .btn.is-style-btn-primary:active svg path,
.cta-content .btn.is-style-btn-primary:active span path, .cta-content .btn.is-style-btn-primary:focus svg path,
.cta-content .btn.is-style-btn-primary:focus span path {
  fill: var(--wp--preset--color--tertiary);
}
.cta-content .btn.btn-secondary, .cta-content .btn.is-style-btn-secondary {
  background: var(--wp--preset--color--secondary);
  color: #fff;
}
.cta-content .btn.btn-secondary path, .cta-content .btn.is-style-btn-secondary path {
  fill: #fff;
}
.cta-content .btn.btn-secondary:hover, .cta-content .btn.btn-secondary:active, .cta-content .btn.btn-secondary:focus, .cta-content .btn.is-style-btn-secondary:hover, .cta-content .btn.is-style-btn-secondary:active, .cta-content .btn.is-style-btn-secondary:focus {
  background: var(--wp--preset--color--primary);
}
.cta-content .btn.btn-secondary:hover svg,
.cta-content .btn.btn-secondary:hover span, .cta-content .btn.btn-secondary:active svg,
.cta-content .btn.btn-secondary:active span, .cta-content .btn.btn-secondary:focus svg,
.cta-content .btn.btn-secondary:focus span, .cta-content .btn.is-style-btn-secondary:hover svg,
.cta-content .btn.is-style-btn-secondary:hover span, .cta-content .btn.is-style-btn-secondary:active svg,
.cta-content .btn.is-style-btn-secondary:active span, .cta-content .btn.is-style-btn-secondary:focus svg,
.cta-content .btn.is-style-btn-secondary:focus span {
  color: #fff;
}
.cta-content .btn.btn-secondary:hover svg path,
.cta-content .btn.btn-secondary:hover span path, .cta-content .btn.btn-secondary:active svg path,
.cta-content .btn.btn-secondary:active span path, .cta-content .btn.btn-secondary:focus svg path,
.cta-content .btn.btn-secondary:focus span path, .cta-content .btn.is-style-btn-secondary:hover svg path,
.cta-content .btn.is-style-btn-secondary:hover span path, .cta-content .btn.is-style-btn-secondary:active svg path,
.cta-content .btn.is-style-btn-secondary:active span path, .cta-content .btn.is-style-btn-secondary:focus svg path,
.cta-content .btn.is-style-btn-secondary:focus span path {
  fill: #fff;
}
.cta-content .btn.btn-white, .cta-content .btn.is-style-btn-white {
  background: #fff;
  color: var(--wp--preset--color--foreground);
}
.cta-content .btn.btn-white path, .cta-content .btn.is-style-btn-white path {
  fill: var(--wp--preset--color--foreground);
}
.cta-content .btn.btn-white:hover, .cta-content .btn.btn-white:active, .cta-content .btn.btn-white:focus, .cta-content .btn.is-style-btn-white:hover, .cta-content .btn.is-style-btn-white:active, .cta-content .btn.is-style-btn-white:focus {
  background: var(--wp--preset--color--foreground);
}
.cta-content .btn.btn-white:hover svg,
.cta-content .btn.btn-white:hover span, .cta-content .btn.btn-white:active svg,
.cta-content .btn.btn-white:active span, .cta-content .btn.btn-white:focus svg,
.cta-content .btn.btn-white:focus span, .cta-content .btn.is-style-btn-white:hover svg,
.cta-content .btn.is-style-btn-white:hover span, .cta-content .btn.is-style-btn-white:active svg,
.cta-content .btn.is-style-btn-white:active span, .cta-content .btn.is-style-btn-white:focus svg,
.cta-content .btn.is-style-btn-white:focus span {
  color: #fff;
}
.cta-content .btn.btn-white:hover svg path,
.cta-content .btn.btn-white:hover span path, .cta-content .btn.btn-white:active svg path,
.cta-content .btn.btn-white:active span path, .cta-content .btn.btn-white:focus svg path,
.cta-content .btn.btn-white:focus span path, .cta-content .btn.is-style-btn-white:hover svg path,
.cta-content .btn.is-style-btn-white:hover span path, .cta-content .btn.is-style-btn-white:active svg path,
.cta-content .btn.is-style-btn-white:active span path, .cta-content .btn.is-style-btn-white:focus svg path,
.cta-content .btn.is-style-btn-white:focus span path {
  fill: #fff;
}
.cta-content .btn.facetwp-load-more {
  background-color: var(--wp--preset--color--secondary);
  background-image: url(../img/custom/show-more.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding: 1.5rem 5.5rem 1.5rem 2rem;
}
.cta-content .btn.facetwp-load-more:hover, .cta-content .btn.facetwp-load-more:focus {
  color: #fff;
  background-color: var(--wp--preset--color--primary);
}
.cta-content .btn.full-width {
  display: block;
}
.cta-content .btn.aligncenter, .cta-content .btn.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
.cta-content .btn.large-padding {
  padding: 2.5rem 2rem;
}

.cta-content h3 {
  font-size: 2.6rem;
  line-height: 1.3;
  margin: 0 0 1rem;
  color: #fff;
}

.cta-content *:last-child {
  margin-bottom: 0;
}

@media (max-width: 799px) {
  .cta-content:before {
    height: 1rem;
    top: 0;
    left: 3rem;
    right: 3rem;
  }
}
@media (min-width: 800px) {
  .cta.horis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cta.horis .cta-bg {
    width: 40%;
    order: 1;
  }
  .cta.horis .cta-content {
    width: 60%;
    padding: 40px 46px 40px 40px;
    order: 0;
  }
  .cta.horis .cta-content {
    padding: 40px 46px 40px 40px;
  }
  .cta.vert .cta-content:before {
    height: 6px;
    top: 0;
    left: 3rem;
    right: 3rem;
  }
  .cta.horis .cta-content:before {
    width: 6px;
    top: 45px;
    bottom: 37px;
    right: 0;
  }
}
@media (min-width: 1200px) {
  .cta.horis .cta-bg,
  .cta.horis .cta-content {
    width: 50%;
  }
  .cta.three-by-one .cta-bg {
    width: 25%;
  }
  .cta.three-by-one .cta-content {
    width: 75%;
  }
}
