*,
*::before,
*::after {
  box-sizing: inherit;
}

:root {
  --black: #2F2F2F;
  --yellow-secondary: #CCAB73;
  --green-primary: #044443;
  --grey-bg: #F0F4F5;
  --green-bg: #096c6a;
}

/*Font*/
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');


/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */


html {
  color: #000000;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */

  -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-box-sizing:border-box;
  box-sizing:border-box;
	font-size: 62.5%; /* R�-�quilibrage du Rem face au Pixel pour des calculs simples / 1.0rem = 10px */
  font-weight: 200;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #FFFFFF;
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  /* Attention les fonctions JS scroll ne marcheront pas avec overflow-x: hidden; */
  overflow-x: hidden;
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 1.1vw, 1.8rem);
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #FABA67;
  color: #FFF;
  text-shadow: none;
}

::selection {
  background: #FABA67;
  color: #FFF;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
 .line {
  display: flex;
  justify-content: center;
}
hr {
  display: block;
  height: 1px;
  width: 80%;
  border: 0;
  border-top: 1px solid var(--yellow-secondary);
  margin: 0px;
  padding: 0;
}
footer hr {
  z-index: 9999;
  position: relative;
}
header hr {
  background: var(--yellow-secondary);
  width: 100%;
  height: 4px;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

a {
	text-decoration:none;
	transition: all 0.2s ease;
}

ul {
  padding-left: 20px;
}

main li {
  list-style-type: square;
}
li::marker {
  color: #ccab73;
}
/* ==========================================================================
   Normalize
   ========================================================================== */

img {
	max-width: 100%;
}

main {
  display: block;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 12px;
  outline: none;
  border: 2px solid #284995;
  height: 54px;
  min-width: 200px;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Accessiblité
 */
div#cdu_zone {
  display: none;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.alignleft {
	float: left;
	margin: 0 20px 20px 0;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.alignright {
	float: right;
	margin: 0 0 20px 20px;
}

.space-between {
  display: flex;
  justify-content: space-between;
}

.home-container {
	width: 100%;
  padding: 0 40px;
  padding: 0 clamp(20px, 2.2vw, 40px);
	margin: auto;
}

.container {
  max-width: 1240px;
  padding: 0 40px;
  padding: 0 clamp(20px, 2.2vw, 40px);
	margin: auto;
  position: relative;
}

h1, h2 {
  font-family: 'Roboto', sans-serif;
  color: var(--yellow-secondary);
  font-weight: 400;
  position: relative;
  width: fit-content;
  margin: 32px auto 42px;
  display: flex;
  justify-content: center;
}
 h3, h4{
  font-family: 'Crimson Text', serif;
  color: var(--black);
 }
h1 {
    font-family: 'Roboto', serif;
    font-size: 3rem;
    font-size: clamp(2.2rem, 1.2vw, 3rem);
    font-weight: 500;
    margin: 52px 0 32px 0;
    width: fit-content;
    display: flex;
    justify-content: left;
    position: relative;
    color: var(--yellow-secondary);
}
h1:after, h2:after {
    content: '';
    width: 82px;
    height: 1px;
    background: var(--black);
    position: absolute;
    bottom: -16px;
}
h1.titreH1.titreH1Actu {
    margin: 52px auto 32px;
    justify-content: center;
}
.page-actualites h1 {
    justify-content: center;
}

.netc-editor h2 {
  font-size: 2.6rem;
  /* clamp(MIN, VAL, MAX) */
  font-size: clamp(2rem, 1.1vw, 2.6rem);
  font-weight: 500;
  color: #8EC549;
}

.netc-editor h3 {
  font-size: 2rem;
  /* clamp(MIN, VAL, MAX) */
  font-size: clamp(1.6rem, 1.1vw, 2rem);
  font-weight: 500;
  color: #096495;
}

.netc-editor p,
.netc-editor span,
.netc-editor div,
.netc-editor li {
  font-weight: 300;
  line-height: 1.6;
}

.netc-editor a {
  color: #EDA13D;
  text-decoration: underline;
  font-weight: 400;
}

table.table_liste {
  width: 100%;
  border-spacing: 0;
  font-size: 1.6rem;
  /* clamp(MIN, VAL, MAX) */
  font-size: clamp(1.2rem, 0.9vw, 1.6rem);
  font-weight: 400;
  margin-bottom:15px;
}

table.table_liste thead tr {

}

table.table_liste th, table.table_liste thead td {
  text-align: left;
  color: #FFF;
  padding: 10px;
  background-color: #007FC3;
}
table.table_liste th:first-child, table.table_liste thead td:first-child {  
  background-color: #007FC3;
  border-radius: 10px 0px 0px 0px;  
}
table.table_liste th:last-child, table.table_liste thead td:last-child {  
  background-color: #007FC3;
  border-radius: 0px 10px 0px 0px;  
}

table.table_liste tr:last-child td {
    border-bottom: 1px solid rgba(0, 127, 195, 0.3);
}

.netc-editor tr {
  background-color: #E5F6FF;
}

table.table_liste tbody tr:nth-child(even) {
  background-color: rgba(230,230,230,0.2);
}

table.table_liste tbody td {

}

table.table_liste td {
  padding: 10px;
}

strong {
    font-weight:400;
}

/* boutons */
.btn-wrapper {
    margin:20px auto;  
}

.btn {
  display: block;
  padding: 16px 24px;
  text-align: center;
  
/* MODIFS BEN 06/01/2023*/
/*  max-width: 300px;*/
  max-width: 330px;
/* FIN MODIFS */
  
  color: #fff;
  background-color: var(--green-primary);
  border-radius: 0px;
  transition: 0.2s ease-in all;
}

/* MODIFS BEN 06/01/2023*/
.btn:hover {
  background-color: #ccab73;
  color: #fff;
}
/* FIN MODIF */

.btn-vert {
    background-color: var(--green-primary);
}
.btn-vert:hover {
  box-shadow: inset 700px 0 0 0 var(--green-bg);
}

.btn-bleu {
    background-color: #284995;
    width: 239px;
    max-height: 54px;
}
.btn-border-bleu {
    background-color: #28499500;
    width: 239px;
    max-height: 60px;
    color: #284995;
    border: 4px solid #284995;
}
.btn-bleu:hover {
    background-color: #284995;
}

.btn-line {
  background: none;
  border-bottom: 2px solid #284995;
  color: #284995;
  height: 34px;
  text-align: left;
  padding: 8px 0;
}
a.btn.btn-tertiary {
  background: none;
  color: var(--green-primary);
  text-align: left;
  font-size: 15px;
  padding: 0px;
  width: fit-content;
  /*border-bottom: 2px solid var(--green-primary);*/
  text-transform: uppercase;
}
.btn-footer {
    display:block;
    padding: 8px 12px;
    text-align:center;
    color:#fff;    
    background-color: #096495;
    border-radius: 4px;
    transition:0.5s ease-in all;
    font-size:12px;
    margin:10px 0;
}

.btn-footer:hover {
    background-color: #096495;
}



/*-------------- HEADER */

header.layout {
  width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #044443fa;
}

#topbar {
  width: 100%;
  position: relative;
  max-width: 1240px;
  height: 88px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

#branding {
  text-align: right;
  width: 20%;
  min-width: 270px;
  z-index: 888;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background: #044443c2;*/
}

#branding a {
  display: block;
  margin:20px;
  text-align: center;
}
div#branding img {
  width: 100%;
}
#menusbar {
    /*background-color:#ffffff;*/
    width: calc(100% - 60px);
    display: flex;
    flex-direction:column;
}

