/**

 * @file

 * Modules styles

 *

 * Modules are reusables CSS objects (components).

 * They can be utilized

 */

/*

* Field text center

*/

.text-center .layout__region {
  display: flex;

  align-items: center;
}

/**

 * Paragraph Section

 */

/* Background colors */

.section--primary {
  background-color: var(--primary-color);

  color: #fff;
}

.section--primary-light {
  background-color: var(--primary-light-color);

  color: #000;
}

.section--secondary-light {
  background-color: var(--secondary-light-color);

  color: #000;
}

/**

 * Paragraph Text

 */

.text__underline-bold {
  display: block;

  font-size: 1.25rem;

  font-weight: 700;

  margin-bottom: -20px;

  padding: 16px 0;
}

.text__underline-bold::after {
  position: absolute;

  content: "";

  height: 1px;

  bottom: 33px;

  width: 100%;

  left: 0;

  right: 0;

  background: rgba(255, 255, 255, 0.4);
}

.text__underline {
  font-weight: 700;

  display: block;
}

.text__underline::after {
  position: absolute;

  content: "";

  height: 1px;

  width: 100%;

  top: 33px;

  left: 0;

  right: 0;

  background: rgba(255, 255, 255, 0.2);
}

.text__grey {
  color: var(--grey-color);
}

/* CTA */

.cta {
  font-weight: 700;

  border-radius: 50px;

  text-align: center;

  padding: 0.5rem 1rem;

  margin: 0 auto;

  transition: 0.25s;
}

.cta--green {
  background-color: var(--cta-color);

  color: #fff;

  border: 2px solid var(--cta-color);
}

.cta--green:hover {
  opacity: 0.8;
}

