/*
Plugin Name: Ligniere report
Author: Habefast
Author URI: http://habefast.ch/
*/
/************************************************************
* Layout
************************************************************/
body.single-report > #main-wrap {
  overflow: initial !important;
}

.report {
  contain: paint;
  background: #f4f4f4;
  padding-top: 5px;
}
.report--has-sidebar {
  display: block;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.report__header {
  display: none;
}
.report__sidebar {
  display: none;
}
@media screen and (min-width: 768px) {
  .report--has-sidebar {
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto auto auto;
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  .report__header {
    display: block;
    grid-column: 1/span 2;
    grid-row: 1/span 1;
  }
  .report__sidebar {
    display: block;
    grid-column: 1/span 1;
    grid-row: 1/span 3;
    padding: 20px;
  }
  .report__content {
    grid-column: 2/span 1;
    grid-row: 2/span 2;
    padding-left: clamp(40px, 5vw, 80px);
  }
}

/************************************************************
 * Elements
 ************************************************************/
/* Menu
  ************************************************************/
.report-menu {
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.18);
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .report-menu {
    position: sticky;
    top: 105px;
    max-height: calc(100vh - 125px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .report-menu::-webkit-scrollbar {
    width: 7px;
  }
  .report-menu::-webkit-scrollbar-track {
    background: #f4f4f4;
    border-radius: 5px;
  }
  .report-menu::-webkit-scrollbar-thumb {
    background-color: #dddddd;
    outline: 0px solid #ebebeb;
    border-radius: 5px;
  }
}
.report-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.report-menu ul li {
  padding: 15px 10px;
}
.report-menu ul li a {
  font-size: 12px;
  color: #009078;
  transition: 0.3s;
}
.report-menu ul li a:visited {
  color: #009078;
}
.report-menu ul li a:hover, .report-menu ul li a:focus {
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s;
}
.report-menu ul li a.is-active {
  font-weight: 600;
}
.report-menu ul li:first-of-type a {
  font-size: 15px;
}
.report-menu ul li:not(:last-of-type) {
  border-bottom: 1px solid #f4f4f4;
}

/* Content
 ************************************************************/
.report-content h1, .report-content-mobile h1 {
  font-family: "Montserrat", "MontserratSemiBold", arial, sans-serif;
  font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.22px;
  color: #009078;
  text-transform: uppercase;
  margin: 60px 0 30px;
}
.report-content h2, .report-content-mobile h2 {
  font-family: "Montserrat", "MontserratSemiBold", arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.15px;
  color: #2f2f2f;
  text-transform: uppercase;
  margin: 0 0 10px;
  padding-top: 20px;
}
.report-content h3, .report-content-mobile h3 {
  font-family: "Montserrat", "MontserratSemiBold", arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #009078;
  margin-bottom: 10px;
}
.report-content body, .report-content-mobile body, .report-content div, .report-content-mobile div, .report-content p, .report-content-mobile p, .report-content li, .report-content-mobile li, .report-content ol, .report-content-mobile ol {
  font-family: "Montserrat", "MontserratLight", arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #303030;
  line-height: 1.5;
}
.report-content ul, .report-content-mobile ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.report-content ul li, .report-content-mobile ul li {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  margin-bottom: 1em;
}
.report-content ul li:before, .report-content-mobile ul li:before {
  position: absolute;
  content: "";
  top: 0.5em;
  left: 0;
  height: 1px;
  width: 9px;
  background-color: #009078;
}
.report-content__title {
  margin-top: 60px;
}
.report-content__nav {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}
.report-content__nav a {
  color: #009078;
  font-size: 14px;
  letter-spacing: 0.1px;
}
.report-content__nav a:visited, .report-content__nav a:hover, .report-content__nav a:focus {
  color: #009078;
}

/* Mobile
 ************************************************************/
.report-content-mobile {
  display: none;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .report-content-mobile {
    display: block;
    padding: 30px 0;
  }
  .report-content-mobile .report-mobile-accordion {
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.18);
  }
  .report-content-mobile .report-mobile-accordion > div:first-of-type a {
    border-radius: 5px 5px 0 0;
    font-size: 15px;
  }
  .report-content-mobile .report-mobile-accordion > div:not(:last-of-type) {
    border-bottom: 1px solid #f4f4f4;
  }
  .report-content-mobile .report-mobile-accordion > div a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #009078;
    padding: 15px 10px;
    transition: 0.3s;
  }
  .report-content-mobile .report-mobile-accordion > div a:visited {
    color: #009078;
  }
  .report-content-mobile .report-mobile-accordion > div a:hover, .report-content-mobile .report-mobile-accordion > div a:focus {
    font-weight: initial;
    text-decoration: none;
    transition: 0.3s;
  }
  .report-content-mobile .report-mobile-accordion > div a.is-active {
    background-color: #009078;
    color: #fff;
  }
  .report-content-mobile .report-mobile-accordion > div a.is-active svg {
    transform: rotate(-180deg);
    transition: 0.3s;
  }
  .report-content-mobile .report-mobile-accordion > div a.is-active svg path {
    stroke: #fff;
  }
  .report-content-mobile .report-mobile-accordion__content {
    padding: 20px 10px;
  }
  .report-content-mobile .report-mobile-accordion__content h1 {
    margin-top: 0;
  }
}

.report-index-bar {
  display: none;
}
@media screen and (max-width: 767px) {
  .report-index-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2f2f2f;
    z-index: 999;
  }
  .report-index-bar__container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    padding: 15px 0;
  }
  .report-index-bar .report-index__menu a {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
  }
  .report-index-bar .report-index__nav a {
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    margin-left: 15px;
  }
}

