@charset "UTF-8";
/* ==========================================================================
   Components / MIXINS
   ========================================================================== */
/*********************
  BREAKPOINTS RESPONSIVE LAYOUT
  *********************/
/* ==========================================================================
   Layout / Block Actualités
   ========================================================================== */
.blocknews {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  box-sizing: border-box;
  padding: 0 25px;
}
@media (min-width: 576px) {
  .blocknews {
    padding: 0 45px;
  }
}
@media (min-width: 760px) {
  .blocknews {
    padding: 0 65px;
  }
}
@media (min-width: 1360px) {
  .blocknews {
    padding: 0 120px 0 87px;
  }
}
@media (min-width: 1500px) {
  .blocknews {
    width: 95%;
  }
}
@media (min-width: 1800px) {
  .blocknews {
    width: 90%;
    padding: 0 200px 0 150px;
  }
}
.blocknews {
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 1360px) {
  .blocknews {
    padding: 0 87px;
  }
}
@media (min-width: 1800px) {
  .blocknews {
    padding: 0 200px 0 150px;
  }
}
@media (min-width: 1200px) {
  .blocknews .h2-title {
    margin-bottom: 50px;
  }
}
.blocknews-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.blocknews-tags .label {
  display: block;
  font-weight: 900;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2d2d2d;
}
.blocknews-tags div {
  display: block;
  margin: 0;
  padding: 0;
}
.blocknews-tags a {
  display: block;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.1;
  color: #ffffff;
  background: #5CA62A;
  box-sizing: border-box;
  padding: 5px 8px 4px;
  border-radius: 5px;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.blocknews-tags a:hover, .blocknews-tags a.current {
  background: #20384B;
}
.blocknews-grid {
  display: block;
}
@media (min-width: 1000px) {
  .blocknews-grid {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .blocknews-grid {
    gap: 30px;
  }
}
.blocknews-grid a:not(:last-child) {
  margin-bottom: 25px;
}
@media (min-width: 576px) {
  .blocknews-grid a:not(:last-child) {
    margin-bottom: 0;
  }
}
.blocknews-row:first-child {
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .blocknews-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (min-width: 1000px) {
  .blocknews-row {
    width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 1200px) {
  .blocknews-row {
    gap: 45px 30px;
  }
}
.blocknews .pagination {
  margin: 10px auto 30px;
}
.blocknews .largeCard {
  display: block;
  width: 100%;
  flex-basis: 100%;
  position: relative;
}
.blocknews .largeCard .image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.blocknews .largeCard .image:before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.blocknews .largeCard .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.blocknews .largeCard .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 65px 20px 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .blocknews .largeCard .content {
    padding: 80px 30px 30px;
  }
}
@media (min-width: 760px) {
  .blocknews .largeCard .content {
    padding: 90px 30px 30px;
    height: 355px;
  }
}
@media (min-width: 1200px) {
  .blocknews .largeCard .content {
    padding: 90px 40px 35px;
  }
}
@media (min-width: 1360px) {
  .blocknews .largeCard .content {
    height: 375px;
  }
}
.blocknews .largeCard .content-cats {
  display: block;
  margin-bottom: 10px;
}
.blocknews .largeCard .content-cats span {
  display: inline-block;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.1;
  color: #ffffff;
  background: #5CA62A;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 5px 8px 4px;
  border-radius: 5px;
  margin: 0 5px 5px;
}
.blocknews .largeCard .content-title {
  display: block;
  font-weight: 800;
  font-size: 25px;
  line-height: 1.1;
  color: #ffffff;
}
@media (min-width: 576px) {
  .blocknews .largeCard .content-title {
    font-size: 30px;
    line-height: 1.3;
  }
}
.blocknews .largeCard .content .btn-main {
  margin-top: 20px;
}
@media (max-width: 576px) {
  .blocknews .largeCard .content .btn-main {
    font-size: 13px;
  }
}
.blocknews .largeCard:hover .image img {
  transform: scale(1.1);
}
.blocknews .cardnews {
  display: block;
  position: relative;
}
@media (min-width: 576px) {
  .blocknews .cardnews {
    width: calc((100% - 20px) / 2);
    flex-basis: calc((100% - 20px) / 2);
  }
}
@media (min-width: 1200px) {
  .blocknews .cardnews {
    width: calc((100% - 30px) / 2);
    flex-basis: calc((100% - 30px) / 2);
  }
}
.blocknews .cardnews .image {
  display: block;
  width: auto;
  margin-bottom: 15px;
  overflow: hidden;
}
.blocknews .cardnews .image img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (min-width: 576px) {
  .blocknews .cardnews .image img {
    height: 180px;
  }
}
@media (min-width: 1200px) {
  .blocknews .cardnews .image img {
    height: 205px;
  }
}
.blocknews .cardnews .content-cats {
  display: block;
  position: absolute;
  top: 10px;
  right: 5px;
  z-index: 1;
}
.blocknews .cardnews .content-cats span {
  display: inline-block;
  font-weight: 600;
  font-size: 11px;
  line-height: 1.1;
  color: #ffffff;
  background: #5CA62A;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 5px 8px 4px;
  border-radius: 5px;
  margin: 0 5px 5px;
}
.blocknews .cardnews .content-title {
  display: block;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.2;
  color: #2d2d2d;
  margin-bottom: 17px;
}
.blocknews .cardnews .content-excerpt {
  display: block;
  margin-bottom: 13px;
}
.blocknews .cardnews .content .btn-link {
  color: #2d2d2d;
  padding: 0;
}
.blocknews .cardnews .content .btn-link span:after {
  background: #2d2d2d;
}
.blocknews .cardnews:hover .image img {
  transform: scale(1.1);
}
.blocknews .cardnews:hover .btn-link span {
  color: #5CA62A;
}
.blocknews .cardnews:hover .btn-link span:after {
  background: #5CA62A;
  width: 20%;
}
.blocknews .cardlinkedin {
  display: block;
  box-sizing: border-box;
  padding: 17px 18px 33px;
  background: #ffffff;
  position: relative;
}
@media (min-width: 576px) {
  .blocknews .cardlinkedin {
    width: calc((100% - 20px) / 2);
    flex-basis: calc((100% - 20px) / 2);
  }
}
@media (min-width: 1000px) {
  .blocknews .cardlinkedin {
    padding: 17px 18px 25px;
    height: 355px;
  }
}
@media (min-width: 1200px) {
  .blocknews .cardlinkedin {
    width: calc((100% - 30px) / 2);
    flex-basis: calc((100% - 30px) / 2);
  }
}
@media (min-width: 1360px) {
  .blocknews .cardlinkedin {
    height: 375px;
  }
}
.blocknews .cardlinkedin-img {
  display: block;
  width: auto;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.blocknews .cardlinkedin-img:before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.blocknews .cardlinkedin-img:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 123, 182, 0.2), rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.blocknews .cardlinkedin-img .icon {
  display: block;
  width: 32px;
  height: 28px;
  fill: #ffffff;
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 2;
}
.blocknews .cardlinkedin-img img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 0;
}
@media (min-width: 576px) {
  .blocknews .cardlinkedin-img img {
    height: 150px;
  }
}
@media (min-width: 1200px) {
  .blocknews .cardlinkedin-img img {
    height: 160px;
  }
}
@media (min-width: 1360px) {
  .blocknews .cardlinkedin-img img {
    height: 180px;
  }
}
.blocknews .cardlinkedin-text {
  display: block;
  margin-bottom: 22px;
}
@media (min-width: 1000px) {
  .blocknews .cardlinkedin-text {
    font-size: 13px;
    line-height: 1.5;
  }
}
@media (min-width: 1360px) {
  .blocknews .cardlinkedin-text {
    font-size: 14px;
    line-height: 1.71;
    margin-bottom: 25px;
  }
}
.blocknews .cardlinkedin-btn {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.3;
  padding: 0;
  text-decoration-line: underline;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.blocknews .cardlinkedin-btn .icon {
  display: block;
  width: 14px;
  height: 14px;
  fill: #2d2d2d;
  margin-right: 10px;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: relative;
  bottom: 3px;
}
.blocknews .cardlinkedin:hover .cardlinkedin-img:after {
  opacity: 1;
}
.blocknews .cardlinkedin:hover .cardlinkedin-btn {
  color: #007bb6;
}
.blocknews .cardlinkedin:hover .cardlinkedin-btn .icon {
  fill: #007bb6;
}
.blocknews > .btn {
  align-self: flex-end;
  margin-top: 25px;
}
@media (min-width: 1000px) {
  .blocknews > .btn {
    margin-top: 5px;
  }
}
@media (min-width: 576px) {
  .blocknews.archive {
    margin-bottom: 30px !important;
  }
}
@media (min-width: 760px) {
  .blocknews.archive {
    margin-bottom: 50px !important;
  }
}
.blocknews.archive .blocknews-grid {
  margin-bottom: 20px;
}
@media (min-width: 1000px) {
  .blocknews.archive .blocknews-grid {
    margin-bottom: 50px;
  }
}
.blocknews:not(.archive) .blocknews-row:last-of-type .cardlinkedin {
  display: none;
}
@media (min-width: 1000px) {
  .blocknews:not(.archive) .blocknews-row:last-of-type .cardlinkedin {
    display: block;
  }
}
/*# sourceMappingURL=blocknews.css.map */
