/**
 * @FILE : Podcasts styles
 *
 * Styles related to podcast landing pages
 * components and common rules.
 */

/**
 * Global
 */

html {
  height: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html, body {
  position: relative;
  font-family: "Rebond Grotesque", Arial, sans-serif;
  color: #0A3A25;
}
body {
  margin: 0;
  overflow-x: hidden;
}
body * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
h1, h2, h3 {
  font-family: "Rebond Grotesque", Arial, sans-serif;
}
p {
  font-family: "EB Garamond", serif;
}
::selection {
  background-color: #0A3A25;
  color: #FFF;
}
a {
  color: #48B386;
  text-decoration: none;
}
strong {
  color: #48B386;
}
.strong-alternate {
  color: #0A3A25;
  font-weight: 800;
}


/**
 * Podcast hero
 */

.faits-dhiver-hero {
  position: relative;
  overflow-x: hidden;
  background: #F0F8F0;
}
.faits-dhiver-hero__wrapper {
  display: flex;
  flex-direction: row;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  padding: 2rem 1rem;
}
.faits-dhiver-hero__left {
  flex: 1 1 44%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faits-dhiver-hero__right img{
  width: 100%;
  display: block;
}
.faits-dhiver-hero__actions {
  display: none;
}
.faits-dhiver-hero__logo {
  display: flex;
  justify-content: center;
}
.faits-dhiver-hero__title {
  max-width: 484px;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 0 0;
}
@media screen and (min-width: 750px) {
  .faits-dhiver-hero__title {
    font-weight: 700;
    margin: 0;
  }
  .faits-dhiver-hero__left {
    max-width: 42%;
  }
  .faits-dhiver-hero__right {
    margin-left: auto;
    width: 56%;
  }
  .faits-dhiver-hero__wrapper {
    position: absolute;
    padding: 0;
  }
  .faits-dhiver-hero__actions {
    display: block;
  }
  .faits-dhiver-hero__logo {
    display: flex;
    justify-content: left;
  }
}
@media screen and (min-width: 1366px) {
  a.faits-dhiver-hero__cta {
    font-size: 1.2rem;
  }
  .faits-dhiver-hero__title {
    font-size: 2.375rem;
  }
  .faits-dhiver-hero__left {
    gap: 40px
  }
}  
.faits-dhiver-hero__cta {
  display: inline-block;
  padding: .75rem 2rem;
  font-size: 0.9rem;
  color: #FFF;
  background-color: #48B386;
  border-radius: 2rem;
  transition: all ease .15s;
}
.faits-dhiver-hero__cta:hover {
  background-color: #0A3A25;
}
.faits-dhiver-hero__cta::before {
  content: "";
  display: inline-block;
  margin-right: .5rem;
  width: 10px;
  height: 10px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(135deg) translateX(-5px);
}


/**
 * faits-dhiver episode list
 */

.faits-dhiver-list {
  position: relative;
  margin: 1.5rem 0;
}
.faits-dhiver-list::before {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -80px;
  width: 75px;
  height: 125px;
  background-image: url("/sites/default/files/images/landing-page/Créer%20Landing%20page/bg-shape-2.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media all and (min-width: 750px){
  .faits-dhiver-list {
    margin: 3rem 0;
  }
  .faits-dhiver-list::before {
    right: -20px;
  }
}
@media all and (min-width: 1000px){
  .faits-dhiver-list {
    padding-top: 1rem;
  }
  .faits-dhiver-list::before {
    right: -40px;
    bottom: -80px;
    width: 146px;
    height: 195px;
    transform: rotate(15deg);
  }
}


/**
 * faits-dhiver episode item : active
 */

.faits-dhiver-episode {
  margin: 1.5rem 0;
  overflow: hidden;
  border-radius: 3px;
}
.faits-dhiver-episode__header {
  position: relative;
  padding: 0.75rem;
  color: #FFF;
  background-color: #48B386;
  cursor: pointer;
}
.faits-dhiver-episode__header::before {
  content: "+";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  align-items: center;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1;
  border-radius: 50%;
  background-color: rgba(10,58,37,0.3);
  transition: all ease .15s;
}
.faits-dhiver-episode__header:hover::before {
  background-color: rgba(10,58,37,0.75);
}
.faits-dhiver-episode.is-open .faits-dhiver-episode__header::before {
  content: "—";
  font-size: 1.8em;
}
.faits-dhiver-episode__title {
  margin: 0;
  max-width: 177px;
  font-size: 1em;
  font-weight: 600;
}
.faits-dhiver-episode__title span {
  display: block;
  color: #0A3A25;
  font-weight: 800;
}
.faits-dhiver-episode__content-wrapper {
  transition: all ease .25s;
}
.faits-dhiver-episode__content {
  padding: 0.75rem;
  background-color: #F0F8F0;
}
.faits-dhiver-episode__quote {
  position: relative;
  padding: 0 .75rem;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 1.625em;
  text-indent: 40px;
}
.faits-dhiver-episode__quote::before,
.faits-dhiver-episode__quote::after {
  content: "";
  position: absolute;
  width: 39px;
  height: 32px;
  background-image: url("/sites/default/files/images/landing-page/Créer%20Landing%20page/quotes.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.faits-dhiver-episode__quote::before {
  top: -.5rem;
  left: 0;
}
.faits-dhiver-episode__quote::after {
  right: 0;
  bottom: -.5rem;
  transform: rotate(180deg);
}
.faits-dhiver-episode__label {
  margin-bottom: .66rem;
  font-family: "Rebond Grotesque", arial, sans-serif;
  font-size: 1.125em;
  font-weight: bold;
  color: #48B386;
}
.faits-dhiver-episode__desc {
  margin: 0 0 1.5rem;
  padding-bottom: 1.5rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(10,58,37,0.2);
}
.faits-dhiver-episode__speaker-list {
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}
.faits-dhiver-episode__speaker-item {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}
.faits-dhiver-episode__speaker-image {
  width: 75px;
  height: 75px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #0A3A25;
  background-color: #48B386;
}
.faits-dhiver-episode__speaker-text {
  width: calc(100% - 90px);
}
.faits-dhiver-episode__speaker-name,
.faits-dhiver-episode__speaker-title {
  margin: 0;
}
.faits-dhiver-episode__speaker-name {
  font-size: 1.125em;
}
.faits-dhiver-episode__speaker-title {
  font-family: "Rebond Grotesque", arial, sans-serif;
  font-weight: 400;
  font-size: .9em;
  color: #48B386;
}
@media all and (min-width: 400px){
  .faits-dhiver-episode__header,
  .faits-dhiver-episode__content {
    padding: 1.5rem;
  }
}
@media all and (min-width: 750px){
  .faits-dhiver-episode {
    max-width: 600px;
    margin: 2rem auto;
  }
  .faits-dhiver-episode__header::before {
    right: 1.5rem;
  }
  .faits-dhiver-episode__title {
    max-width: 80%;
  }
  .faits-dhiver-episode__title span {
    display: inline;
  }
}
@media all and (min-width: 1000px){
  .faits-dhiver-episode__title {
    font-size: 1.125em;
  }
}
@media all and (min-width: 1200px){
  .faits-dhiver-episode {
    max-width: 1084px;
  }
  .faits-dhiver-episode__title {
    font-size: 1.5em;
  }
  .faits-dhiver-episode__content {
    display: flex;
    display: -ms-flexbox;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 2rem 3rem;
  }
  .faits-dhiver-episode__part-1 {
    width: calc(66.666% - 1rem);
  }
  .faits-dhiver-episode__part-2 {
    width: calc(33.333% - 1rem);
  }
  .faits-dhiver-episode__quote {
    margin-top: 1rem;
    font-size: 2.33em;
  }
  .faits-dhiver-episode__quote--long {
    padding-right: 50px;
  }
  .faits-dhiver-episode__quote::before,
  .faits-dhiver-episode__quote::after {
    width: 65px;
    height: 53px;
  }
  .faits-dhiver-episode__quote::before {
    top: -1rem;
    left: -.5rem
  }
  .faits-dhiver-episode__quote::after {
    bottom: -1rem;
    right: -0.5rem;
  }
}
@media all and (min-width: 1300px){
  .faits-dhiver-episode__quote--long {
    padding-right: .75rem;
  }
}
@media all and (min-width: 1400px){
  .faits-dhiver-episode__header {
    padding: 1.5rem 2.5rem;
  }
  .faits-dhiver-episode__title {
    font-size: 1.625em;
  }
  .faits-dhiver-episode__content {
    padding: 2rem 3.5rem;
  }
  .faits-dhiver-episode__part-1 {
    width: calc(66.666% - 2rem);
  }
  .faits-dhiver-episode__part-2 {
    width: calc(33.333% - 2rem);
  }
}


/**
 * faits-dhiver episode item : inactive
 */

.faits-dhiver-episode--inactive .faits-dhiver-episode__header {
  background-color: #0A3A25;
  cursor: default;
}
.faits-dhiver-episode--inactive .faits-dhiver-episode__title {
  max-width: 230px;
}
.faits-dhiver-episode--inactive .faits-dhiver-episode__title span {
  color: #48B386;
}
.faits-dhiver-episode--inactive .faits-dhiver-episode__header::before,
.faits-dhiver-episode--inactive .faits-dhiver-episode__content {
  display: none;
}
.faits-dhiver-episode__subscription {
  display: block;
  max-width: 170px;
  margin-top: 0.5rem;
  margin-left: auto;
  text-align: right;
  font-size: 0.9em;
  text-decoration: underline;
}
.faits-dhiver-episode__subscription:hover {
  color: #FFF;
}
@media all and (min-width: 750px){
  .faits-dhiver-episode--inactive .faits-dhiver-episode__title {
    max-width: none;
  }
}
@media all and (min-width: 1200px){
  .faits-dhiver-episode--inactive .faits-dhiver-episode__header {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
  }
}


/**
  * Section content
  */
  
.section-content {
  position:relative;
}
.section-content:before {
  content: '';
  background-image: url("/sites/default/files/images/landing-page/Créer%20Landing%20page/left.svg");
  background-size: 79px 83px;
  width: 79px;
  height: 83px;
  display: block;
  z-index: -1;
  left:-20px;
  position: absolute;
  top: 212px;
}
.section-content:after {
  content: '';
  background-image: url("/sites/default/files/images/landing-page/Créer%20Landing%20page/right.svg");
  background-size: 94px 125px;
  width: 94px;
  height: 125px;
  display: block;
  z-index: -1;
  right: -63px;
  top: 26%;
  position: absolute;
}
@media screen and (min-width: 750px){
  .section-content:before {
    background-size: 157px 162px;
    width: 157px;
    height: 162px;
    left:-20px;
    top:0;
  }
  .section-content:after {
    background-size: 186px 244px;
    width: 186px;
    height: 244px;
    right: -70px;
    top: 32%;
  }
}
@media screen and (min-width: 1300px) {
  .section-content:after {
    right: -60px;
    top: 66%;
  }
}


/**
 * Related content
 */

.related-content {
  padding: 1rem;
  position: relative;
}
.related-content__title {
  font-size: 1.5em;
}
.related-content__title strong {
  color: #48B386;
}
@media all and (min-width: 500px){
  .related-content {
    margin-top: 2rem;
  }
  .related-content__title {
    max-width: 626px;
    font-size: 2em;
  }
}
@media all and (min-width: 750px){
  .related-content {
    margin-top: 4rem;
  }
  .related-content__title {
    font-size: 2.33em;
  }
}
@media all and (min-width:1300px){
  .related-content {
    margin-top: 5rem;
  }
  .related-content__title {
    font-size: 2.5em;
  }
  .related-content__wrapper {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
  }
  .related-content__product {
    width: calc(75% - 1rem);
  }
  .related-content__sidebar {
    width: calc(25% - 1rem);
  }
}
@media all and (min-width:1500px){
  .related-content {
    margin-top: 6rem;
  }
  .related-content__title {
    max-width: 616px;;
    font-size: 2.875em;
  }
}


/**
 * Product push
 */

.product-push {
  margin-bottom: 3rem;
}
.product-push__image {
  text-align: center;
}
.product-push__title {
  margin: 1em 0;
  font-size: 1.375em;
}
.product-push__feature-list {
  padding: 0;
  margin: 0;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  list-style: none;
}
.product-push__feature-item {
  width: 30%;
  text-align: center;
}
.product-push__feature-text {
  margin: .33rem 0 1rem;
  font-family: "Rebond Grotesque", arial, sans-serif;
  font-weight: 600;
}
.product-push__text {
  margin-bottom: 1.5rem;
}
.product-push__action {
  text-align: center;
}
.product-push__cta {
  display: inline-block;
  padding: .75rem 2rem;
  font-size: 1.15em;
  font-weight: 600;
  color: #FFF;
  background-color: #48B386;
  border-radius: 2rem;
  transition: all ease .15s;
  font-weight: 400;
}
.product-push__cta:hover {
  background-color: #0A3A25;
}
.product-push__legal {
  font-size: .8em;
  font-family: "Rebond Grotesque", arial, sans-serif;
  color: #48B386;
}
@media all and (min-width: 750px){
  .product-push {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
  }
  .product-push__image,
  .product-push__content {
    width: calc(50% - 1rem);
  }
  .product-push__title {
    margin-top: 0;
  }
  .product-push__action {
    text-align: left;
  }
}
@media all and (min-width: 1300px){
  .product-push__title {
    font-size: 1.625em;
  }
  .product-push__feature-list {
    max-width: 300px;
  }
  .product-push__cta {
    font-size: 1.3em;
  }
}
@media all and (min-width: 1400px){
  .product-push__title {
    font-size: 1.9em;
  }
  .product-push__text {
    font-size: 1.1em;
  }
}


/**
 * Phytoscope push
 */

.phytoscope-push {
  margin: 0 -1.5rem;
  padding: 2rem 1.5rem;
  background-color: #F0F8F0;
}
.phytoscope-push__title,
.phytoscope-push__subtitle {
  max-width: 300px;
  margin: 1em auto;
}
.phytoscope-push__title {
  font-family: "Rebond Grotesque", arial, sans-serif;
  font-weight: 800;
  color: #48B386
}
.phytoscope-push__subtitle {
  font-family: "Rebond Grotesque", arial, sans-serif;
  font-size: 1.125em;
}
.phytoscope-push__title strong {
  display: block;
  font-size: 1.5em;
}
.phytoscope-push__image {
  margin: 2rem auto;
  max-width: 250px;
}
.phytoscope-push__image img {
  width: 100%;
}
.phytoscope-push__actions {
  text-align: center;
}
.phytoscope-push__cta {
  display: inline-block;
  padding: .75rem 2rem;
  font-size: 1.15em;
  font-weight: 600;
  color: #FFF;
  background-color: #48B386;
  border-radius: 2rem;
  transition: all ease .15s;
  font-weight: 400;
}
.phytoscope-push__cta:hover {
  background-color: #0A3A25;
}
@media all and (min-width: 750px){
  .phytoscope-push {
    margin: 0;
  }
}
@media all and (min-width: 1300px){
  .phytoscope-push__title {
    font-size: 0.95em;
  }
  .phytoscope-push__subtitle {
    font-size: 1em;
  }
  .phytoscope-push__cta {
    padding: 0.75rem 1.5rem;
    font-size: 1em;
  }
}


/**
 * Social buttons
 */

.related-content__social {
  margin: 0 -1.5rem;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: "Rebond Grotesque";
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  background: #48B386;
  color: white;
}
.social-white{
  display: block;
}
.social-green{
  display: none;
}
@media screen and (min-width: 750px) {
  .related-content__social {
    background: none;
    color: #0A3A25;
    margin: 2rem 0 1rem;
  }
  .social-white{
    display: none;
  }
  .social-green{
    display: block;
  }
}


/**
 * Footer
 */

.footer {
  margin: 3rem 0;
  text-align: center;
}
.footer-brand__text {
  margin-top: 0.5rem;
  font-family: "Rebond Grotesque", arial, sans-serif;
  font-weight: 600;
}
.footer__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 105px;
  margin: 3rem auto 0;
  text-align: center;
  color: #0A3A25;
  background-image: url("/sites/default/files/images/landing-page/Créer%20Landing%20page/bg-shape-3.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.footer__link:hover {
  text-decoration: underline;
}
@media all and (min-width: 1300px){
  .footer {
    margin: 6rem 0 3rem;
  }
}
