@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Roboto+Flex:wght@200;300;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Roboto+Flex:wght@200;300;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Roboto+Flex:wght@200;300;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 100px;
  background: #dde1e7;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  color: rgb(16, 94, 127);
}

.container {
  border-radius: 5px;
  background: #fff;
  max-width: 1280px;
  margin: auto;
  box-shadow: 3px 3px 7px rgba(70, 70, 70, 0.12);
}

[data-feed-main-container-id=taboola-below-other-thumbnails][data-feed-container-num] {
  width: calc(100% - 330px);
}

@keyframes headDown {
  from {
    top: -900px;
  }
  to {
    top: 150px;
  }
}
@keyframes headUp {
  from {
    top: 150px;
  }
  to {
    top: -900px;
  }
}
@keyframes footerUp {
  from {
    top: 110vh;
  }
  to {
    top: 70vh;
  }
}
@keyframes footerDown {
  from {
    top: 70vh;
  }
  to {
    top: 110vh;
  }
}
/* CSS En-tête */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 100px;
  background: #dde1e7;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  color: rgb(16, 94, 127);
}

.container {
  border-radius: 5px;
  background: #fff;
  max-width: 1280px;
  margin: auto;
  box-shadow: 3px 3px 7px rgba(70, 70, 70, 0.12);
}

[data-feed-main-container-id=taboola-below-other-thumbnails][data-feed-container-num] {
  width: calc(100% - 330px);
}

@keyframes headDown {
  from {
    top: -900px;
  }
  to {
    top: 150px;
  }
}
@keyframes headUp {
  from {
    top: 150px;
  }
  to {
    top: -900px;
  }
}
@keyframes footerUp {
  from {
    top: 110vh;
  }
  to {
    top: 70vh;
  }
}
@keyframes footerDown {
  from {
    top: 70vh;
  }
  to {
    top: 110vh;
  }
}
header#top {
  background: white;
  width: 100%;
  height: 40px;
  position: fixed;
  z-index: 10000000;
  top: 22px;
  box-shadow: 0 0 7px rgba(64, 75, 85, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header#top #logo {
  margin: 0 30px;
}
header#top #logo #home {
  width: 100px;
  filter: drop-shadow(0 0 3px gray);
}
header#top #logo > a {
  position: relative;
}
header#top #logo > a:first-of-type {
  z-index: 100;
}
header#top nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header#top nav#rs {
  display: flex;
  align-items: center;
}
header#top nav#rs a {
  margin: 0 1.5em;
}
header#top nav#rs a svg {
  margin-top: 4px;
  height: 28px;
  width: auto;
}
header#top nav#rs a svg#fb {
  fill: #3b5998;
}
header#top nav#rs a svg#insta {
  fill: #dd2a7b;
}
header#top nav#rs a svg#linkedin {
  fill: #0e76a8;
}
header#top nav#compet {
  display: flex;
  flex: 1;
  justify-content: space-around;
}
header#top nav a {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-decoration: none;
  color: rgb(16, 94, 127);
  text-align: center;
}
header#top nav #profil {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 3px gray);
  border: 3px solid white;
}
header #bars {
  display: none;
}
header #cross {
  display: none;
}

.menu {
  display: none;
  --front: rgb(17, 133, 171);
  --back: rgb(217, 131, 36);
  --icon: white;
  perspective: 600px;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 10px;
  top: 3px;
  z-index: 2000;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.menu input {
  display: none;
}
.menu input + div span {
  --rotateY: 0deg;
  --background: var(--front);
  transform: rotateY(var(--rotateY));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--background);
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.64, 0.48, 1.24);
}
.menu input + div span:before, .menu input + div span:after {
  --rotate: 0deg;
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  left: 50%;
  background: var(--icon);
  backface-visibility: hidden;
  transform: translate(-50%, -50%) rotate(var(--rotate)) translateZ(8px);
}
.menu input + div span:first-child {
  --background: var(--back);
}
.menu input + div span:first-child:before {
  --rotate: -45deg;
}
.menu input + div span:first-child:after {
  --rotate: 45deg;
}
.menu input + div span:last-child {
  --rotateY: 180deg;
}
.menu input + div span:last-child:before {
  box-shadow: 0 -5px 0 var(--icon), 0 5px 0 var(--icon);
}
.menu input + div span:last-child:after {
  display: none;
}
.menu input:checked + div span:first-child {
  --rotateY: -180deg;
}
.menu input:checked + div span:last-child {
  --rotateY: 0deg;
}