#raccourcisbar {
  width: calc(100% - 60px);
  display: flex;
  flex-direction: column;
}

#raccourcisbar a {
    display:flex;
    text-decoration:none;
    margin:4px 8px;    
}

#raccourcisbar a img {
    width:40px;
    height:40px;
    
}

#raccourcisbar a span {
    display:block;
    color:#FFF;
    font-size: 1.4rem;
    margin:3px 6px;
}

#raccourcisbar a#trigger-call {
    display:none;
}

#languesResponsive {
    display: flex;
    position: absolute;
    bottom: 16px;
    left: 24%;
} 
/*

.menubar {
    position: relative;
    display: flex;
    align-items:center;
    height:100%;
} 

*/


.menubar {
  position: relative;
  display: flex;
  width:100%;
  height:100%;
}

.menubar-fond {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.rs-header {
    display: flex;
    margin: 8px 24px;
    align-items: center;
}
.rs-header a {
    width: 20px;
    margin: 0 4px;
}
.rs-header p {
  margin: 0px;
  color: white;
}

#raccourcisbar #action-menu-resp {
  display: none;
}

.main-nav__list:first-child {
  justify-content: space-evenly;
}
.main-nav__list:last-child {
  justify-content: flex-end;
}

.sidebar {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 60px;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(30px);
  padding-top: 110px;
  transition: all 0.2s ease;
}
.sidebar ul {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
.sidebar ul li {
  margin: 10px 0;
}
.sidebar ul li a, .sidebar ul li button {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  padding: 0;
  justify-content: center;
  transition: all 0.2s ease;
}
.sidebar .tooltip {
  position: absolute;
  left: -10px;
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  color: #FFF;
  background-color: rgba(49, 49, 48, 0.9);
  border-radius: 4px;
  padding: 5px 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-80%);
  transition: all 0.2s ease;
}
.sidebar.js-scrolled {
  padding-top: 0;
}
.sidebar ul li a:hover, .sidebar ul li button:hover {
  transform: scale(1.1);
}
.sidebar ul li a:hover .tooltip, .sidebar ul li button:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-100%);
}

@media (max-width: 1025px) {
  
.nav-open .sidebar {
  display: flex;
}
.sidebar {
  display: none;
  position: absolute;
  top: unset;
  right: 0;
  bottom: 0;
  flex-direction: row;
  width: 100%;
  height: 50px;
  padding-top: 0;
  background-color: #FCE4D9;
}
main {
  padding-right: 0px;
}
}

@media (max-width: 1025px) {
    #menusbar {
        width:100%;
    }    
    #topbar {
        width:100%;
        
        flex-direction:column-reverse;
    }
    
    #branding {
        text-align:center;
    }
    
    #raccourcisbar {
      width: 100%;
      padding-right: 0px;
      position: absolute;
      top: 30%;
      left: 88%;
        
    }
    
    #raccourcisbar a span {
        display:none;
    }
    a.main-lvl1-nav__link img {
      display: none;
  }
    
}



/* menu principal */
.main-nav {
    z-index:999;
}

.main-nav a {
    text-decoration:none;
    /* MODIFS BEN 06/01/2023*/
	/*font-weight: 500;*/
    font-weight: 400;
	/* */
}
li.main-lvl1-nav__item:last-of-type .main-lvl2-nav__list {
  width: auto;
}
  .main-lvl1-nav__item + .main-lvl1-nav__item {
    /*
    margin-left: 40px;
    margin-left: clamp(20px, 2.2vw, 40px);
    */
   position: relative;
  }