.cta--alternate {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.cta--alternate:hover {
  color: #fff;
  background-color: var(--primary-color);
}

/* Les entités du Groupe  */

.text__bold-entity {
  /* font-size: 1.25rem; */

  font-weight: 700;

  color: #000;

  margin-bottom: 100px;
}

.text__aboveline {
  position: relative;

  padding: 0 18px;

  margin-top: 25px;
}

.text__aboveline::before {
  position: absolute;

  content: "";

  height: 1px;

  top: -13px;

  width: 100%;

  left: 0;

  right: 0;

  background: #d1d1d1;
}

.link__arrow {
  position: relative;

  color: #3a3a3a;

  font-weight: 400;

  display: inline-block;

  position: relative;

  z-index: 1;

  padding-right: 4rem;

  margin-right: -4rem;
}

.link__arrow:hover::after {
  width: 19px;

  height: 15px;

  transition-duration: 120ms;
}

.link__arrow::after {
  content: "";

  position: absolute;

  transform: translate(-50%, -50%);

  right: 0;

  top: 50%;

  width: 16px;

  height: 13px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../images/arrow-right-bold.svg");
}

.icon-left {
  position: relative;

  margin-left: 85px;
}

.icon-left::before {
  position: absolute;

  content: "";

  display: block;

  top: 0%;

  left: -85px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;
}

.icon-left--ecorce::before {
  background-image: url("../images/icon-ecorce.svg");

  width: 74px;

  height: 43px;
}

.icon-left--liqueur::before {
  background-image: url("../images/icon-liqueur.svg");

  width: 85px;

  height: 85px;
}

.icon-left--cogeneration::before {
  background-image: url("../images/icon-cogeneration.svg");

  width: 68px;

  height: 72px;
}

.icon-left--redistribution::before {
  background-image: url("../images/icon-redistribution.svg");

  width: 61px;

  height: 60px;
}

.icon-recyclage {
  position: relative;
}

.icon-recyclage::before {
  content: url(../images/icon-recyclage.svg);

  display: block;
}

/**

 * Paragraph - Image

 */

.paragraph--type--image {
  margin-top: 1rem;

  text-align: center;
}

/* @media (min-width: 700px){

  .paragraph--type--image{

    text-align: inherit;

   }

} */

/**

 * Paragraph - Cover

 */

.cover__image {
  position: relative;

  text-align: center;
}
.cover__image-career {
  height: 254px;
  overflow: hidden;
}

/* .cover__image img{

  height: 457px;

  width: 425px;

 } */

.cover__title {
  position: absolute;

  left: 50%;

  top: 35%;

  color: #fff;

  width: 100%;

  padding: 1rem 2rem;

  max-width: 1092px;

  font-size: 1.875rem;

  /* text-shadow: 0px 3px 6px rgb(0 0 0 / 16%); */

  font-weight: 700;

  line-height: 1.3em;

  transform: translateY(-50%) translateX(-50%);

  -webkit-transform: translateY(-50%) translateX(-50%);

  -moz-transform: translateY(-50%) translateX(-50%);

  -ms-transform: translateY(-50%) translateX(-50%);

  -o-transform: translateY(-50%) translateX(-50%);

  text-align: left;
}

/* @media (min-width: 768px){

  .cover__image img{

    height: 450px;

    width: 768px;

   }

} */

@media (min-width: 1000px) {
  .cover__title {
    font-size: 2.8rem;
  }
}

/* @media (min-width: 1024px){

  .cover__image img{

    height: 540px;

    width: 1920px;

   }

} */

@media (min-width: 1200px) {
  .cover__title {
    font-size: 3.125rem;

    left: 45.5%;
  }
}

/**

*  Paragraph - Icon

**/

/* Background icon colors */

.icon--primary {
  background-color: var(--primary-color);

  color: #fff;
}

.icon--primary-light {
  background-color: var(--primary-light-color);

  color: #000;
}

.icon--secondary-light {
  background-color: var(--secondary-light-color);

  color: #000;
}

.icon__wrapper {
  text-align: center;

  height: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  /* justify-content: center; */

  margin: 1rem;
}

.icon__image {
  padding: 1rem;
}

.icon__title {
  font-weight: 700;

  font-size: 1.438rem;

  line-height: 100%;

  max-width: 240px;
}

.icon__text {
  font-weight: 400;

  padding: 0 1rem;
}

@media (min-width: 640px) {
  .icon__wrapper {
    margin: 0 0.4rem;
  }

  .grid-row--6 .icon__wrapper {
    margin: 0 0.4rem 0 0;
  }
}

@media (min-width: 1200px) {
  .icon__wrapper {
    margin: 0 0.8rem;
  }

  .grid-row--6 .icon__wrapper {
    margin: 0 0.8rem 0 0;
  }
}

/**

*  Paragraph - Card

**/

/* Background colors */

.card {
  position: relative;

  height: 100%;

  margin-top: 1rem;
}

.card__wrapper {
  position: relative;

  border-radius: 3px;

  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);

  margin-bottom: 2rem;

  height: 100%;

  min-width: 300px;

  max-width: 380px;

  margin: 0 auto;
}

.card__wrapper-white {
  background-color: #fff;

  color: var(--secondary-color);
}

.layout--twocol-section .card__wrapper-white {
  margin: 0 auto;
}

.card__wrapper--primary {
  background-color: var(--primary-color);

  color: #fff;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;
}

.card__wrapper--primary-light {
  background-color: var(--primary-light-color);

  color: var(--secondary-color);

  box-shadow: none;
}

.card__wrapper--secondary-light {
  background-color: var(--secondary-light-color);

  color: var(--secondary-color);
}

.card--primary h2 {
  padding: 2rem 0;

  margin: 0;
}

.card--primary h3 {
  padding: 2rem 0;

  margin: 0;
}

.card-picto-item {
  position: relative;

  margin-left: 55px;
}

.card-picto-item::before {
  position: absolute;

  content: "";

  display: block;

  height: 38px;

  width: 38px;

  top: 25%;

  left: -50px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;
}

.card-picto-item--paper::before {
  background-image: url("../images/icon-paper.svg");
}

.card-picto-item--fiber::before {
  background-image: url("../images/icon-fiber.svg");
}

.card__content {
  padding: 0.5rem 1rem;
}

.card__title {
  margin-top: 2.5rem;

  font-size: 1.5rem;

  font-weight: 700;
}

.card__text {
  font-weight: 500;
}

.card__image img {
  width: 100%;
}

.card__wrapper--primary .card__image {
  padding: 3rem 0rem 0.5rem 0rem;

  text-align: center;
}

.card__wrapper--primary-light .card__image img {
  background-color: white;
}