@media screen and (max-width: 1366px) {
  #MTGLDBATF {
    position: sticky;
    top: 65px !important;
  }
  header#top {
    height: 35px;
    top: 30px;
  }
  header#top #logo {
    margin: 0 2vw;
  }
  header#top #logo img {
    width: 80px;
  }
  header#top nav#rs {
    height: 30px;
    flex: 2;
  }
  header#top nav#rs a {
    font-size: 18px;
    margin: 0;
  }
  header#top nav#compet {
    flex: 4;
  }
}
@media screen and (max-width: 990px) {
  .menu {
    display: block;
  }
  header#top {
    height: 50px;
    top: 12px;
    width: 100%;
  }
  header#top #logo {
    padding: 5px 0;
    order: -1;
  }
  header#top #logo img {
    margin-top: 7px;
    width: 65px;
    filter: drop-shadow(1px 1px 2px gray);
  }
  header#top nav#rs {
    height: 70px;
    width: 100vw;
    top: 110vh;
    justify-content: space-around;
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    flex: 0;
  }
  header#top nav#rs.piedUp {
    animation: footerUp 0.7s forwards;
  }
  header#top nav#rs.piedDown {
    animation: footerDown 0.5s forwards;
  }
  header#top nav#rs a {
    font-size: 30px;
    color: white;
  }
  header#top nav#rs a svg {
    margin-top: 5px;
    height: 40px;
    width: auto;
  }
  header#top nav#rs a svg#fb {
    fill: white;
  }
  header#top nav#rs a svg#insta {
    fill: white;
  }
  header#top nav#rs a svg#linkedin {
    fill: white;
  }
  header#top nav#compet {
    flex-direction: column;
    position: absolute;
    z-index: 100;
    width: 60vw;
    left: 20vw;
    top: -900px;
  }
  header#top nav#compet a {
    background: rgba(0, 0, 0, 0.85);
    padding: 10px 0;
    width: 100%;
    display: block;
    color: white;
    transition: all 0.5s;
    letter-spacing: 0.25em;
    font-size: 20px;
  }
  header#top nav#compet a:hover {
    color: rgb(181, 190, 15);
    text-shadow: none;
  }
  header#top nav#compet.teteUp {
    animation: headDown 0.5s ease-out forwards;
  }
  header#top nav#compet.teteDown {
    animation: headUp 0.9s forwards;
  }
  header :root {
    --bar-bg: #212529;
  }
}
/* desktop-rectangle-btf*/
@media (min-width: 992px) {
  .r89-desktop-rectangle-btf {
    min-height: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* mobile-rectangle-infinite */
@media (max-width: 991px) {
  .r89-mobile-rectangle-infinite {
    min-height: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* desktop-billboard-atf */
@media (min-width: 992px) {
  .r89-desktop-billboard-atf {
    min-height: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* mobile-billboard-top */
@media (max-width: 991px) {
  .r89-mobile-billboard-top {
    min-height: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* mobile-rectangle-mid */
@media (max-width: 991px) {
  .r89-mobile-rectangle-mid {
    min-height: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* mobile-rectangle-mid-300x600 */
@media (max-width: 991px) {
  .r89-Mobile-Rectangle-Mid-300x600 {
    min-height: 600px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
#news {
  --aside:320px;
}
#news .container {
  display: flex;
  justify-content: "space-between";
  align-items: "flex-start";
  flex-direction: row;
  flex-wrap: wrap;
}
#news .container .newsList {
  padding: 10px;
  width: calc(100% - var(--aside));
}
#news .container .newsList .articleShort {
  width: 100%;
  display: flex;
  justify-content: "space-around";
  align-items: "stretch";
  padding: 0 10px 20px 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(64, 75, 85, 0.2);
}
#news .container .newsList .articleShort img {
  width: 300px;
}
#news .container .newsList .articleShort figcaption {
  flex: 1;
  padding: 0 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#news .container .newsList .articleShort figcaption > p {
  font-family: "Oswald", sans-serif;
}
#news .container .newsList .articleShort figcaption > p:nth-of-type(1) {
  background: rgba(16, 94, 127, 0.2);
  padding: 5px;
}
#news .container .newsList .articleShort figcaption blockquote {
  font-family: "Roboto Flex", sans-serif;
  font-size: 14px;
  font-style: oblique;
}
#news .container .newsList .articleShort figcaption blockquote .more {
  background: rgb(181, 190, 15);
  padding: 3px 5px;
}
#news .container .newsList .articleShort figcaption h2 a {
  text-decoration: none;
  font-weight: 400;
  color: rgb(16, 94, 127);
  font-size: 24px;
}
#news .container .newsList .articleShort figcaption time {
  font-family: "Oswald", sans-serif;
  text-align: right;
}
#news .container .newsList .articleShort figcaption time a {
  text-decoration: none;
  color: rgb(16, 94, 127);
}
#news .container .newsList .articleShort figcaption time a:hover {
  color: rgb(22, 134, 182);
}
#news .container .newsShow {
  width: calc(100% - 400px);
  font-family: "Roboto Flex", sans-serif;
  width: calc(100% - var(--aside));
  padding-right: 50px;
}
#news .container .newsShow .breadcrumb {
  display: flex;
  justify-content: "flex-start";
  align-items: "center";
  margin: 10px 0;
  font-family: "Oswald", sans-serif;
}
#news .container .newsShow .breadcrumb a {
  border: 1px solid #ddd;
  background: #efefef;
  text-decoration: none;
  border-radius: 16px;
  color: #888;
  text-transform: uppercase;
  padding: 5px 2em;
  margin: 0 1em;
  transition: all 0.5s;
}
#news .container .newsShow .breadcrumb a:hover {
  background: #ddd;
}
#news .container .newsShow .breadcrumb svg {
  width: 10px;
}
#news .container .newsShow h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  margin: 30px 20px 0 20px;
  border-bottom: 1px solid #ddd;
}
#news .container .newsShow > h2 {
  margin: 0 20px;
  color: rgb(64, 75, 85);
}
#news .container .newsShow img {
  width: 100%;
  margin-top: 30px;
  height: 390px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 -70px;
     object-position: 0 -70px;
}
#news .container .newsShow time {
  margin: 5px 20px 20px 20px;
  font-family: "Oswald", sans-serif;
  border: 1px solid #ddd;
  background: #efefef;
  text-decoration: none;
  border-radius: 16px;
  color: #888;
  text-transform: uppercase;
  padding: 5px 2em;
  display: inline-block;
}
#news .container .newsShow article {
  margin: 20px;
}
#news .container .newsShow article > h2 {
  margin: 20px 10px;
}
#news .container .newsShow article p {
  margin: 10px 10px;
}
#news .container .newsShow article a {
  color: rgb(16, 94, 127);
}
#news .container .newsShow article a:hover {
  color: rgb(22, 134, 182);
}
#news .container .newsShow article ol, #news .container .newsShow article ul {
  margin-left: 4em;
}
#news .container .newsShow article img {
  max-width: 700px;
  height: auto;
  -o-object-position: 0;
     object-position: 0;
  margin: 0 auto;
}
#news .container .newsShow footer {
  display: flex;
  justify-content: center;
}
#news .container aside {
  width: var(--aside);
  margin-top: 10px;
}
#news .container aside h3 {
  background: rgb(245, 156, 169);
  color: white;
  padding: 4px 0;
  text-align: center;
  width: 100%;
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
}
#news .container aside .newsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
#news .container aside .newsList a {
  font-family: "Oswald", sans-serif;
  border: 1px solid #ddd;
  background: #efefef;
  text-decoration: none;
  border-radius: 16px;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  padding: 5px 1em;
  margin: 5px 0;
  transition: all 0.5s;
  display: inline-block;
}
#news .container aside .newsList a:hover {
  background: #ddd;
}
#news .container ul {
  margin-left: 4em;
  list-style: circle;
}
#news .container table {
  border-collapse: collapse;
  margin: 1em auto;
}
#news .container table td {
  border: 1px solid #ccc;
  padding: 5px;
}
#news .container table th {
  background: #efefef;
  font-weight: normal;
  text-align: center;
  padding: 5px;
  border: 1px solid #ccc;
}