@media (min-width: 1025px) {

  .main-nav {
    display: flex;
    justify-content: space-between;
    width:100%;
  }

  /*-------------- MENU > LVL 1 */

  .main-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
    width:100%;
  }

  .main-lvl1-nav__item {
    position: relative;
    margin: 0 8px;
  }

  .main-lvl1-nav__item + .main-lvl1-nav__item {
    /*
    margin-left: 40px;
    margin-left: clamp(20px, 2.2vw, 40px);
    */
   position: relative;
  }



  .main-lvl1-nav__link {
    color: var(--yellow-secondary);
    font-weight: 400;
    font-size: 2rem;
    font-size: clamp(1.8rem, 1.2vw, 2rem);
    white-space: nowrap;
    
  }

  .main-lvl1-nav__link:hover {
    color: var(--yellow-secondary);
  }
  .main-lvl1-nav__link:hover:after {
    /*background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M.626 5.543a1 1 0 011.414 0L6 9.503l3.96-3.96a1 1 0 011.414 1.414l-4.667 4.667a1 1 0 01-1.414 0L.626 6.957a1 1 0 010-1.414z' fill='%23BB7111'/%3E%3C/svg%3E");*/
  }

  .main-lvl1-nav__link::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    /*
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M.626 5.543a1 1 0 011.414 0L6 9.503l3.96-3.96a1 1 0 011.414 1.414l-4.667 4.667a1 1 0 01-1.414 0L.626 6.957a1 1 0 010-1.414z' fill='%23fff'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    */
    margin: 0 0 3px 4px;
    transition: all 0.2s ease;
  }

  /*-------------- MENU > LVL 2 */

  /*
  .main-lvl2-nav__list-wrapper {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 10;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    padding-top: 15px;
    transition: all 0.2s ease;
  }
  */
  
  .main-lvl1-nav__item:hover .main-lvl2-nav__list {
    opacity: 1;
    visibility: visible;
    padding-top: 34px;
  }  

  .main-lvl2-nav__list {

    opacity: 0;
    visibility: hidden;  
    transition: all 0.2s ease;
  
    flex: none;
    position: absolute;
    z-index: 10;
    /*top: 27px;*/
    right: 0;
    left: 0;
    
    list-style: none;
    padding: 0;
    margin: 0 auto 0 auto;
    width: 260px;
    /*background-color: #FFF; */
    /*
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            */
  }
  
  .main-lvl2-nav__item {
   background-color: #FFF;
   padding:5px;
   
  }

  .main-lvl2-nav__list::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 0;
    left: 0;
    display: block;
    width: 15px;
    height: 8px;
    margin: auto;

  }

  .main-lvl2-nav__item + .main-lvl2-nav__item {
    /*margin-top: 5px;*/
  }

  .main-lvl2-nav__link {
    display: block;
    font-size: 1.8rem;
    font-size: clamp(1.4rem, 1.1vw, 1.8rem);
    color: #000000;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 2px;
    letter-spacing: -0.5px;
  }

  .main-lvl2-nav__link:hover {
    color: var(--green-primary);
    background-color: hsl(225, 3%, 90%);
  }
  
  .mm-spn.mm-spn--navbar:after {
    font-weight:400;
    color: #254B6C;
  }
}

.bandeauHeader {
    width: 100%;
    max-width: 600px;
    position: absolute;
    text-align: left;
    z-index: 9999;
    left: 72px !important;
    top: 32% !important;
    color: white;
    /* transform: translate(-50%,-50%); */
    margin: 0;
    padding: 15px 30px;
}
.headerContent:before {
    content: '';
    /*height: 100%;
    width: 80%;*/
    background-image: linear-gradient(to right,rgba(0, 0, 0, 0.4), transparent);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.header-bandeau {
    background-color:#FAFAFA;
    width:100%;
    height: calc(100vh - 112px);
    position:relative;
}

.header-bandeau .lSSlideOuter,
.header-bandeau .lSSlideWrapper {
  width: 100%;
  height: 100%;
}
ul#content-slider {
    height: unset !important;
}
.content-slider li {
    max-height: none !important;
}

.header-bandeau .js-slider-fade {
  width: 100%!important;
  height: 100%!important;
  padding-bottom: 0!important;
}

/* bandeau principal */
.header-bandeau .js-slider-fade {
  width: 100%!important;
  height: 100%!important;
  padding-bottom: 0!important;
}

.js-slider-fade {
  background-color: #333333;
}

.js-slider-fade picture {
  display: block;
  width: 100%;
  height: 100%;
}

.js-slider-fade picture img {
  width: 100%;
}

@supports (object-fit: cover) {
  /* IF object-fit IS SUPPORTED */
  .js-slider-fade picture img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

/* cache le bouton Confort+*/
#uci_link {
    display:none;
}

.header-bandeau-slogan {
    /* background: rgba(255, 255, 255, 0.2); */
    /* backdrop-filter: blur(40px); */
    position: absolute;
    bottom: 32%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 998;
}

.header-bandeau-slogan-texte {
    color:#fff;
    margin:5px 0;
}

/* actus : element pour accueil dans index.css */

.actualites--item {
  margin: 0 0 5px 0;
  background-color: #FFF;
  overflow: hidden; 
  display: flex;
}

.actualites--item a {
    position:relative;
    text-decoration:none;  
    width: 100%;
}
.page-accueil picture {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}
.page-accueil .actualites--item a {
    position: relative;
    text-decoration: none;
    display: flex;
    width: 86%;
    width: 100%;
    background-size: 50%;
}
.page-accueil .actualites--item a img {
    border: 0px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 8px;
}

.page-accueil .actualites--item .image-wrapper {
    width:100%;
    background-repeat:no-repeat;
    background-position:center;
    background-size:50%;
}

.page-accueil .actualites--item .image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.actualites--item .image-wrapper picture img {
  width: 100%;
}

@supports (object-fit: cover) {
  /* IF object-fit IS SUPPORTED */
  .actualites--item .image-wrapper picture img {
    object-fit: cover;
    object-position: top center;
  }
}

.actualites--item-content {
    padding:0px 12px;
    position:relative;
    width: 50%;
}
.page-accueil .actualites--item-content {
    width: 100%;
    height: 45%;
}
@media (max-width: 720px) {
.page-accueil .actualites--item-content {
    height: auto;
}

}
.actualites--item-content a {
  flex-direction: column;
}
.actualites--item-theme {
    color:#fff;
    padding:4px 8px;
    font-size:14px;
    border-radius:4px;
    position:absolute;
    top:-15px;
    
    background-color:#8EC549;
}

.actualites--item-titre {
    color: var(--black);
    font-size:18px;
    font-weight:400;
    margin:5px 0;
}
.actualites--item-content h1 {
    color: var(--black);
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight:  600;
}
.actualites--item-content h1:after {
    display: none;
}
.actualites--item-description b, .actualites--item-description strong{
  color: var(--yellow-secondary);
}
.actualites--item-description {
  color: var(--black);
}
.actualites--item-description p {
    /*display: none;*/
}
#actualites-wrapper .actualites--item-description {
    display: none;
}
.actualites--item-date {
    font-size:14px;
    text-align: left;
    color: var(--yellow-secondary);
    margin-top:15px;
}
.article .actualites--item-date {
    margin-top: 32px;
}

