﻿/*!
 * Project_Name: Science Labs
 * Author: Themezy
 * Email: contact@themezy.com
 * Url: http://www.themezy.com
 */
/*=========================================== 
 * Importing CSS Libraries
 *===========================================*/
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');

@font-face {
  font-family: "Navine Demos";
  src: url("fonts/NavineDemo-SemiCondensed.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* 
 * NOTE POUR DEBUTANT(E) :
 * Les ~200 premières lignes sont un "reset/normalize".
 * Objectif : éviter que chaque navigateur applique des styles différents.
 * En général, tu les modifies rarement, sauf besoin très précis.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

audio,
canvas,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

html,
button,
input,
select,
textarea {
  font-family: sans-serif; }

body {
  margin: 0; }

a {
  background: transparent; }
  a:focus {
    outline: thin dotted; }
  a:hover, a:active {
    outline: 0; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

h2 {
  font-size: 1.5em;
  margin: 0.83em 0; }

h3 {
  font-size: 1.17em;
  margin: 1em 0; }

h4 {
  font-size: 1em;
  margin: 1.33em 0; }

h5 {
  font-size: 0.83em;
  margin: 1.67em 0; }

h6 {
  font-size: 0.75em;
  margin: 2.33em 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

q:before,
q:after {
  content: '';
  content: none; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0;
  white-space: normal; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline; }

button,
input {
  line-height: normal; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
input[disabled] {
  cursor: default; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

*, *:before, *:after {
  box-sizing: border-box; }
/* `box-sizing: border-box` = padding + border inclus dans la largeur/hauteur. */

/*
 * Global Styles
 */
/* 
 * Ici : styles généraux du site (couleurs, typographie, espacements globaux).
 */
html {
  font-size: 15px; } /* Taille de base du texte (1rem = 15px) */

body {
  color: #6f7d86;
  font-family: "Roboto", "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  padding-top: 62px;
  background: #ffffff; } /* Fond de page blanc */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin: 0 0 20px;
  line-height: normal; }

hr {
  border: none;
  border-bottom: 1px solid #777; }

ul, ol {
  margin: 0;
  padding-left: 0; }

a {
  text-decoration: none;
  color: #2ba79d; } /* Couleur des liens */

address {
  font-style: normal; }

p {
  margin-top: 0; }

form input, form textarea, form select {
  outline: none;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px; } /* Coins arrondis sur les champs */
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; } /* Uniformise l'apparence du menu déroulant */
form textarea {
  resize: vertical; } /* Autorise le redimensionnement seulement en hauteur */
form input[type="submit"], form button, form input[type="reset"] {
  border: none;
  background-color: #2ba79d; } /* Couleur de fond des boutons de formulaire */

/*
 * Reusable Components Style
 */
/* 
 * Composants réutilisables : boutons, grille, helpers responsive, etc.
 * Modifier ici impacte potentiellement plusieurs pages d'un coup.
 */
.button, form input[type="submit"], form button, form input[type="reset"] {
  background: #eef3f6;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  color: #95a2aa;
  -webkit-transition: .3s ease;
          transition: .3s ease; } /* Transition douce au survol */
  .button.back, form input.back[type="submit"], form button.back, form input.back[type="reset"] {
    margin-bottom: 30px; }
  .button img, form input[type="submit"] img, form button img, form input[type="reset"] img {
    margin-right: 10px; }
  .button:hover, form input[type="submit"]:hover, form button:hover, form input[type="reset"]:hover {
    background: linear-gradient(90deg, #8378AF 0%, #7b73ae 24%, #6f74af 44%, #6177b1 62%, #547cb3 80%, #4281B4 100%);
    box-shadow: inset 0 0 0 transparent;
    color: #ffffff; }
  .button:active, form input[type="submit"]:active, form button:active, form input[type="reset"]:active,
  .button:focus, form input[type="submit"]:focus, form button:focus, form input[type="reset"]:focus {
    background: linear-gradient(90deg, #8378AF 0%, #7b73ae 24%, #6f74af 44%, #6177b1 62%, #547cb3 80%, #4281B4 100%);
    color: #ffffff; }
  .button.white, form input.white[type="submit"], form button.white, form input.white[type="reset"] {
    background: white; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  *zoom: 1; } /* Conteneur centré avec marges internes */
  .container:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } } /* Tablettes */
  @media (min-width: 992px) {
    .container {
      width: min(92vw, 1200px); } } /* Laptops */
  @media (min-width: 1200px) {
    .container {
      width: min(92vw, 1440px); } } /* Grands écrans */
  @media (min-width: 1600px) {
    .container {
      width: min(90vw, 1640px); } } /* Très grands écrans */

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  *zoom: 1; }
  .container-fluid:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }

.row {
  margin-left: -15px;
  margin-right: -15px;
  *zoom: 1; } /* Ligne de grille */
  .row:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; } /* Colonnes côte à côte */

.col-xs-1 {
  width: 8.3333333333%; }

.col-xs-2 {
  width: 16.6666666667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.3333333333%; }

.col-xs-5 {
  width: 41.6666666667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.3333333333%; }

.col-xs-8 {
  width: 66.6666666667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.3333333333%; }

.col-xs-11 {
  width: 91.6666666667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.3333333333%; }

.col-xs-pull-2 {
  right: 16.6666666667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.3333333333%; }

.col-xs-pull-5 {
  right: 41.6666666667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.3333333333%; }

.col-xs-pull-8 {
  right: 66.6666666667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.3333333333%; }

.col-xs-pull-11 {
  right: 91.6666666667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.3333333333%; }

.col-xs-push-2 {
  left: 16.6666666667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.3333333333%; }

.col-xs-push-5 {
  left: 41.6666666667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.3333333333%; }

.col-xs-push-8 {
  left: 66.6666666667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.3333333333%; }

.col-xs-push-11 {
  left: 91.6666666667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.3333333333%; }

.col-xs-offset-2 {
  margin-left: 16.6666666667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.3333333333%; }

.col-xs-offset-5 {
  margin-left: 41.6666666667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.3333333333%; }

.col-xs-offset-8 {
  margin-left: 66.6666666667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.3333333333%; }

.col-xs-offset-11 {
  margin-left: 91.6666666667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }

  .col-sm-1 {
    width: 8.3333333333%; }

  .col-sm-2 {
    width: 16.6666666667%; }

  .col-sm-3 {
    width: 25%; }

  .col-sm-4 {
    width: 33.3333333333%; }

  .col-sm-5 {
    width: 41.6666666667%; }

  .col-sm-6 {
    width: 50%; }

  .col-sm-7 {
    width: 58.3333333333%; }

  .col-sm-8 {
    width: 66.6666666667%; }

  .col-sm-9 {
    width: 75%; }

  .col-sm-10 {
    width: 83.3333333333%; }

  .col-sm-11 {
    width: 91.6666666667%; }

  .col-sm-12 {
    width: 100%; }

  .col-sm-pull-0 {
    right: auto; }

  .col-sm-pull-1 {
    right: 8.3333333333%; }

  .col-sm-pull-2 {
    right: 16.6666666667%; }

  .col-sm-pull-3 {
    right: 25%; }

  .col-sm-pull-4 {
    right: 33.3333333333%; }

  .col-sm-pull-5 {
    right: 41.6666666667%; }

  .col-sm-pull-6 {
    right: 50%; }

  .col-sm-pull-7 {
    right: 58.3333333333%; }

  .col-sm-pull-8 {
    right: 66.6666666667%; }

  .col-sm-pull-9 {
    right: 75%; }

  .col-sm-pull-10 {
    right: 83.3333333333%; }

  .col-sm-pull-11 {
    right: 91.6666666667%; }

  .col-sm-pull-12 {
    right: 100%; }

  .col-sm-push-0 {
    left: auto; }

  .col-sm-push-1 {
    left: 8.3333333333%; }

  .col-sm-push-2 {
    left: 16.6666666667%; }

  .col-sm-push-3 {
    left: 25%; }

  .col-sm-push-4 {
    left: 33.3333333333%; }

  .col-sm-push-5 {
    left: 41.6666666667%; }

  .col-sm-push-6 {
    left: 50%; }

  .col-sm-push-7 {
    left: 58.3333333333%; }

  .col-sm-push-8 {
    left: 66.6666666667%; }

  .col-sm-push-9 {
    left: 75%; }

  .col-sm-push-10 {
    left: 83.3333333333%; }

  .col-sm-push-11 {
    left: 91.6666666667%; }

  .col-sm-push-12 {
    left: 100%; }

  .col-sm-offset-0 {
    margin-left: 0%; }

  .col-sm-offset-1 {
    margin-left: 8.3333333333%; }

  .col-sm-offset-2 {
    margin-left: 16.6666666667%; }

  .col-sm-offset-3 {
    margin-left: 25%; }

  .col-sm-offset-4 {
    margin-left: 33.3333333333%; }

  .col-sm-offset-5 {
    margin-left: 41.6666666667%; }

  .col-sm-offset-6 {
    margin-left: 50%; }

  .col-sm-offset-7 {
    margin-left: 58.3333333333%; }

  .col-sm-offset-8 {
    margin-left: 66.6666666667%; }

  .col-sm-offset-9 {
    margin-left: 75%; }

  .col-sm-offset-10 {
    margin-left: 83.3333333333%; }

  .col-sm-offset-11 {
    margin-left: 91.6666666667%; }

  .col-sm-offset-12 {
    margin-left: 100%; } }
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }

  .col-md-1 {
    width: 8.3333333333%; }

  .col-md-2 {
    width: 16.6666666667%; }

  .col-md-3 {
    width: 25%; }

  .col-md-4 {
    width: 33.3333333333%; }

  .col-md-5 {
    width: 41.6666666667%; }

  .col-md-6 {
    width: 50%; }

  .col-md-7 {
    width: 58.3333333333%; }

  .col-md-8 {
    width: 66.6666666667%; }

  .col-md-9 {
    width: 75%; }

  .col-md-10 {
    width: 83.3333333333%; }

  .col-md-11 {
    width: 91.6666666667%; }

  .col-md-12 {
    width: 100%; }

  .col-md-pull-0 {
    right: auto; }

  .col-md-pull-1 {
    right: 8.3333333333%; }

  .col-md-pull-2 {
    right: 16.6666666667%; }

  .col-md-pull-3 {
    right: 25%; }

  .col-md-pull-4 {
    right: 33.3333333333%; }

  .col-md-pull-5 {
    right: 41.6666666667%; }

  .col-md-pull-6 {
    right: 50%; }

  .col-md-pull-7 {
    right: 58.3333333333%; }

  .col-md-pull-8 {
    right: 66.6666666667%; }

  .col-md-pull-9 {
    right: 75%; }

  .col-md-pull-10 {
    right: 83.3333333333%; }

  .col-md-pull-11 {
    right: 91.6666666667%; }

  .col-md-pull-12 {
    right: 100%; }

  .col-md-push-0 {
    left: auto; }

  .col-md-push-1 {
    left: 8.3333333333%; }

  .col-md-push-2 {
    left: 16.6666666667%; }

  .col-md-push-3 {
    left: 25%; }

  .col-md-push-4 {
    left: 33.3333333333%; }

  .col-md-push-5 {
    left: 41.6666666667%; }

  .col-md-push-6 {
    left: 50%; }

  .col-md-push-7 {
    left: 58.3333333333%; }

  .col-md-push-8 {
    left: 66.6666666667%; }

  .col-md-push-9 {
    left: 75%; }

  .col-md-push-10 {
    left: 83.3333333333%; }

  .col-md-push-11 {
    left: 91.6666666667%; }

  .col-md-push-12 {
    left: 100%; }

  .col-md-offset-0 {
    margin-left: 0%; }

  .col-md-offset-1 {
    margin-left: 8.3333333333%; }

  .col-md-offset-2 {
    margin-left: 16.6666666667%; }

  .col-md-offset-3 {
    margin-left: 25%; }

  .col-md-offset-4 {
    margin-left: 33.3333333333%; }

  .col-md-offset-5 {
    margin-left: 41.6666666667%; }

  .col-md-offset-6 {
    margin-left: 50%; }

  .col-md-offset-7 {
    margin-left: 58.3333333333%; }

  .col-md-offset-8 {
    margin-left: 66.6666666667%; }

  .col-md-offset-9 {
    margin-left: 75%; }

  .col-md-offset-10 {
    margin-left: 83.3333333333%; }

  .col-md-offset-11 {
    margin-left: 91.6666666667%; }

  .col-md-offset-12 {
    margin-left: 100%; } }
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }

  .col-lg-1 {
    width: 8.3333333333%; }

  .col-lg-2 {
    width: 16.6666666667%; }

  .col-lg-3 {
    width: 25%; }

  .col-lg-4 {
    width: 33.3333333333%; }

  .col-lg-5 {
    width: 41.6666666667%; }

  .col-lg-6 {
    width: 50%; }

  .col-lg-7 {
    width: 58.3333333333%; }

  .col-lg-8 {
    width: 66.6666666667%; }

  .col-lg-9 {
    width: 75%; }

  .col-lg-10 {
    width: 83.3333333333%; }

  .col-lg-11 {
    width: 91.6666666667%; }

  .col-lg-12 {
    width: 100%; }

  .col-lg-pull-0 {
    right: auto; }

  .col-lg-pull-1 {
    right: 8.3333333333%; }

  .col-lg-pull-2 {
    right: 16.6666666667%; }

  .col-lg-pull-3 {
    right: 25%; }

  .col-lg-pull-4 {
    right: 33.3333333333%; }

  .col-lg-pull-5 {
    right: 41.6666666667%; }

  .col-lg-pull-6 {
    right: 50%; }

  .col-lg-pull-7 {
    right: 58.3333333333%; }

  .col-lg-pull-8 {
    right: 66.6666666667%; }

  .col-lg-pull-9 {
    right: 75%; }

  .col-lg-pull-10 {
    right: 83.3333333333%; }

  .col-lg-pull-11 {
    right: 91.6666666667%; }

  .col-lg-pull-12 {
    right: 100%; }

  .col-lg-push-0 {
    left: auto; }

  .col-lg-push-1 {
    left: 8.3333333333%; }

  .col-lg-push-2 {
    left: 16.6666666667%; }

  .col-lg-push-3 {
    left: 25%; }

  .col-lg-push-4 {
    left: 33.3333333333%; }

  .col-lg-push-5 {
    left: 41.6666666667%; }

  .col-lg-push-6 {
    left: 50%; }

  .col-lg-push-7 {
    left: 58.3333333333%; }

  .col-lg-push-8 {
    left: 66.6666666667%; }

  .col-lg-push-9 {
    left: 75%; }

  .col-lg-push-10 {
    left: 83.3333333333%; }

  .col-lg-push-11 {
    left: 91.6666666667%; }

  .col-lg-push-12 {
    left: 100%; }

  .col-lg-offset-0 {
    margin-left: 0%; }

  .col-lg-offset-1 {
    margin-left: 8.3333333333%; }

  .col-lg-offset-2 {
    margin-left: 16.6666666667%; }

  .col-lg-offset-3 {
    margin-left: 25%; }

  .col-lg-offset-4 {
    margin-left: 33.3333333333%; }

  .col-lg-offset-5 {
    margin-left: 41.6666666667%; }

  .col-lg-offset-6 {
    margin-left: 50%; }

  .col-lg-offset-7 {
    margin-left: 58.3333333333%; }

  .col-lg-offset-8 {
    margin-left: 66.6666666667%; }

  .col-lg-offset-9 {
    margin-left: 75%; }

  .col-lg-offset-10 {
    margin-left: 83.3333333333%; }

  .col-lg-offset-11 {
    margin-left: 91.6666666667%; }

  .col-lg-offset-12 {
    margin-left: 100%; } }
@-ms-viewport {
  width: device-width; }
.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }

  table.visible-xs {
    display: table; }

  tr.visible-xs {
    display: table-row !important; }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }

  table.visible-sm {
    display: table; }

  tr.visible-sm {
    display: table-row !important; }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }

  table.visible-md {
    display: table; }

  tr.visible-md {
    display: table-row !important; }

  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }

  table.visible-lg {
    display: table; }

  tr.visible-lg {
    display: table-row !important; }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }
.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }

  table.visible-print {
    display: table; }

  tr.visible-print {
    display: table-row !important; }

  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }
.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }
/* 
 * Fin des classes utilitaires responsive/print.
 * `.hidden-*` / `.visible-*` servent à afficher/masquer selon la taille d'écran ou l'impression.
 */
/*
 * Header Styles
 */
/* 
 * En-tête du site : logo, menu principal, menu mobile, bannière (hero).
 * C'est la zone à modifier pour changer l'apparence de la navigation.
 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; } /* Header toujours visible en haut, même pendant le scroll */
  .site-header.collapsed-nav {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0; }

/* On annule la largeur "container" uniquement dans le header pour faire un bandeau pleine largeur */
.site-header .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0; }

.header-bar {
  *zoom: 1;
  background: linear-gradient(90deg, #8378AF 0%, #7b73ae 24%, #6f74af 44%, #6177b1 62%, #547cb3 80%, #4281B4 100%);
  border-radius: 0; } /* Coins droits pour un bandeau plein écran */
  .header-bar:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }

.branding {
  float: left;
  padding: 10px 15px; }
  .branding .logo, .branding .logo-type {
    display: inline-block;
    vertical-align: middle; }
  .branding .logo {
    content: url("images/L2BMS_logo_blanc.png");
    margin-right: 10px;
    height: 54px;
    width: auto;
    filter: none !important;
    opacity: 1;
    mix-blend-mode: normal;
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    -webkit-mask-image: none;
    mask-image: none; } /* Aucun effet de filtre/masque sur le logo du headband */
  .branding .logo-type .site-title {
    margin: 0;
    font-size: 27px;
    font-size: 1.8em;
    line-height: 1;
    color: #ffffff; }
  .branding .logo-type .site-description {
    font-size: 13px;
    font-size: 0.8666666667em;
    color: #dff7f8; }

.main-navigation {
  *zoom: 1;
  float: right; }
  .main-navigation:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }
.main-navigation .menu-toggle {
    display: inline-block;
    vertical-align: middle;
    background: none;
    border: none;
    font-size: 20px;
    font-size: 1.3333333333em;
    color: #ffffff;
    outline: none;
    display: none;
    padding: 20px; }
    .main-navigation .menu-toggle:hover, .main-navigation .menu-toggle:active {
      color: #c8f3f4; }
    @media screen and (max-width: 990px) {
      .main-navigation .menu-toggle {
        display: block; } } /* Bouton hamburger visible sur petits écrans */
  .main-navigation .menu {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
    *zoom: 1; }
    .main-navigation .menu:after {
      content: " ";
      clear: both;
      display: block;
      overflow: hidden;
      height: 0; }
    @media screen and (max-width: 990px) {
      .main-navigation .menu {
        display: none; } } /* Menu desktop masqué en mobile */
    .main-navigation .menu .menu-item {
      float: left; }
      .main-navigation .menu .menu-item.has-submenu {
        position: relative; }
      .main-navigation .menu .menu-item.home a {
        padding: 19px 20px; } /* Home plus compact pour ne pas augmenter la hauteur du bandeau */
      .main-navigation .menu .menu-item.home a .fa-home {
        font-size: 28px;
        line-height: 1;
        vertical-align: middle; }
    .main-navigation .menu .menu-item a {
        font-size: 14px;
        font-size: 0.9333333333em;
        text-transform: uppercase;
        font-weight: 400;
        padding: 24px 20px;
        display: block;
        color: #f4ffff;
        -webkit-transition: .3s ease;
                transition: .3s ease;
        border-bottom: 2px solid transparent;
        line-height: normal; }
      .main-navigation .menu .menu-item.current-menu-item a, .main-navigation .menu .menu-item:hover a {
        color: #ffffff;
        border-bottom: 2px solid #c8f3f4; } /* Onglet actif/survolé */
    .main-navigation .menu .sub-menu {
      list-style: none;
      margin: 0;
      padding: 6px 0;
      min-width: 230px;
      position: absolute;
      top: 100%;
      left: 0;
      display: none;
      background: #ffffff;
      border-radius: 0 0 6px 6px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22); }
      .main-navigation .menu .sub-menu .menu-item {
        float: none; }
      .main-navigation .menu .sub-menu .menu-item a {
        padding: 12px 16px;
        font-size: 12px;
        font-size: 0.8em;
        font-weight: 500;
        text-transform: none;
        border-bottom: none;
        color: #355f83; }
      .main-navigation .menu .sub-menu .menu-item.current-menu-item a,
      .main-navigation .menu .sub-menu .menu-item a:hover {
        background: #edf4fb;
        color: #2a4f71;
        border-bottom: none; }
    .main-navigation .menu .menu-item.has-submenu:hover .sub-menu {
      display: block; }
.main-navigation .language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin: 0 12px 0 8px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease; }
  .main-navigation .language-toggle .lang-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  .main-navigation .language-toggle .lang-flag-fr {
    background-image: url("images/France.png"); }
  .main-navigation .language-toggle .lang-flag-en {
    background-image: url("images/Angleterre.png"); }
  .main-navigation .language-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.75); }
  .main-navigation .language-toggle:focus {
    outline: 2px solid rgba(200, 243, 244, 0.9);
    outline-offset: 2px; }
  @media screen and (max-width: 990px) {
    .main-navigation .language-toggle {
      margin: 14px 14px 14px 0; } }