.card__file {
  margin: 2rem auto;

  text-align: center;

  font-size: 0.7rem;
}

.card__file a {
  font-weight: 700;

  border-radius: 50px;

  text-align: center;

  padding: 0.5rem 1.5rem 0.5rem 3rem;

  margin: 0 auto;

  transition: 0.25s;

  background-color: var(--cta-color);

  color: #fff;

  border: 2px solid var(--cta-color);

  position: relative;
}

.card__file a:hover {
  opacity: 0.8;
}

.card__file a::before {
  position: absolute;

  content: "";

  background-image: url("../images/download-cta.svg");

  display: block;

  height: 20px;

  width: 20px;

  top: 7px;

  left: 20px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;
}

.card__file .field__item {
  margin: 2rem 0;
}

@media (min-width: 500px) {
  .card__wrapper {
    min-width: 350px;
  }
}

@media (min-width: 1000px) {
  .card__wrapper {
    /* margin: 1rem; */

    min-width: inherit;
  }

  .card__wrapper-white {
    margin: 0 0.5rem;
  }
}

@media (min-width: 1200px) {
  /* .card__wrapper {

    margin-left: 0.5rem;

    margin-right: 0.5rem;

  } */

  .card__content {
    padding: 0.5rem 1.5rem;
  }

  .card__file {
    margin: 2rem auto;

    text-align: center;

    font-size: 0.875rem;
  }
}

/**

*  Custom text - Nos engagements clients

**/

.commitments-picto-item {
  position: relative;

  margin-left: 90px;
}

.commitments-picto-item::before {
  position: absolute;

  content: "";

  display: block;

  height: 55px;

  width: 55px;

  /* top: 25%; */

  left: -85px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;
}

.commitments-picto-item--reactivite::before {
  background-image: url("../images/icon-reactivite.svg");
}

.commitments-picto-item--efficacite::before {
  background-image: url("../images/icon-efficacite.svg");
}

.commitments-picto-item--stock::before {
  background-image: url("../images/icon-stock.svg");
}

.commitments-picto-item--process::before {
  background-image: url("../images/icon-process.svg");
}

.commitments-picto-item--support::before {
  background-image: url("../images/icon-support.svg.svg");
}

/* .text__underline{

  font-weight: 700;

  display: block;

} */

/* .commitments-picto-item {

  position: relative;

  margin-left: 55px;

} */

/* .commitments-picto-item::after{

  position: absolute;

  content: '';

  height: 1px;

  bottom: 36px;

  width: 100%;

  left: 0;

  right: 0;

  background: rgba(255, 255, 255, 0.4);

} */

/**

*  Paragraph Slide

**/

.slide__wrapper {
  max-width: 230px;

  margin: 0 auto;

  text-align: center;

  display: flex;

  flex-direction: column;
}

.slide__text h3,
.slide__text p {
  margin: 0;
}

@media (min-width: 813px) {
  .slide__wrapper {
    max-width: inherit;

    margin: 0 8rem;

    text-align: inherit;

    flex-direction: row;
  }

  .slide__image {
    width: 30%;

    display: flex;

    justify-content: center;

    align-items: center;
  }

  .slide__text {
    width: 70%;
  }
}

/**

*  Block News Homepage

**/

.block-actu-list {
  list-style: none;

  padding: 0;
}

.block-actu-list li {
  padding: 1rem 0;
}

/**

*  News Page

**/

.actu-list {
  list-style: none;

  padding: 0;
}

.node--view-mode-teaser .news-teaser__wrapper {
  padding: 0 2rem 2rem 2rem;

  color: var(--secondary-color);
}

.node--type-article .news-teaser__title {
  font-weight: 700;

  font-size: 1.5rem;

  margin: 0;

  line-height: 1;
}

.view-display-id-page_1 > .view-content {
  display: flex;

  flex-direction: row;

  flex-wrap: wrap;
}

.node--view-mode-teaser .news-teaser__date {
  color: var(--grey-color);

  margin: 0;

  font-size: 0.875rem;

  padding: 1rem 0;
}

.view-actualites .node--view-mode-teaser {
  position: relative;

  background-color: white;

  border-radius: 3px;

  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);

  margin-bottom: 2rem;

  transition: 0.3s;

  height: 100%;

  max-width: 380px;

  margin: 0 auto;
}