/* agenda : element pour accueil dans index.css */

.agenda--item {
  margin: 0 0 5px 0;
  background-color: #FFF;
  border-radius: 4px;
  overflow: hidden; 
}

.agenda--item a {
    position:relative;
    text-decoration:none;  
    
    height: 100%;
    display: block; 
}

.agenda--item .image-wrapper {
    width:100%;
    height:240px;
    background-color:#F6f6f6;
    background-image:url('../images/logo.svg');
    background-repeat:no-repeat;
    background-position:center;
    background-size:50%;
}

.agenda--item .image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.agenda--item .image-wrapper picture img {
  width: 100%;
}

@supports (object-fit: cover) {
  /* IF object-fit IS SUPPORTED */
  .agenda--item .image-wrapper picture img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}

.agenda--item-content {
    padding:12px 16px;
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(40px);
    /* Note: backdrop-filter has minimal browser support */
    
    border-radius: 0px 0px 4px 4px;
    
}



.agenda--item-titre {
    color:#fff;
    font-size:18px;
    font-weight:400;
}

.agenda--item-date {
    padding:4px 8px;
    font-size:14px;
    border-radius:4px;
    text-align:center;
    background-color:#007FC3;
    color:#fff;
    
    
    position: absolute;
    top: 10px;
    right: 10px;
    margin-top:15px;
}

/* fil d'ariane */
#breadcrumb {
 
}

.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
    margin:20px 0;
    background-color: #E6F6FF;
    border-radius: 4px; 
    padding:10px;  
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: var(--yellow-secondary);
  font-size: 1.2rem;
  font-weight: 300;
  flex-wrap: wrap;
}

.breadcrumb__item img {
  margin-right: 5px;
}

.breadcrumb__item + .breadcrumb__item {
  padding-left: 10px;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '>';
  padding-right: 10px;
  color: #007FC3;
  line-height: 1;
  font-weight: 600;
}
.breadcrumb__item a {
	color:#007FC3;
}
.breadcrumb__item a:hover{
	color:#007FC3;
}

.breadcrumb__item > a {
  display: flex;
  align-items: center;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  color:#007FC3;
}

.breadcrumb__item > a:hover {
  opacity: 0.6;
}



/* footer */
footer {
    background-color: var(--green-primary);
    padding-top:12px;
}
#footer-content {
    background-color: var(--green-primary);
}

#footer-content .container {
    display: flex;
    justify-content: space-around;
    padding: 20px 20px 20px 277px;
}
div#footer-col-logo {
    position: absolute;
    left: 87px;
    bottom: -25px;
}
.footer-col:last-of-type {
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-partenaires {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
}
.footer-col {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.8rem;
    font-size: clamp(1.6rem, 1.1vw, 2.0rem);
    font-weight: 400;
    margin: 0;
}

.footer-col .footer-title {
  color: #ccab73;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid;
  font-family: 'Roboto', sans-serif;
}
.footer-col:last-of-type input {
  margin: 0;
  height: 40px;
  border: none;
  padding: 0 8px 0px;
  font-size: 14px;
}
form.newsletter-form {
  display: flex;
  gap: 8px;
  flex-direction: column;
  margin-top: 8px;
}
.footer-col:last-of-type input[type="text"]::placeholder {
  color: #ccab73;
  font-size: 12px;
}
.footer-col a.submitNL:hover {
  background: #ccab73;
  padding: 7.4px;
  color: white;
}
span.inputNL {
  position: relative;
}
.inputNL:after {
  content: "";
  background-image: url(../images/icones/avion.png);
  width: 24px;
  height: 24px;
  background-size: cover;
  position: absolute;
  right: 24px;
  bottom: 9px;
  /* position: relative; */
}
.footer-col input[type="submit"]:after {
  content: "";
  background-image: url(images/icones/avion.png);
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0px;
  bottom: 0;
}
.footer-col input[type="submit"] {
  background: #ccab73;
  color: white;
  cursor: pointer;
  min-width: 140px !important;
  padding-left: 24px;
  text-align: left;
}
.footer-rs .footer-title {
  border-bottom: 0px;
  font-size: 16px;
}
.footer-col:last-of-type div {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-col p {
  color: white;
  margin: 4px 0;
      font-size: 12px;
}
.__captcha label {
  width: 32px !important;
  padding: 8px;
  margin: 0 !important;
}

.__captcha {
  margin: 0 !important;
  width: -webkit-fill-available !important;
  display: flex !important;
  flex-direction: column;
  font-size: 12px;
  gap: 0px !important;
  padding: 4px !important;
}
.footer-col a.submitNL div {
  display: flex;
  flex-direction: row-reverse;
  font-weight: 500;
  align-items: center;
  font-size: 14px;
}
.footer-col a.submitNL {
  background: #ccab73;
  padding: 6px 8px;
  height: 34px;
}
.footer-col a.submitNL img {
  width: 24px;
}

.footer-col a {
    color: white;
    font-size: 12px;
}
.footer-col a:hover {
  color: var(--yellow-secondary);
}
.footer-col ul {
  padding: 0px;
  margin: 0px;
}
.footer-col li {
    list-style-type: none;
    width: 24px;
}
.footer-col li a {
  color: white;
    line-height: 32px;
    font-weight: 500;
    text-transform: uppercase;
}
#footer-col-logo {
    text-align:center;
}
.footer-col li img {
  max-width: 24px;
}
.footer-col li:nth-of-type(1) img {
    max-width: 16px;
}

#logo-footer {
    max-width: 164px;
    height: auto;
    margin: auto;
}

#slogan-footer-brix {
    font-size:22px;
    text-align:center;
    color: #FFF;
    font-weight:400;
    letter-spacing: 4px;
}
#slogan-footer-commune {
    font-size:12px;
    letter-spacing: 2px;
    text-align:center;
    text-transform:uppercase;
    display:block;
    color: #FFF;
    font-weight:300;
}

#mini-carte-footer {
    width:200px;
    height:170px;
}


