.component-card-article {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  flex-flow: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.component-card-article a {
  height: 100%;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.component-card-article .img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.component-card-article .img-container:before {
  height: 0;
  top: initial;
  bottom: 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.component-card-article img {
  height: 100px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.component-card-article .content {
  height: calc(100% - 100px);
  padding-top: 12px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  border-style: solid;
  background: var(--color-web-white);
  border-width: var(--border-sm);
  border-color: var(--color-shadow);
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
.component-card-article .content .publish-date {
  padding-bottom: 8px;
}
.component-card-article .content h3 {
  padding-top: 13px;
  padding-bottom: 13px;
}
.component-card-article .content .svg-arrow {
  padding-top: 10px;
  text-align: -webkit-right;
  text-align: -moz-right;
  text-align: right;
}

/* click mobile */
.body-container--pro .component-card-article:focus .img-filter:before {
  opacity: .52;
  background: var(--color-pro-orange);
}
.body-container--particulier .component-card-article:focus .img-filter:before {
  opacity: .6;
  background: var(--color-web-blue);
}
.component-card-article:focus .svg-arrow svg path {
  fill: var(--color-web-blue);
}

@media (hover: hover) {
  .component-card-article:hover {
    -webkit-box-shadow: 0 3px 6px var(--color-shadow);
    -moz-box-shadow: 0 3px 6px var(--color-shadow);
    -ms-box-shadow: 0 3px 6px var(--color-shadow);
    -o-box-shadow: 0 3px 6px var(--color-shadow);
    box-shadow: 0 3px 6px var(--color-shadow);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  .component-card-article:hover .svg-arrow {
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  .component-card-article:hover .svg-arrow svg path {
    fill: var(--color-web-blue);
    -webkit-transition: fill .2s ease;
    -moz-transition: fill .2s ease;
    -ms-transition: fill .2s ease;
    -o-transition: fill .2s ease;
    transition: fill .2s ease;
  }
  .component-card-article:hover .img-filter:before {
    height: 100%;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
  }
  .body-container--pro .component-card-article:hover .img-filter:before {
    opacity: .52;
    background: var(--color-pro-orange);
  }
  .body-container--particulier .component-card-article:hover .img-filter:before {
    opacity: .6;
    background: var(--color-web-blue);
  }
}

/* Media Queries */
@media screen and (min-width: 992px) { 
  .component-card-article img {
    height: 150px;
  }
  .component-card-article .content {
    height: calc(100% - 150px);
    padding-left: 40px;
    padding-right: 40px;
  }
  .component-card-article .content .publish-date {
    padding-bottom: 17px;
  }
  .component-card-article .content h3 {
    padding-top: 15px;
    padding-bottom: 8px;
  }
  .component-card-article .content .svg-arrow {
    padding-top: 50px;
  }
  .component-card-article:focus .img-filter:before {
    height: 100%;
    opacity: .6;
    background: var(--color-pro-dark);
  }
  .component-card-article:focus .svg-arrow svg path {
    fill: var(--color-corporate-blue);
    -webkit-transform: translateX(3px);
    -moz-transform: translateX(3px);
    -ms-transform: translateX(3px);
    -o-transform: translateX(3px);
    transform: translateX(3px);
  }
}

@media screen and (max-width: 992px) {
  .has-breadcrumbs {
    position: relative;
  }
  .has-breadcrumbs .component-breadcrumbs li:not(:nth-last-child(2)) {
    display: none;
  }
  .has-breadcrumbs .component-breadcrumbs li:nth-last-child(2) {
    flex-flow: row-reverse;
    justify-content: flex-end;
    background: var(--color-web-white);
    padding-left: 12px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 3px 6px var(--color-shadow);
    -moz-box-shadow: 0 3px 6px var(--color-shadow);
    -ms-box-shadow: 0 3px 6px var(--color-shadow);
    -o-box-shadow: 0 3px 6px var(--color-shadow);
    box-shadow: 0 3px 6px var(--color-shadow);
  }
  .has-breadcrumbs .component-breadcrumbs li:nth-last-child(2) a {
    color: var(--color-corporate-dark);
    padding-top: 3px;
    padding-bottom: 4px;
    padding-left: 0;
  }
  .has-breadcrumbs .component-breadcrumbs li:nth-last-child(2) svg  {
    width: 4px;
    height: 8px;
    -webkit-transition: transform: rotate(180deg);
    -moz-transition: transform: rotate(180deg);
    -ms-transition: transform: rotate(180deg);
    -o-transition: transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .has-breadcrumbs .component-breadcrumbs li:nth-last-child(2) svg path {
    fill: var(--color-corporate-dark);
  }
}

div.component-breadcrumbs ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
div.component-breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
div.component-breadcrumbs a {
  display: block;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 3px;
  padding-right: 3px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.body-container--pro div.component-breadcrumbs ul a:focus,
.body-container--pro div.component-breadcrumbs ul li:last-child a {
  background: transparent;
  border-bottom: 2px solid var(--color-pro-orange);
  border-radius: 2px;
}
.body-container--particulier div.component-breadcrumbs ul a:focus,
.body-container--particulier div.component-breadcrumbs ul li:last-child a {
  background: transparent;
  border-bottom: 2px solid var(--color-web-pink);
  border-radius: 2px;
}

@media (hover: hover) {
  div.component-breadcrumbs li:not(:last-child) a:hover {
    text-decoration: underline;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
  }
}

div.component-breadcrumbs svg {
  height: 10px;
  width: 10px;
  margin-left: 5px;
  margin-right: 5px;
  z-index: 1;
}
div.component-breadcrumbs svg path {
  -webkit-transition: fill .2s ease;
  -moz-transition: fill .2s ease;
  -ms-transition: fill .2s ease;
  -o-transition: fill .2s ease;
  transition: fill .2s ease;
}

/* Style Default */
div.component-breadcrumbs ul.default svg path {
  fill: var(--color-corporate-dark);
}
div.component-breadcrumbs ul.default a {
  color: var(--color-corporate-dark);
}
div.component-breadcrumbs ul.default a:focus,
div.component-breadcrumbs ul.default li:last-child a {
  color: var(--color-corporate-dark);
  text-decoration: none;
}

/* Style Light */
div.component-breadcrumbs ul.light svg path {
  fill: var(--color-web-white);
}
div.component-breadcrumbs ul.light li a {
  color: var(--color-web-white);
}
div.component-breadcrumbs ul.light a:focus,
div.component-breadcrumbs ul.light li:last-child a {
  color: var(--color-web-white);
  text-decoration: none;
}

.ASSET-right.lp-devis-asset {
  transform: rotate(90deg);
}

.pillar-page--body-rich-text--container{margin: 0 37px;}
.pillar-page--body-rich-text{margin-top:55px}
.pillar-page--body-rich-text h2{padding-bottom:8px; margin-top:30px;}
.pillar-page--body-rich-text h2{padding-bottom:8px; margin-top:30px;}
.pillar-page--body-rich-text h2{padding-bottom:8px; margin-top:30px;}
.pillar-page--body-rich-text h3{padding-bottom:8px; color:#1256EB;margin-top:15px;}
.pillar-page--body-rich-text h5{margin-top:15px; padding-bottom:8px; color:#F36F30;}

.pillar-page__wrapper__left-col{width: fit-content;}

@media screen and (min-width: 992px) {
  .pillar-page--body-rich-text--container{margin-left:10%;}
  .pillar-page__wrapper__left-col { margin-top: -538px!important;}
  .pillar-page--body-container {display: flex!important; flex-flow:row-reverse!important;}
  .pillar-page__wrapper__left-col {flex:0 0 25%!important;}
  .pillar-page__wrapper__left-col .pillar-page--card-summary{position: sticky!important; top: 105px!important;}
}