.view-actualites .node--view-mode-teaser:hover {
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.3);

  transform: translateY(-5px);

  -webkit-transform: translateY(-5px);

  -moz-transform: translateY(-5px);

  -ms-transform: translateY(-5px);

  -o-transform: translateY(-5px);
}

.node--view-mode-teaser .news__link {
  display: inline-block;

  height: 100%;
}

.node--view-mode-teaser .news__cta {
  background-color: var(--cta-color);

  color: #fff;

  border: 2px solid var(--cta-color);

  font-size: 0.875rem;

  font-weight: 700;

  padding: 0.5rem 1.4rem;

  border-radius: 25px;

  transition: 0.3s;

  width: 120px;

  height: 40px;

  margin: 5px 0;
}

.node--view-mode-teaser:hover .news__cta {
  opacity: 0.8;
}

.block-actu-list p,
.actu-list p {
  font-size: 16px;
}

/**

*  Mobile

**/

@media (max-width: 812px) {
  .node--view-mode-teaser .node__content > a {
    font-size: 12px;
  }

  .view-actualites .views-row {
    margin-bottom: 3rem;
  }

  .node--view-mode-teaser .field--type-text-with-summary p {
    padding-bottom: 1rem;
  }
}

/**

*  Desktop

**/

@media (min-width: 813px) {
  .view-display-id-page_1 > .view-content .views-row {
    flex: 1 1 33%;
  }

  .view-display-id-page_1 .views-row {
    margin-bottom: 3rem;
  }

  .view-display-id-page_1 .views-row {
    max-width: 33.3%;
  }

  .actu-list {
    margin-top: 4rem;
  }
}

/* Paging bloc News view */

.view-actualites .pager__item a {
  color: var(--secondary-color);

  display: inline-block;

  height: 100%;
}

.view-actualites .pager__item {
  border: 1px solid grey;

  padding: 0.3rem 0.5rem;

  margin: 0.5rem;
}

.view-actualites .pager__items {
  padding-left: 0;
}

.view-actualites .pager__item--first,
.view-actualites .pager__item--previous,
.view-actualites .pager__item--next,
.view-actualites .pager__item--last {
  display: none;
}

.actu-home-title {
  display: none;
}

@media (min-width: 1200px) {
  .actu-home-title {
    display: none;
  }
}

/**

*  Article full page

**/

.article__title {
  position: absolute;

  font-size: 1.875rem;

  font-weight: 700;

  color: #fff;

  left: 45.5%;

  top: 25%;

  width: 100%;

  padding: 1rem 2rem;

  max-width: 1092px;

  line-height: 1.3em;

  transform: translateY(-50%) translateX(-50%);

  -webkit-transform: translateY(-50%) translateX(-50%);

  -moz-transform: translateY(-50%) translateX(-50%);

  -ms-transform: translateY(-50%) translateX(-50%);

  -o-transform: translateY(-50%) translateX(-50%);

  text-align: left;
}

.article__links-item .field__items {
  display: flex;

  flex-direction: column;
}

@media (min-width: 772px) {
  .article__title {
    top: 0%;
  }

  .article__links-item .field__items {
    display: flex;

    flex-direction: row;
  }

  .article__links-item .field__items .field__item {
    margin-right: 1rem;
  }
}

@media (min-width: 1000px) {
  .article__title {
    font-size: 2.8rem;
  }
}

@media (min-width: 1200px) {
  .article__title {
    font-size: 3.125rem;

    top: 15%;
  }
}

/**

*  Poste teaser

**/

.view-carriere .node--view-mode-teaser {
  position: relative;

  background-color: white;

  border-radius: 3px;

  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);

  margin-bottom: 2rem;

  transition: 0.3s;

  height: 100%;

  max-width: 380px;

  margin: 0 auto;
}

.view-carriere .node--view-mode-teaser:hover {
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.3);

  transform: translateY(-5px);

  -webkit-transform: translateY(-5px);

  -moz-transform: translateY(-5px);

  -ms-transform: translateY(-5px);

  -o-transform: translateY(-5px);
}

.node--view-mode-teaser .poste__link {
  display: inline-block;

  height: 100%;
}