footer .rs-list {
  list-style: none;
  padding: 10px 0 8px 8px;
  margin: 0;
  display: flex;
  text-align: center;
}

footer .rs-list > * + * {
  margin-left: 20px;
  margin-left: clamp(5px, 1.1vw, 20px);
}

#footer-bas {
    background-color: var(--green-primary);
}
#footer-bas .container {
    display: flex;
    justify-content: center;
    font-size: 10px;
    padding: 6px;
    color: var(--yellow-secondary);
}

#footer-bas .container a {
    color:#FFF;
    text-decoration:none;
    color: var(--yellow-secondary);
}
#footer-bas .container a:hover {
    color:#FFF;
    text-decoration:underline;
}


@media (max-width: 1100px) {
#logo-footer {
    max-width: 122px;
    height: auto;
    margin: auto;
}
#footer-content .container {
    padding: 20px 20px 20px 20px;
}
div#footer-col-logo {
    position: relative;
    left: 0;
    bottom: 0;
}

}


/* ------------------------
    POPIN RECHERCHE
------------------------ */
#popin-recherche {
            position:fixed;
            z-index: 1000;
            top:0;
            left:0;
            width:100%;
            height:100%;
            background-color:rgba(255,255,255,0.7);
            backdrop-filter: blur(10px); 
            display:none;
        }
#popin-recherche-content {
            width:100%;
            height:100%;        
            display:flex;
            align-items: center;
            justify-content: center; 
        }

#search-champs {
    
}   
#search-mots {
    color: #444;
    font-weight: 300;
    width: 300px;
    margin-bottom: 10px;
    padding: 8px 16px;
}

#search-btns {
    display:flex;
    justify-content: space-between; 
}

#search-submit, #search-cancel {
    color: #FFF;
    font-weight: 300;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px 16px;
}  

#search-submit{
    background-color: #8EC549;
    margin-right: 10px;
}
#search-submit:hover {
    background-color: #60971A;
}  

#search-cancel{
    background-color: #EE743B;
}
#search-cancel:hover {
    background-color: #EE743B;
}     


.contact {
    padding: 52px 0 32px;
}

/* --------------------------
          INDEX 
-------------------------- */
.bandeauHeader h2 {
  color: white;
}
/* accès rapide étalons */
 #acces-rapides {
  padding:24px 0;
  position: relative;
  background: #F0F4F5;
}
 #acces-rapides .container:last-of-type {
  display:flex;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right 0% bottom 4%;
    padding-bottom: 42px; 
}
#acces-rapides .container h2 {
    padding-left: 6px;
}
 .acces-rapide {
display: block;
text-decoration: none;
text-align: left;
margin: 8px;
border-bottom: 4px solid var(--yellow-secondary);
background: #D9DFDF;
color: var(--black);
}
 a.acces-rapide:hover {
box-shadow: 2px 2px 7px 0px rgb(28 28 28 / 20%);
}
.acces-rapide .desc-etalon {
padding: 0 24px;
}
a.acces-rapide:hover {
    color: var(--green-primary);
}
 .acces-rapide span {
  display:block;
  color:#000;
  font-size: 1.8rem;
  font-weight: 700;
  
  text-align:center;
}
@media (max-width: 1000px) {
.page-accueil .blue-line {
  display: none;
}

}

/* actus accueil */
.page-accueil #home-actus {
  padding:16px 0;
  position:relative;
  padding: 16px 0 52px;
}
.page-accueil #home-actus::before {
  content: " ";
  position:absolute;
  background-repeat:no-repeat;
  background-size:contain;
  background-position:top left;
  left: 0;
  top: 0;    
  width:100px;
  height:100px;      
}
.page-accueil #home-actus::after {
  content: " ";
  position:absolute;
  background-repeat:no-repeat;
  background-size:contain;
  background-position:top left;
  right: 0;
  bottom: 0;    
  width:100px;
  height:100px;      
}
.page-accueil #home-actus-entete {
  position: absolute;
  height: 100%;
  width: 100%;
}


#home-actus .lSPrev
, #home-actus .lSNext {
position: absolute;
z-index: 0;
top: 0;
bottom: 0;
margin: auto;
width:24px;
height:24px;
  background-repeat:no-repeat;
  background-size:contain;
  background-position:center;  
  
  cursor:pointer;  
}
#home-actus .lSPrev {
left: 0;
background-image:url('../images/icones/arrow-left.png');
}

#home-actus .lSNext {
right: 0%;
background-image:url('../images/icones/arrow-right.png');
}

.page-accueil #actualites-wrapper {
height: auto !important;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
list-style: none;
justify-content: center;
margin: 0;
padding: 0 0 0 0;
}
.page-accueil #actualites-wrapper .actualites--item {
    width: calc(100% / 3 - 24px);
    margin: 8px;
    display: flex;
    border: 1px solid #044443;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.page-accueil .actualites--item .image-wrapper picture {
display: flex;
width: 100%;
justify-content: center;
}

@media (max-width: 1000px) {
  .page-accueil #actualites-wrapper .actualites--item {
    width: calc(100% / 2 - 24px);
}
 }


@media (max-width: 801px) {

.actualites--item-content, .actualites--item a {
  width: 100%;
}
#actualites-wrapper .actualites--item {
flex-wrap: wrap;
}

.acces-rapide img {
width: 100%;
}
.acces-rapide {
flex-direction: column;
}
}

/*Réseaux sociaux accueil*/
div#home-instagram {
background: var(--grey-bg);
padding: 52px 0;
}
div#home-instagram a {
width: calc(100% / 5 - 14px);
}
div#home-instagram img {
/*height:145px;*/
width:100%;
margin: 7px 0px;
/* MODIFS BEN 06/01/2023 */
/*max-height: 145px;*/
max-height: 138px;
/*max-height: calc(30vw / 5 - 11px);*/
/* FIN MODIFS */
    object-fit: cover;
}
div#home-instagram .container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
/* MODIFS BEN 06/01/2023 */
@media (max-width: 1240px) {
  div#home-instagram img {   
	/*max-height: 200px;*/
	max-height: calc(60vw / 5 - 10px);
  }
}
@media (max-width: 720px) {
  div#home-instagram img {   
	/*max-height: 200px;*/
	max-height: calc(60vw / 3 - 10px);
  }
  .page-accueil #actualites-wrapper .actualites--item {
    width: 100%;
}
}
@media (max-width: 580px) {
  div#home-instagram img {   
	/*max-height: 200px;*/
	max-height: calc(60vw / 2 - 10px);
  }
}
/*FIN*/
@media (max-width: 720px) {
  div#home-instagram a {    
  width: calc(100% / 3 - 14px);
}
}
@media (max-width: 580px) {
  div#home-instagram a {    
  width: calc(100% / 2 - 14px);
}
}

