@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:wght@300;400;500;700;900&family=Roboto+Flex:wght@200;300;600;900&family=Alfa+Slab+One&display=swap");
@font-face {
  font-family: "charmelya";
  src: url("fonts/charmelya.woff2") format("woff2"), url("fonts/charmelya.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 65px;
  background: #dde1e7;
  overflow-x: hidden !important;
  font-size: 1.2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sofia Sans Extra Condensed", 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);
}

input[type=text], input[type=email] {
  border-radius: 3px;
  font-family: "Roboto Flex", sans-serif;
  padding: 0.5rem 1rem;
  border: 1px solid rgb(244, 144, 159);
}
@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;
  }
}
/* Animation de la carte */
@keyframes appearTiltCard {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
    transform: perspective(5cm) rotateY(0deg);
  }
  100% {
    opacity: 1;
    transform: perspective(5cm) rotateY(5deg);
  }
}
/* Animation de l’ombre */
@keyframes appearTiltShadow {
  0% {
    opacity: 0;
    left: 0;
    transform: perspective(5cm) rotateY(0deg);
    height: calc(var(--w) + var(--w) / 1.7);
  }
  40% {
    opacity: 1;
    left: 0;
    transform: perspective(5cm) rotateY(0deg);
    height: calc(var(--w) + var(--w) / 1.7);
  }
  100% {
    opacity: 1;
    left: 1.5rem;
    height: calc(var(--w) + var(--w) / 40 + var(--w) / 1.7);
    transform: perspective(5cm) rotateY(-2deg);
  }
}
@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
.pagination {
  padding: 1em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.pagination > * {
  text-decoration: none;
  padding: 5px;
  border-radius: 5px;
  min-width: 35px;
  display: inline-block;
}
.pagination a {
  background: rgb(156, 207, 38);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0.25rem;
}
.pagination span {
  background: rgb(64, 75, 85);
  color: white;
  margin: 0 0.25rem;
}
.pagination strong {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 100;
  text-transform: uppercase;
}

#news {
  --width: 1200px;
  --aside:320px;
  background: #efefef;
  max-width: 1200px;
  width: 80%;
  margin: auto;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(64, 75, 85, 0.5);
  padding: 1rem 0;
  font-family: "Roboto Flex", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}
#news > section {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}
#news > article img {
  max-width: 100%;
}
#news .news-list {
  position: relative;
  max-width: calc(var(--width) / 3.75);
  margin-bottom: 3rem;
}
#news .news-list > div {
  position: absolute;
  top: 1px;
  left: 1px;
  background: rgb(244, 144, 159);
  color: white;
  padding: 5px;
  font-size: 0.8rem;
}
#news .news-list img {
  width: 100%;
  box-shadow: 0 0 3px rgb(64, 75, 85);
  border: 1px solid white;
}
#news .news-list h2 {
  margin: 0.5rem 0 0 0;
  min-height: 3.5rem;
}
#news .news-list h2 a {
  text-decoration: none;
  color: rgb(16, 94, 127);
}
#news .news-list blockquote {
  color: rgb(64, 75, 85);
  font-size: 0.9rem;
  margin: 0.5rem 0;
  height: 5rem;
  overflow: hidden;
}
#news .news-list time {
  background: rgb(64, 75, 85);
  display: block;
  padding: 0.5rem 5px;
  text-align: right;
  margin-top: 0rem;
}
#news .news-list time a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
}
#news .news-show {
  width: calc(100% - 400px);
  font-family: "Roboto Flex", sans-serif;
  width: calc(100% - var(--aside));
  padding-right: 50px;
  padding-bottom: 5rem;
  position: relative;
}
#news .news-show .breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 1rem 0 2rem 0;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
}
#news .news-show .breadcrumb a {
  border: 1px solid rgb(220, 223, 229);
  background: white;
  text-decoration: none;
  border-radius: 16px;
  color: #888;
  text-transform: uppercase;
  padding: 5px 2em;
  margin: 0 1em;
  transition: all 0.5s;
}
#news .news-show .breadcrumb a:hover {
  background: white;
}
#news .news-show hgroup {
  background: rgba(255, 255, 255, 0.8666666667);
  margin: 0 30px -20px 30px;
  border-radius: 5px;
  position: relative;
  z-index: 60;
  padding: 0.5rem 2rem;
}
#news .news-show hgroup h1 {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 500;
  border-bottom: 1px solid rgb(220, 223, 229);
  font-size: 3rem;
}
#news .news-show hgroup h2 {
  color: rgb(64, 75, 85);
}
#news .news-show img {
  width: 100%;
}
#news .news-show time {
  margin: 5px 20px 20px 20px;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  border: 1px solid rgb(220, 223, 229);
  background: rgb(16, 94, 127);
  text-decoration: none;
  border-radius: 16px;
  color: #888;
  text-transform: uppercase;
  padding: 5px 2em;
  display: inline-block;
  color: white;
  margin-top: -2.3rem;
  position: absolute;
  z-index: 60;
  right: 4rem;
}
#news .news-show div[itemprop] {
  border-radius: 5px;
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9333333333);
  margin: -40px 30px 20px 30px;
  padding: 0.5rem 2rem;
}
#news .news-show div[itemprop] > h2 {
  margin: 20px 10px;
}
#news .news-show div[itemprop] p {
  margin: 10px 10px;
}
#news .news-show div[itemprop] a {
  color: rgb(16, 94, 127);
}
#news .news-show div[itemprop] a:hover {
  color: rgb(25, 147, 200);
}
#news .news-show div[itemprop] ol, #news .news-show div[itemprop] ul {
  margin-left: 4em;
}
#news .news-show footer {
  display: flex;
  justify-content: center;
}
#news .news-show footer a {
  line-height: 1rem;
  display: inline-block;
  background: #0F7EC4;
  padding-right: 1rem;
  border-radius: 3px;
  text-decoration: none;
  line-height: 2rem;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-size: 1.3rem;
  color: white;
}
#news .news-show footer a img {
  width: 2rem;
  vertical-align: bottom;
  margin-right: 0.5rem;
}
#news aside {
  width: var(--aside);
  margin-top: 10px;
}
#news aside h3 {
  background: rgb(244, 144, 159);
  color: white;
  padding: 4px 0;
  text-align: center;
  width: 100%;
}
#news aside .cat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2rem;
}
#news aside .cat-list a {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  border: 1px solid rgb(220, 223, 229);
  background: #efefef;
  text-decoration: none;
  border-radius: 16px;
  font-size: 1rem;
  color: #888;
  text-transform: uppercase;
  padding: 5px 1em;
  margin: 5px 0;
  transition: all 0.5s;
  display: inline-block;
}
#news aside .cat-list a:hover {
  background: rgb(220, 223, 229);
}
#news aside .best-list {
  width: 100%;
}
#news aside .best-list a {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  background: #efefef;
  text-decoration: none;
  font-size: 1.1rem;
  color: #888;
  padding: 5px 1em;
  margin: 5px 0;
  display: block;
  border-bottom: 1px solid #f4909f;
}
#news ul {
  margin-left: 4em;
  list-style: circle;
}/*# sourceMappingURL=news.css.map */