/* Keep layout stable when translation widgets/banners are active */
body {
  top: 0 !important; }

.goog-te-banner-frame.skiptranslate {
  display: none !important; }

.mobile-navigation {
  padding: 30px;
  clear: both;
  display: none; }
  @media screen and (min-width: 991px) {
    .mobile-navigation {
      display: none !important; } }
  .mobile-navigation .menu {
    border-radius: 5px;
    background: #0f7f84;
    list-style: none; }
    .mobile-navigation .menu a {
      color: #f4ffff;
      padding: 15px 20px;
      display: block;
      text-align: center;
      text-transform: uppercase;
      -webkit-transition: .3s ease;
              transition: .3s ease; }
      .mobile-navigation .menu a:hover, .mobile-navigation .menu a:active {
        background: #0a666a;
        color: white; }
    .mobile-navigation .menu .menu-item {
      border-bottom: 1px solid white; }
      .mobile-navigation .menu .menu-item:last-child {
        border-bottom: none; }
    .mobile-navigation .menu .sub-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      background: #ffffff; }
      .mobile-navigation .menu .sub-menu .menu-item {
        border-bottom: 1px solid #dbe8f3; }
      .mobile-navigation .menu .sub-menu .menu-item:last-child {
        border-bottom: none; }
      .mobile-navigation .menu .sub-menu a {
        padding: 12px 20px;
        font-size: 13px;
        font-size: 0.8666666667em;
        color: #355f83; }

.hero {
  *zoom: 1;
  position: relative;
  margin-top: 0; } /* Grande section visuelle d'accueil */
.site-header + .hero {
  margin-top: -3px; } /* Supprime tout liseré potentiel entre header et image */
  .hero:after {
    content: " ";
    clear: both;
    display: block;
    overflow: hidden;
    height: 0; }
  .hero .slides {
    list-style: none;
    *zoom: 1; }
    .hero .slides:after {
      content: " ";
      clear: both;
      display: block;
      overflow: hidden;
      height: 0; }
    .hero .slides li {
      width: 100%;
      margin-right: -100%;
      float: left;
      position: relative;
      overflow: hidden;
      min-height: 720px;
      padding-bottom: 100px;
      background-color: rgba(255, 255, 255, 0.54);
      background-blend-mode: lighten;
      background-size: cover; } /* L'image couvre toute la zone */
      .hero .slides li .hero-bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        z-index: 0; }
      .hero .slides li:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(120deg, rgba(66, 129, 180, 0.18) 0%, rgba(66, 129, 180, 0.16) 55%, rgba(66, 129, 180, 0.20) 100%);
        pointer-events: none; } /* Voile coloré prononcé, image encore visible */
      .hero .slides li:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.38);
        pointer-events: none; } /* Voile blanc léger pour un rendu plus doux */
  .hero .slide-content {
    text-align: center;
    padding-top: 110px;
    color: white;
    width: 80%;
    position: relative;
    z-index: 2;
    margin: 0 auto; }
    .hero .slide-content .slide-title {
      font-size: 60px;
      font-size: 4em;
      font-weight: 300; }
    .hero .slide-content p {
      font-size: 24px;
      font-size: 1.6em; }
  .hero .slide-content .button, .hero .slide-content form input[type="submit"], form .hero .slide-content input[type="submit"], .hero .slide-content form button, form .hero .slide-content button, .hero .slide-content form input[type="reset"], form .hero .slide-content input[type="reset"] {
      font-size: 20px;
      font-size: 1.3333333333em; }
  .hero .slide-content .hero-lab-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
    -webkit-transform: translateX(45px);
            transform: translateX(45px);
    margin-bottom: 12px; }
  .hero .slide-content .hero-lab-logo {
    width: 180px;
    max-width: 38vw;
    height: auto;
    display: block; }
  .hero .slide-content .hero-lab-text {
    text-align: left;
    max-width: 700px; }
  .hero .slide-content .hero-lab-title {
    font-size: 72px;
    font-size: 4.8em;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 800;
    font-family: "Montserrat", "Poppins", "Roboto", sans-serif;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #56a6e6 0%, #6a9fe0 34%, #8a93d6 67%, #a17ed2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; }
  .hero .slide-content .hero-lab-tagline {
    font-size: 30px;
    font-size: 2em;
    margin-bottom: 14px;
    font-weight: 700;
    font-family: "Montserrat", "Poppins", "Roboto", sans-serif;
    letter-spacing: 0.2px;
    background: linear-gradient(90deg, #56a6e6 0%, #6a9fe0 34%, #8a93d6 67%, #a17ed2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: left; }
  .hero .slide-content .hero-lab-keywords {
    font-size: 24px;
    font-size: 1.6em;
    font-weight: 400;
    font-family: "Montserrat", "Poppins", "Roboto", sans-serif;
    letter-spacing: 0.35px;
    background: linear-gradient(90deg, #34601E 0%, #90B93F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 28px;
    -webkit-transform: translateX(45px);
            transform: translateX(45px); } /* Plus d'espace avant les mots-clés */
  @media screen and (max-width: 767px) {
    .hero .slide-content .hero-lab-brand {
      display: block;
      -webkit-transform: none;
              transform: none; }
    .hero .slide-content .hero-lab-logo {
      margin: 0 auto 12px; }
    .hero .slide-content .hero-lab-text,
    .hero .slide-content .hero-lab-title,
    .hero .slide-content .hero-lab-tagline {
      text-align: center; }
    .hero .slide-content .hero-lab-keywords {
      -webkit-transform: none;
              transform: none; } }
  .hero .flex-control-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 8;
    text-align: center;
    display: none; } /* Masque les points du slider */
    .hero .flex-control-nav li {
      display: inline-block;
      margin: 30px 5px; }
      .hero .flex-control-nav li a {
        width: 25px;
        height: 25px;
        background: white;
        border-radius: 50%;
        display: block;
        overflow: hidden;
        text-indent: -9999px;
        position: relative;
        cursor: pointer; }
        .hero .flex-control-nav li a:before {
          content: " ";
          width: 17px;
          height: 17px;
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          bottom: 0;
          margin: auto;
          background: #69acc7;
          border-radius: 50%;
          opacity: 0;
          -webkit-transition: .3s ease;
                  transition: .3s ease;
          -webkit-transform: scale(0);
              -ms-transform: scale(0);
                  transform: scale(0); }
        .hero .flex-control-nav li a.flex-active:before, .hero .flex-control-nav li a:hover:before {
          opacity: 1;
          -webkit-transform: scale(1);
              -ms-transform: scale(1);
                  transform: scale(1); }

.page-head {
  background-size: cover;
  padding: 50px 0;
  text-align: center;
  color: white; }
  .page-head .page-title {
    font-size: 60px;
    font-size: 4em;
    font-weight: 300;
    margin: 0 0 10px; }
  .page-head small {
    font-size: 18px;
    font-size: 1.2em; }

.page-head.research-head .page-head-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
  text-align: center;
}
.page-head.research-head {
  --head-grad-start: #56a6e6;
  --head-grad-mid: #8a93d6;
  --head-grad-end: #a17ed2;
  background-image: none !important;
  background-color: #eceff3;
  padding: 14px 0;
}
.page-head.synthetic-head {
  --head-grad-start: #4a95e2;
  --head-grad-mid: #5b8dde;
  --head-grad-end: #6f86da;
}
.page-head.biocatalysis-head {
  --head-grad-start: #6a4fb3;
  --head-grad-mid: #7458be;
  --head-grad-end: #8568ca;
}
.page-head.biocatalysis-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
.page-head.biocatalysis-head .page-head-brand.page-head-brand-top-logo .biocatalysis-header-logo {
  width: 98px;
  max-width: none;
}
.page-head.synthetic-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
.page-head.biodegradation-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
.page-head.people-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
.page-head.publications-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
.page-head.communications-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
.page-head.resources-head .page-head-brand.page-head-brand-top-logo .page-head-logo {
  width: 98px !important;
  max-width: none !important;
}
.page-head.biocatalysis-head .page-head-copy .page-title {
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #4f2a96 0%, #7458be 42%, #a884ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-head.biocatalysis-head .page-head-copy small {
  background: linear-gradient(90deg, #5933a3 0%, #7b5fc5 48%, #b091f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-head.biodegradation-head {
  --head-grad-start: #23754f;
  --head-grad-mid: #3f8f4b;
  --head-grad-end: #6aa13f;
}
.page-head.people-head {
  --head-grad-start: #7458be;
  --head-grad-mid: #4a95e2;
  --head-grad-end: #3f8f4b;
}
.page-head.resources-head {
  --head-grad-start: #3f9f9a;
  --head-grad-mid: #4a95e2;
  --head-grad-end: #7458be;
}

.page-head.communications-head {
  --head-grad-start: #3f9f9a;
  --head-grad-mid: #4a95e2;
  --head-grad-end: #7458be;
}
.page-head.synthetic-head .page-title,
.page-head.biodegradation-head .page-title,
.page-head.people-head .page-title,
.page-head.publications-head .page-title,
.page-head.communications-head .page-title,
.page-head.resources-head .page-title {
  text-transform: uppercase;
}
.page-head.research-head .page-head-logo {
  width: 110px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-head.research-head .page-title {
  margin: 0 0 4px;
  font-size: 48px;
}
.page-head.research-head .page-head-copy small {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
}
.page-head.research-head .page-head-copy .page-title {
  font-family: "Roboto", "Open Sans", sans-serif;
  font-weight: 800;
  background: linear-gradient(90deg, var(--head-grad-start) 0%, var(--head-grad-mid) 55%, var(--head-grad-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-head.research-head .page-head-copy small {
  font-family: "Roboto", "Open Sans", sans-serif;
  background: linear-gradient(90deg, var(--head-grad-start) 0%, var(--head-grad-mid) 55%, var(--head-grad-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-head.research-head .page-head-brand.page-head-brand-centered-logo {
  position: relative;
  min-height: 150px;
}
.page-head.research-head .page-head-brand.page-head-brand-centered-logo:before {
  content: "";
  position: absolute;
  display: none;
  pointer-events: none;
}
.page-head.research-head .page-head-brand.page-head-brand-centered-logo .page-head-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 155px;
  opacity: 0.36;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.page-head.research-head .page-head-brand.page-head-brand-centered-logo .page-head-copy {
  position: relative;
  z-index: 1;
}
.page-head.research-head .page-head-brand.page-head-brand-top-logo {
  display: block;
  text-align: center;
}
.page-head.research-head .page-head-brand.page-head-brand-top-logo .page-head-logo {
  position: static;
  display: block;
  width: 68px;
  margin: -2px auto 2px;
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  pointer-events: none;
}
.page-head.research-head .page-head-brand.page-head-brand-top-logo .page-head-copy {
  position: relative;
  z-index: 1;
}
.page-head.research-head .page-title .page-title-inline-logo {
  display: inline-block;
  width: 44px;
  height: auto;
  margin-right: 12px;
  vertical-align: middle;
}
.page-head.research-head .page-title .page-title-inline-logo.page-title-inline-logo-right {
  margin-right: 0;
  margin-left: 12px;
}
.page-head.publications-head .page-head-brand.page-head-brand-centered-logo .page-head-logo,
.page-head.communications-head .page-head-brand.page-head-brand-centered-logo .page-head-logo,
.page-head.resources-head .page-head-brand.page-head-brand-centered-logo .page-head-logo,
.page-head.people-head .page-head-brand.page-head-brand-centered-logo .page-head-logo {
  opacity: 0.28;
}
@media screen and (max-width: 767px) {
  .page-head.research-head .page-head-brand {
    display: block;
    text-align: center;
  }
  .page-head.research-head .page-head-logo {
    margin: 0 auto 12px;
  }
  .page-head.research-head .page-head-logo:last-child {
    display: none;
  }
  .page-head.research-head .page-head-brand.page-head-brand-centered-logo {
    min-height: 132px;
  }
  .page-head.research-head .page-head-brand.page-head-brand-centered-logo:before {
    display: none;
  }
  .page-head.research-head .page-head-brand.page-head-brand-centered-logo .page-head-logo {
    width: 124px;
    margin: 0;
  }
  .page-head.research-head .page-head-brand.page-head-brand-top-logo .page-head-logo {
    width: 58px;
    margin: -1px auto 2px;
  }
  .page-head.biocatalysis-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
  .page-head.biocatalysis-head .page-head-brand.page-head-brand-top-logo .biocatalysis-header-logo {
    width: 78px;
  }
  .page-head.synthetic-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
  .page-head.biodegradation-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
  .page-head.people-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
  .page-head.publications-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
  .page-head.communications-head .page-head-brand.page-head-brand-top-logo .page-head-logo,
  .page-head.resources-head .page-head-brand.page-head-brand-top-logo .page-head-logo {
    width: 78px !important;
  }
  .page-head.research-head .page-title .page-title-inline-logo {
    width: 36px;
    margin-right: 9px;
  }
  .page-head.research-head .page-title .page-title-inline-logo.page-title-inline-logo-right {
    margin-left: 9px;
    margin-right: 0;
  }
}

.fullwidth-block {
  padding: 40px 0; }

.section-title {
  font-size: 30px;
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 22px; }

.feature {
  margin-bottom: 30px;
  text-align: center;
  border: 1px solid #e1e8ec;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); }
  .feature .feature-image {
    margin-bottom: 20px; }
  .feature .feature-title {
    font-size: 30px;
    font-size: 2em;
    font-weight: 300; }
  .feature p {
    font-size: 16px;
    font-size: 1.0666666667em;
    margin-bottom: 30px; }

.post {
  position: relative;
  margin-bottom: 30px; }
  .post .featured-image {
    margin-bottom: 20px; }
    .post .featured-image img {
      max-width: 100%;
      border-radius: 5px;
      width: 100%;
      height: auto;
      display: block; }
.post .entry-title {
  font-size: 24px;
  font-size: 1.6em;
  font-weight: 300;
  margin: 0 0 10px; }
  .post .date {
    display: block;
    margin-bottom: 30px;
    font-size: 11px;
    font-size: 0.7333333333em; }
.post:after {
  content: " ";
  display: block;
  margin-top: 30px;
  width: 22px;
  height: 11px;
  background: url(images/Bg_logo.jpg); }

.resources-block .post .entry-title {
  color: #3f9f9a;
  font-weight: 400;
}
.resources-block {
  padding: 40px 0;
}
.resources-block .post {
  text-align: center;
  margin-bottom: 18px;
}
.resources-slider {
  position: relative;
}
.resources-slider-viewport {
  overflow: hidden;
}
.resources-slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
}
.resources-slider-track .resource-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px) / 3);
          flex: 0 0 calc((100% - 40px) / 3);
}
.resources-slider-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  border: none;
  background: rgba(142, 156, 165, 0.05);
  opacity: 0;
  -webkit-transition: .2s ease;
          transition: .2s ease;
  z-index: 2;
}
.resources-slider-zone.left {
  left: -30px;
}
.resources-slider-zone.right {
  right: -30px;
}
.resources-slider-zone:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 26px;
  color: #8e9ca5;
}
.resources-slider-zone.left:before {
  content: "<";
}
.resources-slider-zone.right:before {
  content: ">";
}
.resources-slider:hover .resources-slider-zone {
  opacity: 1;
}
.resources-block .post .featured-image img {
  width: 94%;
  max-width: 360px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  margin: 0 auto;
}
.resources-block .post p {
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}
.resources-block .post:after {
  display: none;
}
.resources-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.resources-page-card {
  background: #ffffff;
  border: 1px solid #dbe4ec;
  border-radius: 12px;
  padding: 16px 16px 18px;
  box-shadow: 0 6px 16px rgba(35, 73, 106, 0.08);
}
.resources-page-image {
  margin: 0 0 12px;
}
.resources-page-image img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.resources-page-title {
  margin: 0 0 8px;
  font-size: 1.28em;
  color: #5f707c;
}
.resources-page-card p {
  margin: 0;
  color: #5f707c;
}
@media screen and (max-width: 990px) {
  .resources-slider-track .resource-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 20px) / 2);
            flex: 0 0 calc((100% - 20px) / 2);
  }
  .resources-page-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 640px) {
  .resources-slider-track .resource-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .resources-slider-zone {
    width: 64px;
  }
}

.resource-rect-grid [class*="col-"] {
  margin-bottom: 16px;
}
.resource-rect-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dce6ee;
  border-radius: 10px;
  background-color: #ffffff;
  background-image: url("images/Bg_logo.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 14px 18px;
  min-height: 110px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  -webkit-transition: box-shadow .22s ease, -webkit-transform .22s ease;
          transition: box-shadow .22s ease, transform .22s ease;
}
.resource-rect-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.84);
  -webkit-transition: background .22s ease;
          transition: background .22s ease;
}
.resource-rect-card > * {
  position: relative;
  z-index: 1;
}
.resource-rect-card:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(74, 149, 226, 0.2);
}
.resource-rect-card:hover:before {
  background: rgba(255, 255, 255, 0.66);
}
.resource-rect-card .resource-thumb {
  display: none;
}
.resource-rect-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 500;
  color: #3f9f9a;
}
.resource-rect-card p {
  margin: 0;
}