.node--view-mode-teaser .poste-teaser__wrapper {
  padding: 0 2rem 2rem 2rem;

  color: var(--secondary-color);
}

.node--view-mode-teaser .poste-teaser__date {
  color: var(--grey-color);

  margin: 0;

  font-size: 0.875rem;

  padding: 1rem 0;
}

.node--view-mode-teaser .poste-teaser__title {
  font-size: 1.5rem;

  font-weight: 600;

  margin: 0;

  line-height: 1;
}

/**

*  Poste full page

**/

.poste__title {
  text-align: center;
}

/* Paging Poste full page */

.view-carriere .pager__item a {
  color: var(--secondary-color);

  display: inline-block;

  height: 100%;
}

.view-carriere .pager__item {
  border: 1px solid grey;

  padding: 0.3rem 0.5rem;

  margin: 0.5rem;
}

.view-carriere .pager__items {
  padding-left: 0;
}

.view-carriere .pager__item--first,
.view-carriere .pager__item--previous,
.view-carriere .pager__item--next,
.view-carriere .pager__item--last {
  display: none;
}

/*



------------------------------------------------------------------------

  __  __  _

 |  \/  |(_) ___   ___

 | |\/| || |/ __| / __|

 | |  | || |\__ \| (__

 |_|  |_||_||___/ \___|



 -----------------------------------------------------------------------



 */

.file--application-pdf {
  background-image: none;
}

/**

*  Breadcrumb

**/

.breadcrumb {
  display: inline;
}

.breadcrumb__wrapper {
  background-color: #fff;

  height: 68px;

  position: relative;

  margin-top: -75px;
}
.node--type-job .breadcrumb__wrapper {
  margin-top: -68px;
}