/************************************************************
 * Blocks
 ************************************************************/
.lr-block-text {
  position: relative;
  padding: 0 0 50px 0;
}
.lr-block-text:first-of-type {
  z-index: 8;
}
.lr-block-text:nth-of-type(2) {
  z-index: 7;
}
.lr-block-text:nth-of-type(3) {
  z-index: 6;
}
.lr-block-text:nth-of-type(4) {
  z-index: 5;
}
.lr-block-text:nth-of-type(5) {
  z-index: 4;
}
.lr-block-text:nth-of-type(6) {
  z-index: 3;
}
h1 + .lr-block-text {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .lr-block-text.lr-has-white-background {
    padding: 50px 0;
  }
  .lr-block-text.lr-has-white-background:after {
    position: absolute;
    content: "";
    top: 0;
    left: -2000px;
    height: 100%;
    width: 4000px;
    background: #fff;
    z-index: -1;
  }
}
.lr-block-text.lr-has-white-background + .lr-block-text {
  padding-top: 50px;
}
.lr-block-text.lr-has-white-background + .lr-block-text.lr-has-white-background {
  padding-top: 0;
}
.lr-block-text.lr-has-negative-margin .lr-block-text__image, .lr-block-text.lr-has-negative-margin .lr-block-text__image--two-col,
.lr-block-text.lr-has-negative-margin .lr-block-text__image--has-caption {
  margin-bottom: -200px;
}
.lr-block-text.lr-has-negative-margin + .lr-block-text {
  padding-top: 200px;
}
.lr-block-text__image, .lr-block-text__image--has-caption, .lr-block-text__image--two-col {
  display: flex;
  align-items: center;
  margin: 40px 0;
}
.align-top .lr-block-text__image, .align-top .lr-block-text__image--has-caption, .align-top .lr-block-text__image--two-col {
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .lr-block-text__image, .lr-block-text__image--has-caption, .lr-block-text__image--two-col {
    flex-wrap: wrap;
    justify-content: center;
  }
  .lr-block-text__image figure, .lr-block-text__image--has-caption figure, .lr-block-text__image--two-col figure {
    text-align: center;
  }
}
.lr-block-text__image--two-col figure {
  margin: 0 0 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .lr-block-text__image--two-col figure {
    width: 50%;
  }
  .lr-block-text__image--two-col figure:first-of-type {
    margin: 0 20px 0 0;
  }
}
.lr-block-text__image--has-caption figure {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}
.lr-block-text__image--has-caption img {
  grid-column: 1/span 9;
  grid-row: 1/span 1;
}
@media screen and (max-width: 992px) {
  .lr-block-text__image--has-caption img {
    grid-column: 1/span 12;
    grid-row: 2/span 1;
  }
}
.lr-block-text__image--has-caption figcaption {
  grid-column: 8/span 5;
  grid-row: 1/span 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .lr-block-text__image--has-caption figcaption {
    grid-column: 1/span 12;
    grid-row: 1/span 1;
  }
}
.lr-block-text__image--has-caption figcaption div {
  background-color: #009078;
  padding: 40px 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
}

.lr-block-link {
  padding-bottom: 50px;
}
.lr-block-link__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}
.lr-block-link .col {
  width: 33.3333333333%;
  padding: 10px;
}
.lr-block-link__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
}
.lr-block-link__item a:hover, .lr-block-link__item a:focus {
  text-decoration: none;
}
.lr-block-link__item h3 {
  font-size: clamp(11px, 1vw, 18px);
  font-weight: bold;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  padding: 25px 5px;
}
.lr-block-link__item img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lr-block-link {
    display: none;
  }
}

.lr-block-member {
  padding-bottom: 50px;
}
.lr-block-member figure {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}
.lr-block-member img {
  position: relative;
  grid-column: 8/span 5;
  grid-row: 1/span 1;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .lr-block-member img {
    grid-column: 1/span 12;
    grid-row: 2/span 1;
  }
}
.lr-block-member figcaption {
  grid-column: 1/span 8;
  grid-row: 1/span 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .lr-block-member figcaption {
    grid-column: 1/span 12;
    grid-row: 1/span 1;
  }
}
.lr-block-member figcaption div {
  background-color: #009078;
  padding: 40px 100px 40px 20px;
}
.lr-block-member figcaption div * {
  color: #fff;
}
@media screen and (max-width: 992px) {
  .lr-block-member figcaption div {
    padding: 40px 20px 40px 20px;
  }
}

/************************************************************
  * Utilities
  ************************************************************/
.lr-block-accent {
  position: relative;
  padding: 50px 0;
}
.lr-block-accent h2,
.lr-block-accent h3,
.lr-block-accent h4,
.lr-block-accent p,
.lr-block-accent a,
.lr-block-accent li {
  color: #fff;
  position: relative;
  z-index: 2;
}
.lr-block-accent:after {
  position: absolute;
  content: "";
  top: 0;
  left: -2000px;
  height: 100%;
  width: 4000px;
  background: #009078;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .is-desktop {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-mobile {
    display: none;
  }
}