/* --------------------------
          ACTUALITES 
-------------------------- */
.page-actualites .container h1 {
    width: 100%;
}

.page-actualites div#articles .container {
    display: flex;
    flex-direction: column;
}
.page-actualites div#suite_9 {
    display: flex;
    flex-wrap: wrap;
}
.page-actualites .listeDesActus {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.page-actualites ul#actualites-wrapper {
    width: calc(100% / 3 - 0px);
}
.page-actualites li.actualites--item:hover {
    box-shadow: 2px 2px 7px 0px rgb(28 28 28 / 20%);
}
.page-actualites .container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.page-actualites .actualites--item {
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    margin: 8px;
}
.page-actualites .actualites--item h3 {
    margin: 8px 0px;
}
.page-actualites .actualites--item-content {
    width: 100%;
    height: 100%;
    padding: 0px 12px;
    min-height: 212px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
#articles .btn-wrapper {
    margin: 20px auto;
    width: fit-content;
}
.btn-wrapper.btn-droite {
   
}

.btn-wrapper.btn-droite {
    display: flex;
    justify-content: right;
    text-align: right;
    width: unset !important;
    padding-right: 40px;
    margin: 0 auto;
}
main .page-actualites .container ul {
    padding-left: 0px;
    margin: 12px;
}

#articles .actualites--item, .actu-etalon .actualites--item a {
    width: 100%;
}
#articles .actualites--item{
  height:100%;
  border: solid #044443 1px;
}

#articles div#articles #acces-rapides {
    display: flex;
}
div#articles {
    padding-bottom: 52px;
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 32px 0 52px;
}
.pagination p {
    font-weight: bold;
    font-family: 'Crimson Text', serif;
    font-size: 20px;
}
.pagination img {
    width: 24px;
    margin: 18px 8px;
}


@media (max-width: 800px) {
	.page-actualites ul#actualites-wrapper {
        width: calc(100% / 2 - 12px);
        height: 100%;
    }
   /* #articles .actualites--item {
    min-height: 476px;
    }*/
    .page-actualites ul {
    margin: 6px;
}
}
@media (max-width: 580px) {
	.page-actualites ul#actualites-wrapper {
        width: calc(100% / 1 - 12px);
        padding: 0px;
    }
        .page-actualites ul {
    margin: 0px;
}
}


/* --------------------------
          ARTICLE 
-------------------------- */
p.arianne {
  color: var(--yellow-secondary);
  font-weight: 100;
  font-size: 14px;
}


.page-article .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


.page-article .article {
  width: 59%;
}
.page-article .article .actualites--item-content {padding: 0px;}
.page-article .article .actualites--item-description {
  color: var(--black);
  text-align: justify;
}
.profil .desc ul {
  padding: 0px;
}
.page-article .actualites--item-content {
  width: 100%;
}
.page-article .groupe-articles .actualites--item-content {
  height: 100%;
  min-height: 190px;
}
.page-article .actualites--item-link {
  margin: 24px 0px;
}
.page-article .actualites--item-link a {
  color: var(--yellow-secondary);
  font-weight: 600;
  text-decoration: underline;
}
.page-article .container:last-of-type {
  padding-bottom: 52px;
}
.actualites--item-resume {
    display: none;
}
.actualites--item-content ul li {
    margin-left: 20px;
}

div#articles h2 {
    justify-content: left;
    margin: 24px 0;
    margin-top: -8px;
    font-weight: 500;
}
.page-article div#articles {
  width: 34%;
}
.page-article ul {
  padding-left: 0px;
}
.page-article li.actualites--item:hover {
  box-shadow: 2px 2px 7px 0px rgb(28 28 28 / 20%);
}
.page-article div#articles .container {
  flex-direction: column;
  width: 100%;
}
.page-article ul#actualites-wrapper {
  width: 100%;
}
.page-article .groupe-articles {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.page-article .actualites--item {
  background-color: #FFF;
  display: flex;
  flex-direction: column;
}
.page-article .actualites--item h3 {
  margin: 8px 0px;
}


@media (max-width: 780px) {
  .page-article div#articles {
      width: 100%;
      justify-content: space-between;
  }
  .page-article .article {
      width: 100%;
  }
  .page-article .groupe-articles {
      flex-direction: row;
  }
  .page-article ul#actualites-wrapper {
      width: calc(100% / 2 - 7px);
  }
  .groupe-articles .actualites-wrapper {
    width: 49%;
}
div#articles h2 {
    margin-top: 24px;
}
}

@media (max-width: 580px) {
.page-article .groupe-articles {
    flex-direction: column;
}
.groupe-articles .actualites-wrapper {
    width: 100%;
}
  .page-article ul#actualites-wrapper {
      width: 100%;
  }
}

/* --------------------------
          CONTACT 
-------------------------- */
/*équipe section*/
.equipe {
    padding: 52px 0;
    background: #F0F4F5;
}
.job {
    color: #ccab73;
}
.equipe h1 {
    margin: 24px auto 42px;
    display: flex;
    justify-content: center;
}