.breadcrumb__link::before {
  position: absolute;

  content: url("../images/arrow-breadcrumb.svg");

  top: 50;

  background-color: #2e664b;

  width: 68px;

  height: 68px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.breadcrumb a {
  /* margin-left: 80px; */
}

.content__breadcrumbs-base-page .breadcrumb a {
  margin-left: 0;
}

.breadcrumb,
.breadcrumb a {
  font-family: "Poppins", sans-serif;

  color: #8e8e8e;

  font-size: 0.7rem;

  font-weight: 300;

  /* padding-left: 10px; */
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb__content {
  margin-left: 75px;

  padding-top: 25px;
}

@media (min-width: 500px) {
  .breadcrumb,
  .breadcrumb a {
    font-size: 0.875rem;
  }
}

@media (min-width: 1000px) {
  /* .breadcrumb{

    display: inline;

  } */

  .breadcrumb__wrapper {
    max-width: 1200px;

    display: block;

    margin-left: auto;

    margin-right: auto;
  }

  .breadcrumb__content {
    margin-left: inherit;
  }

  /* .breadcrumb a{

    margin-left: 200px;

  }

  .content__breadcrumbs-base-page .breadcrumb a{

    margin-left: 0;

  } */
}

/**

 * TNS slider

 */

.tns-controls button {
  font-weight: bold;

  font-size: 1.2em;

  color: #fff;

  background: rgba(0, 0, 0, 0.25);

  border: none;
}

.tns-nav button {
  display: inline-block;

  margin: 0 2px;

  height: 12px;

  width: 12px;

  background: rgba(0, 0, 0, 0.25);

  border-radius: 50%;

  border: none;
}

/**

 * TNS slider GLOBAL

 */

.tns-controls,
.tns-nav {
  text-align: center;
}

.tns-controls button {
  font-weight: bold;

  font-size: 1.2em;

  color: #fff;

  background: rgba(0, 0, 0, 0.25);

  border: none;
}

.process-slider {
  position: relative;
}

.slider__wrapper {
  position: relative;
}

.sliderPrev,
.sliderNext {
  /* background: #C4C4C4; */

  position: absolute;

  height: 17px;

  width: 17px;

  top: calc(50% - 2.2rem);

  border-top: 1px solid #000000;
}

.sliderPrev:hover,
.sliderNext:hover {
  cursor: pointer;

  border-width: 4px;
}

.sliderPrev {
  border-left: 1px solid #000000;

  transform: rotate(-45deg);

  left: 2rem;
}

.sliderNext {
  border-right: 1px solid #000000;

  transform: rotate(45deg);

  margin-left: auto;

  right: 2rem;
}

/*

* Cookies module custom colors

*/

/* Small banner */

.cookiesjsr-banner,
.cookiesjsr-btn {
  background-color: #2e664b;
}

.cookiesjsr-btn.important {
  color: #2e664b;
}

/* Popin */

.cookiesjsr-service-group.active .cookiesjsr-service-group--content,
.cookiesjsr-service-group.active .cookiesjsr-service-group--tab {
  background-color: #2e664b;
}

.cookiesjsr-btn.invert {
  border-color: #2e664b;

  color: #2e664b;
}

.cookiesjsr-btn.important.invert {
  border-color: #2e664b;

  background-color: #2e664b;
}

.cookiesjsr-service--always-on span {
  padding: 0.5rem 1rem;

  border: 2px solid #fff;

  font-weight: 700;
}

/**

 * Paragraph - Video

 */

.paragraph--type--video {
  margin-top: 1rem;

  text-align: center;
}

/* popup video */

.popup {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.5);

  display: none;

  justify-content: center;

  align-items: center;

  z-index: 99;

  overflow: hidden;
}

.popup.active {
  display: flex;
}

.popup-content {
  position: relative;

  max-width: 1100px;

  max-height: 80vh;

  width: 90%;

  background-color: transparent;

  border-radius: 10px;

  /* padding: 20px; */

  text-align: center;

  overflow: hidden;
}

.video-container {
  position: relative;

  padding-bottom: 56.25%;

  height: 0;

  overflow: hidden;

  border-radius: 10px;

  max-width: 100%;
}

.video-container video {
  height: 100%;

  width: 100%;

  height: 100%;

  border-radius: 10px;
}

.popup-trigger {
  position: relative;
}

.popup-trigger::before {
  content: url("../images/play-video.svg");

  position: absolute;

  top: 50%;

  transform: translate(-50%, -50%);
}

.close-popup {
  content: url(../images/close-popup.svg);

  position: relative;

  display: inline-block;

  top: 55px;

  z-index: 999;
}

@media (min-width: 1000px) {
  .close-popup {
    content: url(../images/close-popup.svg);

    position: relative;

    display: block;

    align-items: stretch;

    top: 55px;

    z-index: 999;

    padding: 0rem;

    left: 95%;
  }

  .popup-content {
    padding-right: 3rem;
  }
}

/**

 * Paragraph - Plan

 */

.section--class--grid .layout__region {
  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  height: 100%;
}

.plan__wrapper {
  background-color: var(--secondary-light-color);

  padding: 1rem 1.5rem;

  max-width: 275px;

  width: 275px;

  margin: 1.5rem;

  border-radius: 5px;

  align-items: center;

  height: 100%;
}

.plan__arrow {
  position: relative;

  font-style: normal;

  font-weight: 700;

  line-height: 150%;

  text-align: center;

  align-items: center;
}

.plan__arrow::after {
  content: url(../images/green-arrow.svg);

  display: inline-block;

  transform: rotate(90deg);

  margin-top: 0.5rem;
}

@media (min-width: 1000px) {
  .section--class--grid .layout__region :nth-child(2n) {
    align-self: center;
  }

  .paragraph--type--plan {
    align-self: stretch;

    /* margin: 1.5rem 0; */

    margin-bottom: 3rem;
  }

  .section--class--grid .layout__region {
    flex-direction: row;
  }

  .plan__arrow::after {
    content: url(../images/green-arrow.svg);

    display: inline-block;

    transform: none;

    margin-top: none;
  }

  .plan__wrapper {
    width: inherit;

    margin: inherit;
  }
}

@media (min-width: 1200px) {
  .plan__wrapper {
    width: 275px;

    margin-bottom: 0;
  }
}

/**
 * Job cover
 */

.cover__image-job {
  height: 254px;
}

/**
 * Job intro and outro
 */

.job-intro,
.job-outro {
  padding: 18px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: var(--secondary-light-color)
}
.job-outro {
  margin-bottom: 1rem;
}
.job-intro__datas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.job-intro__tags {
  display: inline-block;
  margin-right: .5rem;
}
.job-intro__location {
  display: inline-flex;
  padding: 2px 0;
}
.job-intro__location::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon-poi.svg");
  background-size: contain;
}
.job-intro__company {
  margin-top: .5rem;
  width: 100%;
}
.job-intro__actions {
  margin-top: 2rem;
}
@media all and (min-width: 750px) {
  .job-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .job-outro {
    padding: 36px 0;
    margin: 2rem 0;
  }
  .job-intro__actions {
    margin-top: 0;
  }
}