.fb-share-button {
  padding: 5px 10px !important;
  color: white !important;
  background: #3b5998 !important;
  text-decoration: none !important;
  width: auto !important;
  margin: 1em auto !important;
  border-radius: 3px !important;
}
.fb-share-button a {
  color: white !important;
  text-decoration: none !important;
}
.fb-share-button ._6a {
  color: white !important;
  font-size: 20px !important;
  line-height: auto !important;
}

@media screen and (orientation: portrait) and (max-width: 990px) {
  #news {
    --aside:100%;
  }
  #news .container .newsList {
    padding: 10px;
    width: 100%;
  }
  #news .container .newsList .articleShort {
    align-items: stretch;
  }
  #news .container .newsList .articleShort img {
    width: 130px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #news .container .newsList .articleShort figcaption {
    padding-bottom: 0;
    flex: 1;
  }
  #news .container .newsList .articleShort figcaption > p {
    font-size: 14px !important;
    display: block;
  }
  #news .container .newsList .articleShort figcaption blockquote {
    display: none;
  }
  #news .container .newsList .articleShort figcaption h2 {
    position: relative;
    padding: 0;
    line-height: 18px;
  }
  #news .container .newsList .articleShort figcaption h2 a {
    font-size: 16px !important;
    margin-top: 10px;
  }
  #news .container .newsList .articleShort figcaption time {
    font-size: 11px !important;
  }
  #news .container .newsShow {
    width: 100%;
    padding-right: 0;
  }
  #news .container .newsShow img {
    height: 260px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-top: 0;
  }
  #news .container .newsShow .breadcrumb {
    margin: 10px 0;
    font-family: "Oswald", sans-serif;
  }
  #news .container .newsShow .breadcrumb a {
    padding: 5px 10px;
    font-size: 10px;
  }
  #news .container .newsShow .breadcrumb svg {
    width: 10px;
  }
  #news .container .newsShow h1 {
    font-size: 20px;
    line-height: 22px;
  }
  #news .container .newsShow > h2 {
    font-size: 18px;
  }
  #news .container .newsShow time {
    margin: 0 20px;
    font-size: 12px;
  }
  #news .container aside h3 {
    border-radius: 0 0 0 0;
  }
}
/* CSS Pied de page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 100px;
  background: #dde1e7;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  color: rgb(16, 94, 127);
}

.container {
  border-radius: 5px;
  background: #fff;
  max-width: 1280px;
  margin: auto;
  box-shadow: 3px 3px 7px rgba(70, 70, 70, 0.12);
}

[data-feed-main-container-id=taboola-below-other-thumbnails][data-feed-container-num] {
  width: calc(100% - 330px);
}

@keyframes headDown {
  from {
    top: -900px;
  }
  to {
    top: 150px;
  }
}
@keyframes headUp {
  from {
    top: 150px;
  }
  to {
    top: -900px;
  }
}
@keyframes footerUp {
  from {
    top: 110vh;
  }
  to {
    top: 70vh;
  }
}
@keyframes footerDown {
  from {
    top: 70vh;
  }
  to {
    top: 110vh;
  }
}
#taboola-below-other-thumbnails {
  padding: 20px;
}

footer {
  font-family: "Oswald", sans-serif;
}
footer#main {
  width: 1280px;
  margin: 0 auto;
}
footer.main {
  padding: 3vw 0;
  background: rgb(64, 75, 85);
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}
footer.main nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
footer.main nav h3 {
  text-transform: uppercase;
  color: rgb(181, 190, 15);
  font-size: 1.1em;
  font-weight: normal;
  margin: 0;
}
footer.main nav a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease-in;
  text-decoration: none;
  margin: 5px 0;
}
footer.main nav a:hover {
  color: rgb(245, 156, 169);
}
footer.main nav.social {
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
}
footer.main nav.social a {
  margin: 0 0 0 5px;
  color: white;
  font-size: 2em;
  text-decoration: none;
}
footer.main time#footerDate {
  clear: both;
  color: #aaa;
  width: 30%;
  margin-left: 69%;
  font-size: 0.8em;
  text-align: right;
}
footer .mentions {
  padding-top: 5px;
}
footer .mentions h2 {
  text-transform: uppercase;
  margin-left: 0;
  padding: 0 10px;
  text-align: left;
  background: #f1f3f3;
  border-radius: 5px;
  margin: 10px;
}
footer .mentions h3 {
  margin: 20px 10px 0 10px;
  border-bottom: 1px solid #252e2e;
}
footer .mentions p {
  margin: 5px 0 5px 20px;
  font-size: 0.8em;
}
footer .mentions a {
  color: #cc0000;
}

@media screen and (max-width: 1100px) {
  footer.main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer.main nav {
    margin-bottom: 1em;
    font-size: 1.3em;
    align-items: center;
  }
  footer.main nav a {
    margin: 0.5em 0;
  }
  footer.main nav.social {
    width: 100vw;
    flex-direction: row;
    justify-content: space-around;
    font-size: 7vw;
  }
  footer.main time#footerDate {
    width: 100%;
    margin-left: 0;
    margin-top: 2em;
    font-size: 1em;
    text-align: center;
  }
}/*# sourceMappingURL=2023news.css.map */