.cta {
  text-align: center;
  color: white; }
  .cta .cta-title {
    font-size: 60px;
    font-size: 4em;
    font-weight: 300; }
  .cta p {
    font-size: 24px;
    font-size: 1.6em; }
  .cta .button, .cta form input[type="submit"], form .cta input[type="submit"], .cta form button, form .cta button, .cta form input[type="reset"], form .cta input[type="reset"] {
    font-size: 18px;
    font-size: 1.2em; }

.subscribe-form {
  display: table;
  margin: 0 auto; }
  .subscribe-form h2 {
    font-size: 24px;
    font-size: 1.6em;
    font-weight: 300;
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px 0 0; }
  .subscribe-form form {
    display: inline-block;
    vertical-align: middle;
    position: relative; }
    .subscribe-form form input[type="text"], .subscribe-form form input[type="email"] {
      width: 500px;
      max-width: 100%;
      padding: 20px 100px 20px 20px; }
      .subscribe-form form input[type="text"]:hover, .subscribe-form form input[type="text"]:focus, .subscribe-form form input[type="email"]:hover, .subscribe-form form input[type="email"]:focus {
        border-color: #69acc7; }
    .subscribe-form form input[type="submit"] {
      position: absolute;
      top: 0px;
      bottom: 0px;
      right: 0px;
      background: -webkit-linear-gradient(#69c7b7, #69acc6);
      background: linear-gradient(#69c7b7, #69acc6);
      color: white;
      box-shadow: none;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      border: none;
      -webkit-transition: .3s ease;
              transition: .3s ease; }
      .subscribe-form form input[type="submit"]:hover {
        box-shadow: inset 0 0 0 200px #69c7b7; }

.team {
  text-align: center;
  margin-bottom: 30px; }
  .team .team-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    object-position: center;
    display: inline-block;
    -webkit-transition: -webkit-transform .22s ease, box-shadow .22s ease, border-color .22s ease;
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    border: 1px solid #d7e0e8;
    margin-bottom: 10px; }
  .team:hover .team-image,
  .team .team-image:hover,
  .team a:hover .team-image,
  .team a:focus .team-image {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
    border-color: #8fbee7;
    box-shadow: 0 0 0 3px rgba(143, 190, 231, 0.25), 0 0 22px rgba(114, 160, 214, 0.35);
  }
  
.team .team-org {
  margin: -4px 0 8px;
  font-size: 12px;
  color: #7f8d96;
}
.team .team-name-biocat,
.team .team-name-biocat a {
  color: #8654bc;
}
.team .team-name-synth,
.team .team-name-synth a {
  color: #69acc7;
}
.team .team-name-compact {
  margin-bottom: 2px;
}
.team .team-org-compact {
  margin: -2px 0 4px;
}
.team .team-bio-compact {
  line-height: 1.22;
}
.team .social-links a {
    background: white;
    border: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); }

.checked-box {
  border: 1px solid #edf2f4;
  padding: 30px;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding-left: 70px;
  position: relative; }
  .checked-box:before {
    content: "\f00c";
    font-family: "FontAwesome";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #edf2f4;
    display: block;
    position: absolute;
    left: 20px;
    top: 30px;
    color: #69acc7;
    text-align: center;
    line-height: 2; }
  .checked-box h3 {
    font-weight: 300;
    color: #69acc7;
    margin-bottom: 10px; }

ol.circle {
  list-style: none;
  counter-reset: circled; }
  ol.circle li {
    padding-left: 90px;
    position: relative;
    min-height: 70px;
    margin-bottom: 30px; }
    ol.circle li:before {
      counter-increment: circled;
      content: counter(circled);
      width: 70px;
      height: 70px;
      border: 4px solid #69acc7;
      display: block;
      border-radius: 50%;
      text-align: center;
      line-height: 2;
      font-size: 30px;
      font-size: 2em;
      font-weight: 400;
      position: absolute;
      top: 0;
      left: 0;
      color: #69acc7; }
    ol.circle li h3 {
      font-size: 16px;
      font-size: 1.0666666667em;
      font-weight: 400;
      color: #69acc7;
      margin-bottom: 10px; }

.testimonial-list {
  list-style: none; }
  .testimonial-list li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 30px; }
    .testimonial-list li:before {
      content: " ";
      width: 21px;
      height: 18px;
      background: url(images/Bg_logo.jpg) no-repeat;
      display: block;
      position: absolute;
      top: 0;
      left: 0; }
    .testimonial-list li blockquote {
      margin: 0; }
      .testimonial-list li blockquote p {
        font-size: 15px;
        font-size: 1em;
        font-style: italic; }
      .testimonial-list li blockquote cite {
        font-weight: 400;
        font-style: normal; }

.boxed-icon {
  border-radius: 5px;
  border: 1px solid #edf2f4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 30px 30px 30px 170px;
  position: relative;
  margin-bottom: 30px; }
  @media screen and (max-width: 640px) {
    .boxed-icon {
      padding-left: 30px; } }
  .boxed-icon .icon {
    position: absolute;
    left: 30px;
    top: 30px; }
    @media screen and (max-width: 640px) {
      .boxed-icon .icon {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto 20px;
        display: block;
        text-align: center; } }
  .boxed-icon h3 {
    font-weight: 300;
    font-size: 30px;
    font-size: 2em; }

.project-list {
  margin: 0 -15px; }
  .project-list .project {
    float: left;
    width: 33.3333%;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 30px; }
    .project-list .project:nth-child(3n+1) {
      clear: both; }
    @media screen and (max-width: 990px) {
      .project-list .project {
        width: 50%; }
        .project-list .project:nth-child(3n+1) {
          clear: none; }
        .project-list .project:nth-child(2n+1) {
          clear: both; } }
    @media screen and (max-width: 480px) {
      .project-list .project {
        width: 100%; }
        .project-list .project:nth-child(2n+1) {
          clear: none; } }
    .project-list .project .project-content {
      border: 1px solid #dde7ea;
      border-radius: 5px;
      padding: 20px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
    .project-list .project .project-image {
      margin-bottom: 20px; }
      .project-list .project .project-image img {
        display: block;
        max-width: 100%;
        width: 100%;
        height: auto; }
    .project-list .project .project-title {
      font-size: 18px;
      font-size: 1.2em;
      font-weight: 300; }

figure {
  margin-bottom: 30px; }
  figure img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 5px; }

.project-info {
  list-style: none;
  margin-bottom: 30px; }
  .project-info li {
    padding: 10px 0;
    border-bottom: 1px solid #edf2f4; }
    .project-info li:last-child {
      border-bottom: none; }

.map {
  min-height: 300px;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden; }

.boxed-content {
  border: 1px solid #dde7ea;
  padding: 20px;
  margin-bottom: 30px; }

.contact-form input:not([type="submit"]), .contact-form textarea {
  width: 100%; } /* Champs pleine largeur */
.contact-form textarea {
  min-height: 150px; } /* Hauteur minimale du message */
.contact-form input[type="submit"] {
  background: -webkit-linear-gradient(#69c7b7, #69acc6);
  background: linear-gradient(#69c7b7, #69acc6);
  color: white; } /* Bouton envoyer en dégradé */
.contact-form .text-right {
  text-align: right; } /* Aligne le bouton à droite */

.publication-listing {
  margin: 20px 0 25px; }
  .publication-listing .publication-item {
    display: block;
    background: #f1f4f7;
    border: 1px solid #d7e0e8;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 12px;
    font-family: "Roboto", "Open Sans", sans-serif;
    color: #8e9ca5;
    font-weight: 400;
    -webkit-transition: .2s ease;
            transition: .2s ease; }
    .publication-listing .publication-item:hover {
      background: #ffffff;
      border-color: #b8cddd;
      color: #7f8d96; }

.publications-browser-block {
  padding-top: 38px;
}
.publication-timeline {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 6px auto 24px;
  max-width: 980px;
  padding: 0 6px;
}
.publication-timeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4ddea 0%, #b5cae4 52%, #98bfdc 100%);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}
.publication-year-node {
  position: relative;
  z-index: 1;
  border: 1px solid #c9d6e3;
  border-radius: 999px;
  min-width: 82px;
  padding: 9px 14px;
  background: #f5f8fb;
  color: #7e8d97;
  font-weight: 500;
  -webkit-transition: .2s ease;
          transition: .2s ease;
}
.publication-year-node:hover {
  color: #3a8fd8;
  background: #ffffff;
  border-color: #8fbee7;
  box-shadow: 0 0 0 2px rgba(143, 190, 231, 0.2), 0 0 18px rgba(122, 165, 220, 0.28);
}
.publication-year-node.is-active {
  color: #ffffff;
  border-color: #6799d8;
  background: linear-gradient(90deg, #6f8edb 0%, #6aa8df 52%, #5eb9cf 100%);
}
@media screen and (max-width: 767px) {
  .publication-timeline {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    padding: 0;
  }
  .publication-timeline-line {
    display: none;
  }
  .publication-year-node {
    min-width: 72px;
  }
}
.publication-year-panels {
  max-width: 980px;
  margin: 0 auto;
}
.publication-year-panel {
  display: none;
}
.publication-year-panel.is-active {
  display: block;
}

.latest-publications-block {
  background-image: none !important; }
  .latest-publications-block .cta-title {
    text-align: left;
    color: #8e9ca5;
    font-family: "Roboto", "Open Sans", sans-serif;
    font-weight: 700; }

.project-circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-top: 18px; }
  .project-circles .project-circle-item {
    text-align: center;
    min-width: 140px; }
  .project-circles .project-circle {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-block;
    background: linear-gradient(135deg, #69c7b7 0%, #69acc6 100%);
    box-shadow: 0 8px 20px rgba(40, 93, 128, 0.25); }
  .project-circles h3 {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 1.1333333333em; }

.research-focus-block .feature {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 26px 10px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 363px; /* +~3 cm */
  background-image: none;
  background-color: #eceff3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  -webkit-transition: .2s ease;
          transition: .2s ease; }
  .research-focus-block .feature .button {
    margin-top: auto;
    -ms-flex-item-align: center;
        align-self: center; }
  .research-focus-block .feature .feature-image {
    margin: 0 auto 8px;
    width: 110px;
    height: auto; }
.research-focus-block .feature .feature-title {
  margin-top: 4px;
  margin-bottom: 6px; }
    .research-focus-block .feature .feature-title a {
      color: #8e9ca5; }
      .research-focus-block .feature .feature-title a:hover,
      .research-focus-block .feature .feature-title a:focus {
        color: #8e9ca5; }
  .research-focus-block .row > [class*="col-"]:nth-child(4) .feature .feature-title {
    margin-top: 10px; }
.research-focus-block .feature p {
  margin-bottom: 10px; }
.research-focus-block .feature.research-card .feature-image {
  order: 1;
  width: 120px;
  height: 96px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 6px;
}
.research-focus-block .row > [class*="col-"]:nth-child(1) .feature.research-card .feature-image {
  width: 132px;
  height: 106px;
}
.research-focus-block .row > [class*="col-"]:nth-child(2) .feature.research-card .feature-image {
  width: 116px;
  height: 92px;
}
.research-focus-block .feature.research-card .feature-title {
  order: 2;
  min-height: 2.7em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  margin-bottom: 4px;
  line-height: 1.18;
}
.research-focus-block .feature.research-card p {
  order: 3;
  min-height: 4.8em;
  margin-top: 0;
  margin-bottom: 10px;
}
.research-focus-block .feature.research-card .button {
  order: 4;
}
.research-focus-block .row > [class*="col-"]:nth-child(1) .feature.research-card .feature-title,
.research-focus-block .row > [class*="col-"]:nth-child(2) .feature.research-card .feature-title,
.research-focus-block .row > [class*="col-"]:nth-child(3) .feature.research-card .feature-title {
  transform: translateY(-16px);
}
.research-focus-block .row > [class*="col-"]:nth-child(1) .feature.research-card .feature-title {
  transform: translateY(-23px);
}
.research-focus-block .row > [class*="col-"]:nth-child(2) .feature.research-card .feature-title {
  transform: translateY(-14px);
}
.research-focus-block .row > [class*="col-"]:nth-child(4) .feature.research-card .feature-title {
  transform: translateY(-8px);
}
  .research-focus-block .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px; }
  .research-focus-block .row > [class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 285px;
            flex: 0 0 285px;
    width: 285px;
    max-width: 285px; }
  @media screen and (min-width: 768px) {
    .research-focus-block .row {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
    .research-focus-block .row > [class*="col-"] {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 0;
              flex: 1 1 0;
      width: auto;
      max-width: none;
      min-width: 0; }
  }
  @media screen and (min-width: 1200px) {
    .research-focus-block .row > [class*="col-"] {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 285px;
              flex: 0 0 285px;
      width: 285px;
      max-width: 285px; }
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .research-focus-block .feature {
      height: 390px;
      padding-left: 12px;
      padding-right: 12px; }
    .research-focus-block .feature .feature-title {
      font-size: 1.55em; }
    .research-focus-block .feature p {
      font-size: 0.98em; }
  }
  .research-focus-block .feature:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    pointer-events: none;
    -webkit-transition: .2s ease;
            transition: .2s ease; }
  .research-focus-block .feature:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1); }
    .research-focus-block .feature:hover:before {
      background: transparent; }
  .research-focus-block .feature > * {
    position: relative;
    z-index: 1; }
  .research-focus-block .feature .feature-title {
    color: #8e9ca5; }
  .research-focus-block .feature.focus-summary {
    background-color: transparent;
    box-shadow: none;
    border: none; }
  .research-focus-block .feature.focus-summary:after {
    display: none; }
  .research-focus-block .feature.focus-summary p:after {
    content: none;
    display: none; }
  .research-focus-block .feature.focus-summary:before {
    display: none; }

/* Cercles projets sur la page Biocatalysis */
.biocatalysis-projects-block {
  padding-top: 16px;
}
.biocatalysis-projects-block .project-circles-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .biocatalysis-projects-block .project-circle-link {
    position: relative;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1333333333em;
    line-height: 1.25;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    -webkit-transition: .2s ease;
            transition: .2s ease; }
    .biocatalysis-projects-block .project-circle-link:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(34, 72, 98, 0.45); }
    .biocatalysis-projects-block .project-circle-link span {
      position: relative;
      z-index: 1; }
  .biocatalysis-projects-block .project-circle-link:hover {
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); }
  .biocatalysis-projects-block .project-circle-link {
    background-image: url("images/Bg_logo.jpg") !important; }
  .biocatalysis-projects-block .project-circle-link.amdh {
    background-image: url("images/Bg_logo.jpg"); }
  .biocatalysis-projects-block .project-circle-link.coa-ligases {
    background-image: url("images/Bg_logo.jpg"); }
  .biocatalysis-projects-block .project-circle-link.dioxygenases {
    background-image: url("images/Bg_logo.jpg"); }
  .biocatalysis-projects-block .project-circle-link.nitrilases {
    background-image: url("images/Bg_logo.jpg"); }
  .biocatalysis-projects-block .project-circle-link.halogenases {
    background-image: url("images/Bg_logo.jpg"); }

.biocatalysis-old-projects-block {
  padding-top: 40px;
  background-color: #edf2f4;
}
.biocatalysis-old-projects-block .project-circles-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .biocatalysis-old-projects-block .project-circle-link {
    position: relative;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1333333333em;
    line-height: 1.25;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    -webkit-transition: .2s ease;
            transition: .2s ease; }
    .biocatalysis-old-projects-block .project-circle-link:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(34, 72, 98, 0.45); }
    .biocatalysis-old-projects-block .project-circle-link span {
      position: relative;
      z-index: 1; }
  .biocatalysis-old-projects-block .project-circle-link:hover {
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); }
  .biocatalysis-old-projects-block .project-circle-link {
    background-image: url("images/Bg_logo.jpg") !important; }
  .biocatalysis-old-projects-block .project-circle-link.old-1 {
    background-image: url("images/Bg_logo.jpg"); }
  .biocatalysis-old-projects-block .project-circle-link.old-2 {
    background-image: url("images/Bg_logo.jpg"); }
  .biocatalysis-old-projects-block .project-circle-link.old-3 {
    background-image: url("images/Bg_logo.jpg"); }
  .biocatalysis-old-projects-block .project-circle-link.old-4 {
    background-image: url("images/Bg_logo.jpg"); }

#synthetic-projects,
#biodegradation-projects {
  padding-top: 16px;
}
#synthetic-old-projects,
#biodegradation-old-projects {
  padding-top: 40px;
  background-color: #edf2f4;
}
.biocatalysis-old-projects-block + .latest-publications-block,
#synthetic-old-projects + .latest-publications-block,
#biodegradation-old-projects + .latest-publications-block {
  padding-top: 40px;
}