/**
 * Job teaser
 */

.job-row {
  padding: 18px;
  margin-bottom: 1rem;
  border: 1px solid var(--secondary-light-color);
  background-color: #fff;
  border-radius: 3px;
}
.job-row__title {
  margin: 0 auto 1rem;
  font-size: 24px;
}
.job-row__title-link {
  color: var(--secondary-color);
}
.job-row__datas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.job-row__tags {
  display: inline-block;
  margin-right: .5rem;
}
.job-row__location {
  display: inline-flex;
  padding: 2px 0;
}
.job-row__location::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon-poi.svg");
  background-size: contain;
}
.job-row__company {
  margin-top: .5rem;
  width: 100%;
}
.job-row__actions {
  margin-top: 2rem;
}
@media all and (min-width: 750px) {
  .job-row {
    padding: 18px 32px;
    margin-bottom: 2rem;
  }
  .job-row__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .job-row__actions {
    margin-top: 0;
  }
}


/**
 * Job list filters
 */

.job-list .view-filters {
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--secondary-light-color);
  border-radius: 3px;
}
.job-list .view-filters label {
  display: block;
  margin-bottom: 0.5rem;
}
.job-list .view-filters select {
  padding: 0.5rem;
  border: 1px solid var(--grey-color);
}
@media all and (min-width: 1000px) {
  .job-list .view-filters {
    padding: 0.5rem 2rem;
    margin-bottom: 2rem;
  }
  .job-list .form-item  {
    margin-right: 2rem;
  }
  .job-list .view-filters label {
    display: inline-block;
  }
}


/**
 * Latest jobs
 */

.job-latest .job-row {
  margin-bottom: 1rem;
  border: none;
  background-color: var(--primary-light-color);
}
.job-latest .job-row__title {
  font-size: 20px;
}
.block-views-blockoffres-emploi-block-3 > p {
  font-weight: bold;
  font-size: 24px;
}
@media all and (min-width: 1200px){
  .job-latest {
    padding-right: 1rem;
  }
  .job-latest .job-row__wrapper {
    display: block;
  }
  .job-latest .job-row__actions {
    margin-top: 1rem;
  }
  .job-latest .job-row__company {
    margin-top: 0.1rem;
  }
}


/**
 * Job tag
 */

 .job-tag {
  display: inline-block;
  padding: 2px 4px;
  background-color: var(--primary-light-color);
  color: var(--secondary-color);
  border-radius: 2px;
}
.job-latest .job-tag {
  background-color: var(--primary-color);
  color: #fff;
}

/**
 * Job cross content
 */

.job-cross-content {
  padding: 1rem;
  background-color: var(--secondary-light-color);
}
.job-cross-content > p {
  font-weight: bold;
  font-size: 1.5rem;
}
@media all and (min-width: 1000px){
  .job-cross-content .job-list,
  .job-cross-content > p {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
  }
  .job-cross-content > p {
    margin: 2rem auto;
  }
}


/**
 * Meeting with
 */