.le-haras {
    /*background: var(--grey-bg);*/
    padding: 2px 0;
}
.col-2 {
  display: flex;
  flex-wrap: wrap;
}
.col-2-droite {
  padding-left: 24px;
}
.col-2-droite {
  width: 55%;
}
.col-2-gauche {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-equipe h3, .contact-equipe hr {
    margin-bottom: 10px;
}
.contact-equipe {
  display: flex;
  flex-direction: column;
}
.contact-equipe a, .contact-equipe h3, .info-contact a {
  color: var(--green-primary);
}
.contact-equipe a {
  margin: 4px 0;
}
.contact-equipe a:hover {
    color: #ccab73;
}
.alex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*Map section*/
.contact {padding-top: 52px;}
.info-contact {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  margin: 32px 0 52px;
}

.coordonnees {
    text-align: center;
    padding-bottom: 24px;
    color: #044443;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.coordonnees img {
  width: 252px;
}

.contact .btn {
    margin: 32px auto;
}



.equipe.equipe-complete {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap : 32px;
}
 .team {
    width: calc(100% / 3 - 24px);
}
.team img {
    width: 212px;
}
.equipe-complete {
    max-width: 1100px;
    padding: 0 40px;
    padding: 0 clamp(20px, 2.2vw, 40px);
    margin: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
        gap: 32px;
    justify-content: center;
}
@media (max-width: 900px) {
.col-2-gauche, .col-2-droite {
      width: 100%;
  }
  .col-2-droite {
      padding-left: 0px;
  }
  .team {
    width: calc(100% / 2 - 24px);
}
}
@media (max-width: 720px) {
  .team {
    width: calc(100% / 2 - 24px);
}
}
@media (max-width: 560px) {
  .team {
    width: 100%;
}
}

/* --------------------------
          ETALON 
-------------------------- */
.bandeau-vert h1:after, .pedigree_contenu h2:after, div#profil h1:after, .coordonnees h2:after {
    display: none;
}
.bandeauPhotoHeader {
    text-align: center;
}
.profil h1 img {
    width: 100%;
}
.actualites--item-content {
    padding-bottom: 24px;
    position: relative;
}
a.btn.btn-tertiary {
    text-align: right;
    position: absolute;
    bottom: 16px;
    right: 24px;
    width: calc(100% - 36px);
    max-width: 100%;
    background:  white;
}
a.btn.btn-tertiary:before {
    content: '';
    position: absolute;
    width: calc(100% - 113px);
    height: 1px;
    background: #044443;
    bottom: 50%;
    left:  0px;
}

.bandeau-vert {
  background: #F0F4F5;
  padding: 24px 0;
  color: #2f2f2f;
}
.bandeau-vert b, .bandeau-vert strong{
  color: var(--yellow-secondary);
  font-weight: 500;
}
.bandeau-vert h1 {color: #044443; margin: 0px;}
.bandeau-vert .container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.bandeau-vert .container h1 {
    font-family: 'Crimson Text', serif;
    font-weight: 900;
}
.messagePerf, .messagePerf em {
    color: #044443;
}

.bandeau-vert .breadcrumb__item {
  margin: 0px;
}
.bandeau-vert h1 {
    margin: 0px !important;
}

.onglets {
    padding-bottom: 52px;
}

.nav-etalon {
  margin: 32px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.nav-etalon .container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 8px;
}
.nav-etalon .container a {
  color: var(--black);
  font-weight: 700;
  position: relative;
  margin: 8px 24px;
}
.nav-etalon .container a:hover {
  color: var(--green-primary);
}
.nav-etalon .container a:after {
  width: 20%;
  transition:2s;
  position: absolute;
  content: '';
  height: 2px;
  bottom: -4px; 
  margin: 0 auto;
  left: 0;
  right: 0;
  background: var(--yellow-secondary);
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  transition:.5s;
  opacity: 0;
}
.nav-etalon .container a:hover:after {
  width: 100%;
  opacity: 1;
  transition:0.2s;
}

.col-droite h1 {
    margin-top: 0px;
}

.profil h1 img {
  max-width: 160px;
}
.profil .col-2, .performances .col-2 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.profil .col-gauche, .profil .col-droite, .performances .col-gauche, .performances .col-droite {
  width: 50%;
}

.performances .col-droite {
  padding-left: 24px;
}
.profil .col-droite {
  padding-left: 40px;
}
.profil .photos {
  width: 50%;
  display: flex;
}
.profil .carousel {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 580px;
}
.profil .arrow-right img, .profil .arrow-left img {
  width: 24px;
}
.profil .arrow-left {
  position: absolute;
  left: 0px;
  padding: 8px;
  height: 100%;
  display: flex;
  align-items: center;
  background: #ffffffc9;
}
.profil .photos img {
  padding: 8px 4px;
}
.profil .arrow-right{
  position: absolute;
  right: 0px;
  padding: 8px;
  height: 100%;
  display: flex;
  align-items: center;
  background: #ffffffc9;
}

div#pedigree {
    background-image: url(/web/images/icones/b-background.png);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: right 2% bottom 0%;
}
.contenu-pedigree {
    margin-top: 32px;
}
div#pedigree h2 {
    margin: 8px 0px 0;
}
.pedigree_contenu h2 sup {
    font-size: 11px;
        margin: 0 8px 0 0;
}
.pedigree .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.pedigree .container {
    padding: 0px 24px !important;
}
.pedigree_contenu {
    margin-bottom: 24px;
}
.contenu-pedigree {
    padding-bottom: 32px;
}

div#performances {
    padding: 5px 52px 52px 52px;;
    background: #F0F4F5;
}
div#performances ul {
    margin-bottom: 24px;
}
.performances h4 {
  color: var(--yellow-secondary);
}
.performances, .actualites-etalon {
  padding: 52px 0;
}
div#performances li {
    color: #094847;
}
div#performances strong {
    color: #ccab73;
}

.groupe {
  background: var(--grey-bg);
  padding: 1px 16px;
}
.vinqueur {
  color: var(--green-primary);
}

h3.cat_performance {
    text-align: center;
    padding-top: 32px;
}
.liste.performances {
    padding: 0 12%;
    position: relative;
}
.perfos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.perfo {
    width: 43%;
}
.perfo:nth-child(2n) {
        margin-top: 260px;
}
.perfo hr {
    width: 51%;
    margin: 4px 0px;
}
.perf:first-of-type {
    margin-top: 12px;
}
.perf {
    color: #094847;
}
div#production h2 {
    margin: 0px auto 52px;
}
#production h3 {
    background: none !important;
    padding: 0px !important;
    color: #ccab73;
}
div#production {
    background: #F0F4F5;
    padding: 52px;
}