.synthetic-projects-block .project-circles-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .synthetic-projects-block .project-circle-link {
    position: relative;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.25;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    -webkit-transition: .2s ease;
            transition: .2s ease; }
    .synthetic-projects-block .project-circle-link:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(34, 72, 98, 0.48); }
    .synthetic-projects-block .project-circle-link span {
      position: relative;
      z-index: 1; }
    .synthetic-projects-block .project-circle-link:hover {
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); }
  .synthetic-projects-block .project-circle-link {
    background-image: url("images/Bg_logo.jpg") !important; }
  .synthetic-projects-block .project-circle-link.p1 {
    background-image: url("images/Bg_logo.jpg"); }
  .synthetic-projects-block .project-circle-link.p2 {
    background-image: url("images/Bg_logo.jpg"); }
  .synthetic-projects-block .project-circle-link.p3 {
    background-image: url("images/Bg_logo.jpg"); }
  .synthetic-projects-block .project-circle-link.p4 {
    background-image: url("images/Bg_logo.jpg"); }
  .synthetic-projects-block .project-circle-link.p5 {
    background-image: url("images/Bg_logo.jpg"); }
  .synthetic-projects-block .project-circle-link.p6 {
    background-image: url("images/Bg_logo.jpg"); }
  .synthetic-projects-block .project-circle-link.p7 {
    background-image: url("images/Bg_logo.jpg"); }
  .synthetic-projects-block .project-circle-link.p8 {
    background-image: url("images/Bg_logo.jpg"); }