.meeting__container {
  max-width: 420px;
  margin: 0 auto;
}
.meeting__header {
  color: var(--primary-light-color)
}
.meeting__persona {
  max-width: 200px;
  margin: 0 auto;
}
.meeting__persona-image {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  overflow: hidden;
}
.meeting__secondary-block {
  padding: 1rem;
  background-color: #fff;
  color: var(--secondary-color);
}
@media all and (min-width: 750px){
  .meeting__container {
    max-width: 620px;
  }
  .meeting__header {
    margin-bottom: 1rem;
  }
  .meeting__main {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto auto;
  }
  .meeting__secondary-block {
    grid-column-start: 1;
    grid-column-end: 3;
    display: grid;
    grid-template-columns: 200px auto;
    grid-column-gap: 1.5rem;
  }
  .meeting__secondary-block.no-image {
    display: flex;
  }
  .meeting__secondary-text p {
    margin: 0;
  }
  .meeting__persona {
    max-width: none;
  }
  .meeting__persona-info {
    font-size: 0.9em;
  }
}
@media all and (min-width: 1300px){
  .meeting__container {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 1.5rem;
  }
  .meeting__header {
    grid-column-start: 1;
    grid-column-end: 13;
  }
  .meeting__content {
    grid-column-start: 1;
    grid-column-end: 9;
  }
  .meeting__secondary-block {
    grid-column-start: 2;
  }
  .meeting__persona {
    grid-row-start: 1;
    grid-row-end: 3;
  }
}

/**
 * Meeting : Info blocks
 */

.meeting__info-blocks {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.meeting__info-block-1,
.meeting__info-block-2 {
  max-width: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - .75rem);
  padding: 0.5rem;
  text-align: center;
  font-size: 0.9em;
  color: var(--secondary-color)
}
.meeting__info-block-1,
.meeting__info-block-3 {
  background-color: var(--primary-light-color);
}
.meeting__info-block-2 {
  background-color: var(--secondary-light-color);
}
.meeting__info-block-3 {
  margin-top: 1.5rem;
  padding: 0.5rem;
  color: var(--secondary-color)
}
@media all and (min-width: 750px){
  .meeting__info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1.5rem;
  }
  .meeting__info-block-3 {
    margin-top: 0;
  }
  .meeting__info-block-1,
  .meeting__info-block-2,
  .meeting__info-block-3 {
    width: auto;
    max-width: none;
  }
}
@media all and (min-width: 1500px){
  .meeting__info-blocks {
    grid-template-columns: repeat(8, 1fr);
  }
  .meeting__info-block-1 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .meeting__info-block-2 {
    grid-column-start: 3;
    grid-column-end: 5;
  }
  .meeting__info-block-3 {
    grid-column-start: 5;
    grid-column-end: 9;
  }
}

/**
 * Meeting Sidebar
 */

@media all and (min-width: 750px){
  .meeting__sidebar {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-column-gap: 1.5rem;
  }
  .meeting__sidebar .paragraph--type--video {
    margin-top: 0;
  }
}
@media all and (min-width: 1300px){
  .meeting__sidebar {
    grid-column-start: 9;
    grid-column-end: 13;
    display: flex;
    flex-direction: column;
  }
  .meeting__sidebar .paragraph--type--video {
    margin-top: 1.5rem;
  }
}


/**
 * Meeting with alternate color
 */

.meeting--right-grey-background .meeting__header {
  color: var(--primary-color);
}
.meeting--right-grey-background .meeting__info-block-1,
.meeting--right-grey-background .meeting__info-block-3 {
  background-color: var(--primary-color);
  color: #fff;
}
.meeting--right-grey-background .meeting__info-block-2 {
  background-color: #fff;
}
@media all and (min-width: 1300px){
  .meeting--right-grey-background .meeting__header {
    grid-column-start: 5;
    grid-column-end: 13;
    order: 0;
  }
  .meeting--right-grey-background .meeting__content {
    grid-column-start: 5;
    grid-column-end: 13;
    order: 2;
  }
  .meeting--right-grey-background .meeting__sidebar {
    grid-column-start: 1;
    grid-column-end: 5;
    order: 1;
  }
}


/**
 * Fake tags
 */

.fake-tag {
  display: inline-block;
  padding: 4px 8px;
  margin-bottom: 4px;
  background-color: var(--primary-color);
  color: #fff;
}
.meeting--right-grey-background .fake-tag {
  background-color: var(--primary-light-color);
  color: var(--secondary-color)
}


/**
 * Block : find us
 */

.find-us {
  display: flex;
  padding: 0.5rem;
  background-color: var(--secondary-light-color);
  align-items: center;
  border-radius: 3px;
}
@media all and (min-width: 1000px){
  .find-us {
    padding: 0.5rem 1rem;
  }
  .find-us strong {
    font-size: 1.1em;
  }
  .find-us img {
    margin-left: 1rem;
  }
}