.actualites-etalon li.actualites--item {
  flex-direction: column;
  height: 100%;
}
.actualites-etalon li.actualites--item picture img {
    border: 0px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 12px;
}
li.actualites--item img {
    padding: 12px;
}
.actualites-etalon ul {
  width: calc(100% / 3 - 24px);
  padding: 0px;
  margin: 12px;
  border: 1px solid var(--green-primary);
}
.actualites-etalon .actualites--item-content {
  width: 100%;
  height: 100%;
  min-height: 212px;
}
.actualites-etalon li.actualites--item:hover {
    box-shadow: 2px 2px 7px 0px rgb(28 28 28 / 20%);
}
.actualites-etalon .actu-etalon {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-bottom: 52px;
}


#articles #acces-rapides {
    display: flex;
}
div#articles #acces-rapides {
    background: white;
}
div#actualites {
    padding-bottom: 52px;
}

div#videos {
    padding: 5px 52px 32px 52px;
    background: #F0F4F5;
}
a.video_youtube img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.liste-videos a {
    width: calc(100% / 3 - 24px);
    padding: 0px;
    margin: 12px;
}
@media (max-width: 801px) {
  .profil .col-gauche, .profil .col-droite, .performances .col-gauche, .performances .col-droite {
    width: 100%;
  }
  .performance-bloc-message {
    width: 100% !important;
}
  .liste-videos a {
    width: 100%;
}

  .actualites-etalon ul {
    width: calc(100% / 2 - 24px);
}
.bandeau-vert .container {
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.profil .col-droite, .performances .col-droite {
  padding-top: 24px;
  padding-left: 0px;
}
#articles #acces-rapides {
    flex-wrap: wrap;
}
.tableauGenealogie td {
    padding: 10px 0px 10px 12px !important;
    border: 0px solid red;
    text-transform: UPPERCASE;
    font-size: 10px;
}
}

@media (max-width: 780px) {
  .perfos:last-of-type {
    margin-bottom: 0px;
}
}


@media (max-width: 580px) {
.actualites-etalon ul {
    width: 100%;
}

.liste.performances {
    padding: 0px 0%;
}
.perfo {
    width: 100%;
}
.perfo:nth-child(2n) {
    margin-top: 0px;
}
.liste.performances:after {
    width: 100%;
}
}


/*404*/
.btn404 {
    text-align: center;
    display: flex;
    margin-top: 24px;
    justify-content: center;
}
td.p404 {
    font-weight: 600;
    font-size: 20px;
}

/* ////////////////////////////////////////////////////////////////////////////

	RESPONSIVE & MEDIA MAIN
	
//////////////////////////////////////////////////////////////////////////// */

@media (hover: hover) { /* the device can hover over elements */ }
@media (hover: none) { /* the device cannot hover over elements */ }

@media (min-width: 1921px) {

}

@media (max-width: 1441px) {
	/* XL: big landscape tablets, laptops, and desktops */
    
    #home-actus::before, #home-actus::after {
        display:none;
    }

}

@media (max-width: 1281px) {

}

@media (max-width: 1025px) {

	#raccourcisbar #action-menu-resp {
		display: block;
	}
    
    #footer-content .container {
        flex-wrap:wrap;
    }

    .footer-col {
        width:40%;
        margin-bottom:20px;
    }
    .footer-col.rs-footer {
        width: 90%;
    }
    #footer-col-logo {
        text-align: left;
        display: block;
    }
  .footer-col:last-of-type {
    justify-content: center;
  }
}


@media (max-width: 801px) {
	/* M: portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
    
    #raccourcisbar a img {
        width: 34px;
        height: 34px;
    }
    
    #acces-rapides {
        padding: 15px 0 0 0;
    }    
    #acces-rapides .container {
        display:flex;
        justify-content:space-between;
        flex-wrap:wrap;
        background-image:none;
    }
    .acces-rapide {
        display:flex;
        align-items:flex-start;
        margin-bottom:15px;
        width:46%;
    }
    .acces-rapide img {
        width:100%;
    }
    
    #raccourcisbar a#trigger-call {
        display:flex;
    }
}

@media (max-width: 515px) {
	/*  smartphones, portrait iPhone, portrait 480x320 phones (Android) */
    .footer-col {
        width:100%;
        margin:0;
        margin-bottom:20px;
    }
    .footer-col .rs-list {
        justify-content:center;
    }
    #footer-bas .container {
        display:block;
        text-align:center;
    }    
    #footer-bas .container a {
        display:block;
    }
    
    #menusbar {
        /*position:fixed;*/
        top:0;
        left:0;
        background:none;
        z-index:1001;
      
    }
    #branding {
        /*margin-top:50px;*/
    }
    
    #raccourcisbar {         
      /*background: rgba(0, 93, 143, 0.8);
      backdrop-filter: blur(10px);      
      top: 40px;*/
      left: 84%;
    }
    
    #raccourcisbar a#trigger-accessibility {
        display:none;
    }
}

@media (max-width: 480px) {
    .acces-rapide {
        width:100%;
    }
    #footer-col-logo, .footer-col {
        text-align: center;
    }
}

@media (max-width: 370px) {
	/* XS: smartphones, portrait iPhone, portrait 480x320 phones (Android) */

    #acces-rapides {
        padding: 15px 0 0 0;
    }    
    #acces-rapides .container {
        display:block;
    }


}
  
/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
https://www.phpied.com/delay-loading-your-print-css/
========================================================================== */

@media print {
	*,
	*::before,
	*::after {
		background: #fff !important;
		color: #000 !important;
		/* Black prints faster */
		box-shadow: none !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	/*
		* Don't show links that are fragment identifiers,
		* or use the `javascript:` pseudo protocol
		*/
	a[href^="#"]::after,
	a[href^="javascript:"]::after {
		content: "";
	}

	pre {
		white-space: pre-wrap !important;
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	/*
		* Printing Tables:
		* https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
		*/
	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE10+ CSS styles go here */
	#action-menu-resp {
	  display: none;
	}
}

.lSAction{
	display:none!important
}