@media screen and (max-width: 990px) {
  .biocatalysis-projects-block .project-circle-link {
    width: 165px;
    height: 165px; }
  .biocatalysis-old-projects-block .project-circle-link {
    width: 165px;
    height: 165px; }
  .synthetic-projects-block .project-circle-link {
    width: 165px;
    height: 165px; }
  .research-focus-block .feature {
    height: auto; } }

/*
 * Footer Styles
 */
/* Pied de page : widgets, icônes sociales, listes de liens. */
.site-footer {
  padding: 50px 0;
  background: linear-gradient(90deg, #8378AF 0%, #7b73ae 24%, #6f74af 44%, #6177b1 62%, #547cb3 80%, #4281B4 100%);
  color: #f4ffff; } /* Même couleur que le headband */

.widget {
  margin-bottom: 30px; }
  .widget .widget-title {
    font-size: 19px;
    font-size: 1.2666666667em;
    font-weight: 300;
    margin-bottom: 20px;
    color: #ffffff; }
  .widget address {
    margin: 20px 0;
    color: #e6ffff; }

.site-footer a {
  color: #d7ffff; }
  .site-footer a:hover {
    color: #ffffff; }

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .footer-list li {
    margin-bottom: 8px; }

.networks-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .networks-list li {
    width: 108px;
    min-width: 108px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0; }
  .networks-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .networks-list .network-logo {
    width: 100%;
    max-width: 108px;
    height: 40px;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center; }
  .networks-list .network-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    min-width: 108px;
    max-width: 108px;
    height: 40px;
    background: url("images/Plastnet-logo.png") center/contain no-repeat;
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    overflow: hidden; }
.networks-group-title {
  margin: 8px 0 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(231, 247, 255, 0.82);
}
.networks-list + .networks-group-title {
  margin-top: 16px;
}

.social-list li a {
  font-weight: 500; }

.contact-map-link {
  display: inline-block;
  margin-top: 12px; }

.contact-map-embed {
  margin-top: 12px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4); }
  .contact-map-embed iframe {
    display: block;
    width: 100%;
    height: 170px;
    border: 0; }

.colophon {
  color: #e6ffff;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 10px;
  padding-top: 15px; }

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #cddbe1;
  text-align: center;
  color: #69acc7;
  display: inline-block;
  padding-top: 8px;
  -webkit-transition: .3s ease;
          transition: .3s ease; } /* Icônes rondes avec animation au survol */
  .social-links a:hover {
    background: #69acc7;
    border-color: #69acc7;
    color: white; }

@media screen and (min-width: 992px) {
  .site-footer .row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.15fr);
    column-gap: 40px;
    row-gap: 12px;
    align-items: start;
  }
  .site-footer .row > .col-md-4 {
    float: none;
    width: auto;
  }
  .site-footer .row > .col-md-4:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .site-footer .row > .col-md-4:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .site-footer .row > .col-md-4:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
}

.profile-photo-col {
  text-align: center;
  padding-left: 0;
}

.page-head.profile-page-head {
  padding: 0;
}

.profile-main-block {
  padding-top: 0;
  margin-top: -60px;
}
.profile-main-block p {
  text-align: justify;
}
.profile-main-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .profile-main-row {
    display: block;
  }
}

.profile-portrait {
  width: 300px !important;
  height: 300px !important;
  max-width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: center;
  border: 1px solid #d7e0e8;
  box-shadow: 0 10px 26px rgba(61, 95, 126, 0.2);
}
.profile-text-col {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .profile-photo-col {
    text-align: center;
    padding-left: 15px;
  }
  .profile-portrait {
    width: 240px !important;
    height: 240px !important;
    margin-bottom: 16px;
  }
}

.profile-contact-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .profile-contact-links a {
    color: #69acc7;
    text-decoration: none; }
  .profile-contact-links .linkedin-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cddbe1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: .3s ease;
            transition: .3s ease; }
  .profile-contact-links .mail-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px; }
    .profile-contact-links .mail-link i {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #cddbe1;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
  .profile-contact-links .linkedin-icon:hover,
  .profile-contact-links .mail-link:hover i {
    background: #69acc7;
    border-color: #69acc7;
    color: white; }

.arrow-list {
  list-style: none;
  list-style-image: url(images/Bg_logo.jpg);
  margin-left: 20px;
  margin-bottom: 30px; }
  .arrow-list li {
    padding: 10px 0 10px 10px; }
    .arrow-list li a {
      color: #8e9ca5;
      -webkit-transition: .3s ease;
              transition: .3s ease; }
      .arrow-list li a:hover {
        color: #69acc7; }
.arrow-list.has-border li {
    border-bottom: 1px solid #edf2f4; }
    .arrow-list.has-border li:last-child {
      border-bottom: none; }

.alumni-list {
  list-style-image: none;
  margin-left: 0;
}
.alumni-list li {
  padding-left: 0;
}

/* Home hero: compact video without overlay text */
.hero.hero-compact {
  position: relative;
}
.hero.hero-compact .slides li.compact-video-slide {
  min-height: 0;
  height: auto;
  padding: 0;
  background: transparent;
  line-height: 0;
}
.hero.hero-compact .slides li.compact-video-slide:before,
.hero.hero-compact .slides li.compact-video-slide:after {
  display: none;
}
.hero.hero-compact .hero-compact-video {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  -o-object-fit: contain;
     object-fit: contain;
  object-position: center center;
}
.site-header + .hero.hero-compact {
  margin-top: 0;
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 8px;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(8, 14, 25, 0.12);
  color: #f7fbff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  padding: 0;
  box-shadow: 0 5px 16px rgba(8, 14, 25, 0.35);
  -webkit-animation: hero-scroll-cue-bob 1.8s ease-in-out infinite, hero-scroll-ring 1.8s ease-in-out infinite;
          animation: hero-scroll-cue-bob 1.8s ease-in-out infinite, hero-scroll-ring 1.8s ease-in-out infinite;
  -webkit-transition: .22s ease;
          transition: .22s ease;
  z-index: 6;
}
.hero-scroll-cue:hover,
.hero-scroll-cue:focus {
  color: #ffffff;
  opacity: 0.92;
}
.hero-scroll-cue span {
  display: block;
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.95);
  text-shadow: 0.9px 0 #ffffff, -0.9px 0 #ffffff, 0 0 #ffffff;
  -webkit-animation: none;
          animation: none;
}
@-webkit-keyframes hero-scroll-cue-bob {
  0%, 100% { -webkit-transform: translateX(-50%) translateY(0); transform: translateX(-50%) translateY(0); }
  50% { -webkit-transform: translateX(-50%) translateY(4px); transform: translateX(-50%) translateY(4px); }
}
@keyframes hero-scroll-cue-bob {
  0%, 100% { -webkit-transform: translateX(-50%) translateY(0); transform: translateX(-50%) translateY(0); }
  50% { -webkit-transform: translateX(-50%) translateY(4px); transform: translateX(-50%) translateY(4px); }
}
@-webkit-keyframes hero-scroll-ring {
  0%, 100% {
    box-shadow: 0 5px 16px rgba(8, 14, 25, 0.35), 0 0 10px rgba(90, 130, 255, 0.38), 0 0 20px rgba(116, 88, 190, 0.3);
    border-color: rgba(255, 255, 255, 0.68);
  }
  50% {
    box-shadow: 0 5px 18px rgba(8, 14, 25, 0.38), 0 0 16px rgba(90, 130, 255, 0.62), 0 0 34px rgba(116, 88, 190, 0.55);
    border-color: rgba(208, 193, 255, 0.9);
  }
}
@keyframes hero-scroll-ring {
  0%, 100% {
    box-shadow: 0 5px 16px rgba(8, 14, 25, 0.35), 0 0 10px rgba(90, 130, 255, 0.38), 0 0 20px rgba(116, 88, 190, 0.3);
    border-color: rgba(255, 255, 255, 0.68);
  }
  50% {
    box-shadow: 0 5px 18px rgba(8, 14, 25, 0.38), 0 0 16px rgba(90, 130, 255, 0.62), 0 0 34px rgba(116, 88, 190, 0.55);
    border-color: rgba(208, 193, 255, 0.9);
  }
}
@media screen and (max-width: 767px) {
  .hero.hero-compact .slides li.compact-video-slide {
    height: auto;
    padding: 0;
  }
  .hero-scroll-cue {
    width: 29px;
    height: 29px;
    font-size: 18px;
    bottom: 5px;
    padding: 0;
  }
}

.about-intro-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -14px;
}
.about-video-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.about-lab-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.about-intro-row p {
  text-align: justify;
}
.about-intro-row .section-title {
  text-align: center;
  margin-bottom: 12px;
}
.research-focus-block {
  padding-top: 16px;
}
.resources-block {
  padding-top: 40px;
}
.latest-publications-block {
  padding-top: 40px;
}
.section-under-construction .container {
  position: relative;
}
.construction-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(250, 252, 254, 0.68);
  border: 2px solid rgba(58, 86, 110, 0.35);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  pointer-events: none;
}
.construction-overlay-badge {
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid #2f5e84;
  background: rgba(255, 255, 255, 0.92);
  color: #1f425d;
  font-size: 14px;
  font-size: 0.9333333333em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.construction-highlight {
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 640px) {
  .construction-overlay {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
  }
  .construction-overlay-badge {
    font-size: 12px;
    font-size: 0.8em;
    padding: 10px 14px;
  }
}

/* French pages: stabilize long page-head titles to avoid layout shifts */
html[lang="fr"] .page-head.research-head .page-head-brand {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
html[lang="fr"] .page-head.research-head .page-head-copy {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}
html[lang="fr"] .page-head.research-head .page-head-copy .page-title {
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  text-transform: none;
  overflow-wrap: anywhere;
}
html[lang="fr"] .page-head.research-head .page-head-copy small {
  max-width: 900px;
  font-size: clamp(13px, 1.65vw, 15px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  html[lang="fr"] .page-head.research-head {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  html[lang="fr"] .page-head.research-head .page-head-copy {
    padding-left: 10px;
    padding-right: 10px;
  }
  html[lang="fr"] .page-head.research-head .page-head-copy .page-title {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.12;
  }
}

/* French top header: prevent long lab subtitle from breaking header layout */
html[lang="fr"] .branding .logo-type {
  max-width: 370px;
}
html[lang="fr"] .branding .logo-type .site-description {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 1.15;
}
@media screen and (max-width: 1360px) {
  html[lang="fr"] .branding .logo-type {
    max-width: 310px;
  }
  html[lang="fr"] .branding .logo-type .site-description {
    font-size: 11px;
  }
}
@media screen and (max-width: 1180px) {
  html[lang="fr"] .branding .logo-type {
    max-width: 240px;
  }
}
@media screen and (max-width: 1060px) {
  html[lang="fr"] .branding .logo-type .site-description {
    display: none;
  }
}
.page-head + .main-content > .fullwidth-block:first-child {
  padding-top: 56px;
}
.hero + .main-content > .fullwidth-block:first-child {
  padding-top: 56px;
}
@media screen and (max-width: 991px) {
  .about-intro-row {
    display: block;
  }
  .about-video-wrap {
    margin-bottom: 20px;
  }
}





.communications-block {
  padding-top: 36px;
}
.communications-list {
  max-width: 980px;
  margin: 0 auto;
}
.communication-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border: 1px solid #d7e0e8;
  border-radius: 10px;
  background: #f3f6f9;
  padding: 14px 16px;
  margin-bottom: 14px;
  -webkit-transition: .2s ease;
          transition: .2s ease;
}
.communication-card:hover {
  background: #ffffff;
  border-color: #b8cddd;
  box-shadow: 0 8px 18px rgba(84, 126, 166, 0.16);
}
.communication-card-thumb {
  width: 82px;
  height: 82px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #d3dde6;
}
.communication-card-body {
  min-width: 0;
}
.communication-card-title {
  margin: 0 0 6px;
  font-size: 24px;
  font-size: 1.6em;
  font-weight: 400;
  color: #8e9ca5;
}
.communication-card p {
  margin: 0;
}
.communication-card-meta {
  margin-top: 8px !important;
  font-size: 13px;
  color: #95a4ae;
}
@media screen and (max-width: 640px) {
  .communication-card {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .communication-card-thumb {
    width: 66px;
    height: 66px;
  }
  .communication-card-title {
    font-size: 20px;
    font-size: 1.3333333333em;
  }
}

.join-opportunities-block {
  padding-top: 34px;
}
.join-opportunity-section {
  margin-bottom: 26px;
}
.join-opportunity-section:last-child {
  margin-bottom: 0;
}
.join-section-title {
  margin-bottom: 14px;
  color: #8e9ca5;
  font-weight: 700;
}
.join-opportunities-block .communication-card-title {
  min-height: 2.7em;
}
.join-opportunities-block .communication-card {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.join-opportunities-block .communication-card-thumb {
  width: 76px;
  height: 76px;
}
.join-opportunities-block .communication-card-body {
  padding-top: 2px;
}
@media screen and (max-width: 640px) {
  .join-opportunities-block .communication-card-title {
    min-height: 0;
  }
  .join-opportunities-block .communication-card {
    gap: 10px;
  }
}
