@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap");
/* Add an element with the css class .responsive-helper
 * in your html document to have an indicator at the
 * bottom of your screen of wich breakpoint you are in.
*/
.responsive-helper {
  position: fixed;
  right: 0;
  bottom: 1rem;
  color: transparent;
}
.responsive-helper:before {
  content: "large";
  color: #fff;
  font-weight: 700;
  border-radius: 7px;
  background: #000;
  padding: 1rem 2rem;
}
@media (max-width: 1199px) {
  .responsive-helper:before {
    content: "large-only";
  }
}
@media (max-width: 991px) {
  .responsive-helper:before {
    content: "medium-only";
  }
}
@media (max-width: 767px) {
  .responsive-helper:before {
    content: "small-only";
  }
}
@media (max-width: 480px) {
  .responsive-helper:before {
    content: "mobile-only";
  }
}

html {
  font-size: 55.5%;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  html {
    font-size: 58.5%;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Quicksand", sans-serif;
  font-size: 1.7rem;
  color: #3a3a3a;
}

h1,
.h1 {
  font-family: "Quicksand", sans-serif;
  color: #0092c6;
  font-style: normal;
  font-weight: 500;
  font-size: 45px;
  line-height: 47px;
  text-transform: uppercase;
}

h2,
.h2 {
  font-family: "Quicksand", sans-serif;
  color: #2f5b6a;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 32px;
  text-transform: uppercase;
  margin-top: 2.5rem;
}

h3,
.h3 {
  font-family: "Quicksand", sans-serif;
  color: #2f5b6a;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 29px;
  text-transform: none;
}

h4,
.h4 {
  font-family: "Quicksand", sans-serif;
  color: #2f5b6a;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 29px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h5,
.h5 {
  font-family: "Quicksand", sans-serif;
  color: #39b44a;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 29px;
  text-transform: none;
}

h6,
.h6 {
  font-family: "Quicksand", sans-serif;
  color: #0092c6;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 29px;
  text-transform: none;
}

a {
  font-family: inherit;
  color: #0092c6;
  font-style: normal;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
}
a:hover, a:focus, a:active, a.active {
  color: #0092c6;
  background-color: transparent;
  text-decoration: none;
}

p {
  font-family: "Quicksand", sans-serif;
  color: #3a3a3a;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
}
p a:hover {
  text-decoration: underline;
}

ul li {
  font-family: "Quicksand", sans-serif;
  line-height: 1.7;
}
ul {
  padding-inline-start: 20px;
}

ol li {
  font-family: "Quicksand", sans-serif;
  line-height: 1.7;
}

.btn {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: none !important;
  max-width: 100%;
  min-width: 1px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 25px;
  transition: all 0.225s linear;
  background-color: transparent;
}

.btn.btn-primary {
  color: white;
  border: none;
  position: relative;
  z-index: 5;
}
.btn.btn-primary::before {
  content: "";
  background-color: #39b44a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
  color: white;
  background-color: transparent;
}
.btn.btn-primary:hover::before, .btn.btn-primary:focus::before, .btn.btn-primary:active::before {
  content: "";
  background-color: #2f5b6a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.btn.btn-default {
  color: white;
  border: none;
  position: relative;
  z-index: 5;
}
.btn.btn-default::before {
  content: "";
  background-color: #0092c6;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn.btn-default:hover, .btn.btn-default:focus, .btn.btn-default:active {
  color: white;
  background: transparent;
}
.btn.btn-default:hover::before, .btn.btn-default:focus::before, .btn.btn-default:active::before {
  content: "";
  background-color: #2f5b6a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.btn.btn-splash {
  color: #2f5b6a !important;
  background-color: transparent;
  border: none;
  position: relative;
}
.btn.btn-splash::before {
  content: "";
  background-color: #fff;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.btn.btn-splash:hover, .btn.btn-splash:focus {
  color: white;
  background: transparent;
  border: none;
}
.btn.btn-splash:hover::before, .btn.btn-splash:focus::before {
  content: "";
  background-color: #2f5b6a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.btn.btn-link,
.btn.btn-secondary {
  color: #0092c6;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  font-size: 1.4rem;
  text-decoration: underline;
}
.btn.btn-link:hover, .btn.btn-link:focus, .btn.btn-link:active, .btn.btn-link.active,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active,
.btn.btn-secondary.active {
  color: #2f5b6a;
  text-decoration: underline;
  border: none;
}

a.viewAll {
  color: #1fabe1;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0.5rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.2);
  transition: background-color 0.225s linear;
}
a.viewAll:hover, a.viewAllactive, a.viewAll:focus {
  background: transparent;
  color: #0092c6;
}

.header-ext.header-ext-login a {
  text-transform: none;
  color: #262626;
  font-size: 1.4rem;
  line-height: 19px;
  font-style: normal;
  font-weight: normal;
}
.header-ext.header-ext-login a:hover {
  color: #248b60;
}

@media screen and (max-width: 772px) {
  .member--isConnected .header-ext.header-ext-login .member-logout {
    font-family: "Quicksand", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: none !important;
    max-width: 100%;
    min-width: 1px;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 25px;
    transition: all 0.225s linear;
    background-color: transparent;
    color: white;
    border: none;
    position: relative;
    z-index: 5;
  }
  .member--isConnected .header-ext.header-ext-login .member-logout::before {
    content: "";
    background-color: #39b44a;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .member--isConnected .header-ext.header-ext-login .member-logout:hover, .member--isConnected .header-ext.header-ext-login .member-logout:focus, .member--isConnected .header-ext.header-ext-login .member-logout:active {
    color: white;
    background-color: transparent;
  }
  .member--isConnected .header-ext.header-ext-login .member-logout:hover::before, .member--isConnected .header-ext.header-ext-login .member-logout:focus::before, .member--isConnected .header-ext.header-ext-login .member-logout:active::before {
    content: "";
    background-color: #2f5b6a;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .member--isConnected .header-ext.header-ext-login .member-myprofile {
    font-family: "Quicksand", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: none !important;
    max-width: 100%;
    min-width: 1px;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 25px;
    transition: all 0.225s linear;
    background-color: transparent;
    color: white;
    border: none;
    position: relative;
    z-index: 5;
  }
  .member--isConnected .header-ext.header-ext-login .member-myprofile::before {
    content: "";
    background-color: #0092c6;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .member--isConnected .header-ext.header-ext-login .member-myprofile:hover, .member--isConnected .header-ext.header-ext-login .member-myprofile:focus, .member--isConnected .header-ext.header-ext-login .member-myprofile:active {
    color: white;
    background: transparent;
  }
  .member--isConnected .header-ext.header-ext-login .member-myprofile:hover::before, .member--isConnected .header-ext.header-ext-login .member-myprofile:focus::before, .member--isConnected .header-ext.header-ext-login .member-myprofile:active::before {
    content: "";
    background-color: #2f5b6a;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
a.back-to-list {
  color: #1fabe1;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
}

.form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary {
  color: white;
  border: none;
  position: relative;
  z-index: 5;
}
.form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary::before {
  content: "";
  background-color: #39b44a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:hover, .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:focus, .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:active {
  color: white;
  background-color: transparent;
}
.form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:hover::before, .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:focus::before, .form-withProgress__wrapper .form-withProgress__navigation-footer .btn-primary:active::before {
  content: "";
  background-color: #2f5b6a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.form-withProgress__wrapper .form-withProgress__navigation-footer a.btn-link {
  color: #0092c6;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  font-size: 1.4rem;
  text-decoration: underline;
}
.form-withProgress__wrapper .form-withProgress__navigation-footer a.btn-link:hover, .form-withProgress__wrapper .form-withProgress__navigation-footer a.btn-link:focus, .form-withProgress__wrapper .form-withProgress__navigation-footer a.btn-link:active, .form-withProgress__wrapper .form-withProgress__navigation-footer a.btn-link.active {
  color: #2f5b6a;
  text-decoration: underline;
  border: none;
}

.btn.btn-splash:focus,
.btn.btn-primary:focus,
.btn.btn-default:focus {
  background: transparent;
}

a:focus,
button:focus {
  outline: none !important;
}

#submit.btn.btn-primary {
  color: #fff !important;
  background-color: #39b44a;
}
#submit.btn.btn-primary:hover, #submit.btn.btn-primary:focus, #submit.btn.btn-primary:active {
  color: #fff;
  background-color: #2f5b6a;
}

.btn.btn-default.profile-subscription {
  color: #fff !important;
  background-color: #0092c6;
}
.btn.btn-default.profile-subscription::before {
  display: none;
}
.btn.btn-default.profile-subscription:hover, .btn.btn-default.profile-subscription:focus, .btn.btn-default.profile-subscription:active {
  color: #fff;
  background-color: #2f5b6a;
}

.btn:focus,
.btn:active:focus {
  outline: 0px auto -webkit-focus-ring-color;
  color: #248b60;
}

.btn.btn-primary:active {
  color: #0092c6;
}

input.btn.btn-primary {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: none !important;
  max-width: 100%;
  min-width: 1px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 25px;
  transition: all 0.225s linear;
  background-color: transparent;
  background-color: #39b44a;
  padding: 12px 25px;
}
input.btn.btn-primary:hover {
  background-color: #2f5b6a;
}

.article-back-to-list-histo {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: none !important;
  max-width: 100%;
  min-width: 1px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 25px;
  transition: all 0.225s linear;
  background-color: transparent;
  color: white;
  border: none;
  position: relative;
  z-index: 5;
}
.article-back-to-list-histo::before {
  content: "";
  background-color: #39b44a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.article-back-to-list-histo:hover, .article-back-to-list-histo:focus, .article-back-to-list-histo:active {
  color: white;
  background-color: transparent;
}
.article-back-to-list-histo:hover::before, .article-back-to-list-histo:focus::before, .article-back-to-list-histo:active::before {
  content: "";
  background-color: #2f5b6a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.article-back-to-list-histo {
  margin-top: 2.5rem;
  display: inline-block;
}

.form-horizontal .control-label {
  font-weight: 600;
  font-size: 16px;
  color: #2f5b6a;
  padding-bottom: 1rem;
}
.form-horizontal .form-control {
  border: none;
  background: #ebeff1;
}

.form-withProgress__wrapper {
  background: #fff;
  padding: 25px 0;
}

select {
  background-color: #ebeff1 !important;
  margin-bottom: 2.5rem;
}

#submit.btn.btn-primary,
#submit.btn.btn-primary:hover {
  color: #fff;
}

.jumbotron {
  background-color: #1fabe1;
}
.jumbotron p,
.jumbotron span {
  color: #fff;
}
.jumbotron .event-jumbotron__date {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  text-transform: uppercase;
  /* blanc */
  color: #ffffff;
}
.jumbotron .h3 {
  color: #fff;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 24px;
}
.jumbotron .btn.btn-primary {
  color: #1fabe1;
}
.jumbotron .btn.btn-primary::before {
  background-color: #ffffff;
}

.cart-icon__count {
  top: -0.2rem;
  right: -2rem;
}

.nav-progress > li.disabled::before {
  content: counter(count-steps);
  display: inline-block;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  background-color: #1fabe1;
  font-weight: 700;
  font-size: 16px;
}
.nav-progress > li.disabled.active:before {
  background-color: #39b44a;
}
.nav-progress > li.disabled.active ~ li::before {
  color: #2f5b6a;
  background-color: #ebeff1;
}
.nav-progress > li.disabled > a {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #2f5b6a;
}
.nav-progress > li.disabled > a:hover {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: #2f5b6a;
}
.nav-progress > li.disabled::after {
  content: "";
  display: block;
  border-bottom: 1px solid #e0f0f5;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  z-index: -1;
}

table,
.table {
  border: 1px solid transparent;
}
table > thead,
.table > thead {
  background-color: #1fabe1;
  color: #1fabe1;
  font-size: 1.6rem;
}
table > thead > tr > th,
.table > thead > tr > th {
  padding: 10px;
  border-bottom: none;
}
table > thead th > *,
table > thead a > *,
table > thead a.theadLink > *,
.table > thead th > *,
.table > thead a > *,
.table > thead a.theadLink > * {
  font-size: 1.6rem;
  color: #fff;
}
table > thead th,
table > thead a,
table > thead a.theadLink,
.table > thead th,
.table > thead a,
.table > thead a.theadLink {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.01em;
}
table > thead a.asort:after,
.table > thead a.asort:after {
  border-bottom: 5px solid #fff;
}
table,
.table {
  font-size: 1.6rem;
}

.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th {
  background-color: rgba(31, 171, 225, 0.1);
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #fff;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th,
.table._highlight > tbody > tr:hover > td,
.table._highlight > tbody > tr:hover > th {
  background-color: rgba(31, 171, 225, 0.2);
}

.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 10px;
  border-top: none;
  background-color: white;
}

.mod-article__content table {
  border: 1px solid rgba(31, 171, 225, 0);
}

.line-footer {
  position: relative;
}
.line-footer::before {
  content: "";
  background: linear-gradient(100.53deg, #0092c6 17.43%, #39b44a 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.line-footer::after {
  content: "";
  border-right: 1px solid #fff;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
@media screen and (min-width: 992px) {
  .line-footer::after {
    display: block;
  }
}
.line-footer .container-fluid > .row-fluid > div:first-child {
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.line-footer .container-fluid > .row-fluid > div:last-child {
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.line-footer .mod-article__intro {
  z-index: 1;
}
.line-footer .btn.btn-splash {
  position: relative;
  color: #0092c6 !important;
  z-index: 5;
}
.line-footer .btn.btn-splash::before {
  content: "";
  background-color: #ffffff;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.line-footer .btn.btn-splash:hover, .line-footer .btn.btn-splash:focus {
  color: white !important;
  background: transparent;
  border: none;
}
.line-footer .btn.btn-splash:hover::before, .line-footer .btn.btn-splash:focus::before {
  content: "";
  background-color: #2f5b6a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .line-footer .row {
    display: flex;
    align-items: center;
  }
}
.line-footer .zone-50:first-of-type .btn.btn-link {
  padding-top: 0;
  padding-bottom: 0;
}
.line-footer .zone-50:last-of-type h3 {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-size: 19px;
  line-height: 27px;
  text-align: center;
  text-transform: uppercase;
}
.line-footer .mod-article__intro p,
.line-footer .mod-article__intro a {
  color: #fff;
}

@media screen and (min-width: 992px) {
  .line-footer-bottom .row {
    display: flex;
    align-items: center;
  }
}
.line-footer-bottom p,
.line-footer-bottom a {
  color: #fff;
}

.mod-header .header-ext + .header-ext {
  margin-left: 0;
}

@media screen and (min-width: 640px) and (max-width: 992px) {
  .line-top-menu.line-pad-0 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .line-top-menu .zone-33 {
    width: 20%;
    display: inline-block;
  }
}
.line-top-menu .zone-33 .mod-header {
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .line-top-menu .zone-67 {
    width: 80%;
    display: inline-block;
  }
}
.line-top-menu .mod-header .header-ext p {
  margin-bottom: 0;
}
.line-top-menu .mod-header .header-ext a {
  color: #fff;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  display: inline;
}
.line-top-menu .mod-header .header-ext a:hover {
  color: #70c0df;
}
.line-top-menu .header-ext-custom p,
.line-top-menu .header-ext-login a:first-of-type {
  padding-left: 15px;
}
.line-top-menu .social-link [class*=icon-],
.line-top-menu .cart-icon__icon {
  color: #4f4f4f;
  font-size: 2rem;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: transparent;
  padding: 6px;
  display: inline;
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 992px) {
  .line-top-menu {
    height: 40px;
  }
  .line-top-menu .container-fluid {
    height: 100%;
  }
  .line-top-menu .container-fluid .row {
    height: 100%;
  }
  .line-top-menu .container-fluid .row .zone-header {
    height: 100%;
  }
  .line-top-menu .container-fluid .row .zone-header .rf-mod-header-wrapper {
    height: 100%;
  }
  .line-top-menu .container-fluid .row .zone-header .rf-mod-header-wrapper .mod-header-container {
    height: 100%;
  }
  .line-top-menu .container-fluid .row .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header-part {
    height: 100%;
  }
  .line-top-menu .container-fluid .row .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header-part .mod-header {
    height: 100%;
  }
  .line-top-menu .container-fluid .row .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header-part .mod-header .header-ext {
    height: 100%;
    display: inline-flex;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .line-top-menu .container-fluid .row .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header-part .mod-header .header-ext.header-ext-login {
    height: 100%;
    display: inline-flex;
    align-items: center;
    display: none;
  }
  .member--isConnected .line-top-menu .container-fluid .row .zone-header .rf-mod-header-wrapper .mod-header-container .mod-header-part .mod-header .header-ext.header-ext-login {
    height: 100%;
    display: inline-flex;
    align-items: center;
  }
  .member--isConnected .row .zone-header:first-of-type {
    order: 1;
  }
  .member--isConnected .row .zone-header:last-of-type {
    order: 2;
  }
  .member--isConnected .row .zone-menu {
    order: 3;
  }
  .member--isConnected .row .zone-menu .navbar-default .navbar-nav li a:last-of-type {
    padding-right: 0 !important;
  }
  .member--isConnected .row .zone-menu .navbar-default .navbar-nav .dropdown-menu li a:last-of-type {
    padding-right: 15px !important;
  }
  .line-menu .navbar-nav {
    float: right;
  }
  .line-menu .navbar-nav::before {
    display: none;
  }
  .line-menu .navbar-nav::after {
    display: none;
  }
  .line-menu::after {
    display: none;
  }
  .line-menu .row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 992px) and (max-width: 992px) {
  .line-menu .row .zone-header:first-of-type {
    display: inline-block;
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .line-menu .row .zone-menu {
    display: block;
  }
}
@media screen and (min-width: 992px) and (max-width: 992px) {
  .line-menu .row .zone-menu {
    display: inline-block;
    width: 50%;
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) {
  .line-menu .row .zone-menu.col-sm-12:nth-of-type(2) {
    width: 60%;
  }
}
@media screen and (min-width: 767px) {
  .line-menu .header-ext-login .member-register {
    font-family: "Quicksand", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: none !important;
    max-width: 100%;
    min-width: 1px;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 25px;
    transition: all 0.225s linear;
    background-color: transparent;
    color: white;
    border: none;
    position: relative;
    z-index: 5;
  }
  .line-menu .header-ext-login .member-register::before {
    content: "";
    background-color: #39b44a;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .line-menu .header-ext-login .member-register:hover, .line-menu .header-ext-login .member-register:focus, .line-menu .header-ext-login .member-register:active {
    color: white;
    background-color: transparent;
  }
  .line-menu .header-ext-login .member-register:hover::before, .line-menu .header-ext-login .member-register:focus::before, .line-menu .header-ext-login .member-register:active::before {
    content: "";
    background-color: #2f5b6a;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .line-menu .header-ext-login .member-register {
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }
  .line-menu .header-ext-login .member-login {
    font-family: "Quicksand", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: none !important;
    max-width: 100%;
    min-width: 1px;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 25px;
    transition: all 0.225s linear;
    background-color: transparent;
    color: white;
    border: none;
    position: relative;
    z-index: 5;
  }
  .line-menu .header-ext-login .member-login::before {
    content: "";
    background-color: #0092c6;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .line-menu .header-ext-login .member-login:hover, .line-menu .header-ext-login .member-login:focus, .line-menu .header-ext-login .member-login:active {
    color: white;
    background: transparent;
  }
  .line-menu .header-ext-login .member-login:hover::before, .line-menu .header-ext-login .member-login:focus::before, .line-menu .header-ext-login .member-login:active::before {
    content: "";
    background-color: #2f5b6a;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .line-menu .header-ext-login .member-login {
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }
}
@media screen and (min-width: 767px) and (max-width: 992px) {
  .line-menu .mod-header {
    text-align: left;
  }
  .line-menu .row {
    padding-bottom: 2rem;
  }
  .line-menu .zone-header {
    padding-left: 0;
  }
  .line-menu .zone-25 {
    width: 50%;
  }
}
@media screen and (max-width: 1400px) {
  .line-menu .zone-header:first-of-type {
    width: 25%;
  }
  .line-menu .zone-menu {
    width: 75%;
  }
  .line-menu .zone-menu ul {
    float: right;
  }
}

@media screen and (max-width: 992px) {
  .line-menu .row {
    padding-right: 0 !important;
  }
}
@media screen and (max-width: 992px) {
  .line-menu .row .zone-header:first-of-type {
    display: inline-block;
    width: 60%;
  }
  .line-menu .row .zone-header:first-of-type .mod-header-logo {
    width: inherit;
    max-width: 250px;
  }
}
@media screen and (max-width: 992px) {
  .line-menu .row .zone-menu {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 991px) and (max-width: 1400px) {
  .line-menu .zone-header.col-sm-6:first-of-type {
    width: 15%;
  }
  .line-menu .zone-50.col-sm-12 {
    width: 50%;
  }
  .line-menu .zone-25.col-sm-6:last-of-type {
    width: 35%;
  }
  .line-menu .navbar-default .navbar-nav > li > a.dropdown-toggle {
    padding: 0 0rem;
  }
  .line-menu .mod-header-logo {
    padding: 18px 15px 18px 0;
  }
}
@media screen and (max-width: 992px) {
  .line-top-menu .container-fluid > .row-fluid > div:first-child {
    width: 20%;
    display: inline-block;
  }
  .line-top-menu .container-fluid > .row-fluid > div:last-child {
    width: 80%;
    display: inline-block;
  }
  .line-top-menu .mod-header .header-ext a.member-login {
    font-family: "Quicksand", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: none !important;
    max-width: 100%;
    min-width: 1px;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 25px;
    transition: all 0.225s linear;
    background-color: transparent;
    color: white;
    border: none;
    position: relative;
    z-index: 5;
  }
  .line-top-menu .mod-header .header-ext a.member-login::before {
    content: "";
    background-color: #0092c6;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .line-top-menu .mod-header .header-ext a.member-login:hover, .line-top-menu .mod-header .header-ext a.member-login:focus, .line-top-menu .mod-header .header-ext a.member-login:active {
    color: white;
    background: transparent;
  }
  .line-top-menu .mod-header .header-ext a.member-login:hover::before, .line-top-menu .mod-header .header-ext a.member-login:focus::before, .line-top-menu .mod-header .header-ext a.member-login:active::before {
    content: "";
    background-color: #2f5b6a;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .line-top-menu .mod-header .header-ext a.member-register {
    font-family: "Quicksand", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: none !important;
    max-width: 100%;
    min-width: 1px;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 25px;
    transition: all 0.225s linear;
    background-color: transparent;
    color: white;
    border: none;
    position: relative;
    z-index: 5;
  }
  .line-top-menu .mod-header .header-ext a.member-register::before {
    content: "";
    background-color: #39b44a;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .line-top-menu .mod-header .header-ext a.member-register:hover, .line-top-menu .mod-header .header-ext a.member-register:focus, .line-top-menu .mod-header .header-ext a.member-register:active {
    color: white;
    background-color: transparent;
  }
  .line-top-menu .mod-header .header-ext a.member-register:hover::before, .line-top-menu .mod-header .header-ext a.member-register:focus::before, .line-top-menu .mod-header .header-ext a.member-register:active::before {
    content: "";
    background-color: #2f5b6a;
    padding: 12px 25px;
    transform: skew(-12deg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .header-ext-login .separator {
    border: 0;
    margin: 0;
    display: inline-block;
    width: 0.05rem;
  }
  .navbar-toggle {
    margin-top: -6.5rem;
  }
  .line-menu .row .zone-menu {
    display: block;
    width: 100%;
  }
  .line-menu .row .zone-menu ul {
    float: left;
    width: 100%;
  }
  .line-menu .row .zone-menu .navbar-default .navbar-nav > li > a {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.navbar-default .navbar-nav > li > a:focus {
  color: #4f4f4f;
}

.navbar-collapse.in {
  overflow-y: hidden;
}

.navbar-default .navbar-nav .dropdown-menu li a,
.navbar-default .navbar-nav li a {
  text-transform: none;
  display: inline-block;
  border-radius: inherit;
  padding: 1rem 2rem;
  color: #332e2e;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0em;
}

.navbar-default .navbar-nav .dropdown-menu li a,
.navbar-default .navbar-nav li a {
  padding: 1rem 2rem;
}
@media screen and (min-width: 992px) {
  .navbar-default .navbar-nav .dropdown-menu li a,
  .navbar-default .navbar-nav li a {
    text-transform: none;
    border-radius: inherit;
    padding: 1rem 1.6rem;
    color: #332e2e;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0em;
  }
}

@media screen and (max-width: 768px) {
  .member--isConnected .line-top-menu .header-ext.header-ext-login .member-myprofile,
  .member--isConnected .line-top-menu .header-ext.header-ext-login .member-logout {
    font-family: "Quicksand";
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 43px;
    background-color: transparent;
    color: #2f5b6a;
    text-transform: none;
  }
  .member--isConnected .line-top-menu .header-ext.header-ext-login .member-myprofile::before,
  .member--isConnected .line-top-menu .header-ext.header-ext-login .member-logout::before {
    display: none;
  }
}

.line-top-menu .header-ext.header-ext-login {
  display: none;
}

.member--isConnected .line-top-menu .header-ext.header-ext-login {
  display: block;
}

@media screen and (min-width: 1400px) {
  .line-top-menu .container-fluid > .row {
    width: 1340px;
  }
}

@media screen and (min-width: 1400px) {
  .line-menu .container-fluid > .row {
    width: 1340px;
  }
}
.line-menu .header-ext.header-ext-login .separator {
  border: 0;
  margin: 0;
  display: inline-block;
  width: 1rem;
}

.member--isConnected .line-menu .header-ext.header-ext-login {
  display: none;
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
  .line-menu .row {
    display: flex;
    flex-wrap: wrap;
  }
  .line-menu .row::before, .line-menu .row::after {
    display: none;
  }
  .line-menu .row .navbar-nav {
    width: 100%;
    display: flex;
  }
  .line-menu .row .navbar-nav > li {
    flex: 1 auto;
    text-align: center;
  }
  .line-menu .row .navbar-nav > li:first-of-type {
    text-align: left;
  }
  .line-menu .row .navbar-nav > li:last-of-type {
    text-align: right;
  }
  .line-menu .row .navbar-default .navbar-nav > li > a.dropdown-toggle {
    padding-left: 10px;
    padding-right: 10px;
  }
  .line-menu .row .navbar-default .navbar-nav li a {
    padding: 1rem 1.8rem;
  }
  .line-menu .row .zone-header.col-sm-6:first-of-type {
    order: 1;
    width: 50%;
  }
  .line-menu .row .zone-menu.col-sm-12:nth-of-type(2) {
    order: 3;
    width: 100%;
  }
  .line-menu .row .zone-25.col-sm-6:last-of-type {
    order: 2;
    width: 50%;
  }
}
@media (max-width: 480px) {
  .header-ext.header-ext-login {
    width: 100vw;
    height: 55px;
    padding: 1.5rem;
  }
}
.line-menu .dropdown-toggle {
  color: transparent !important;
}

.navbar-default .navbar-nav > li.active,
.navbar-default .navbar-nav > li {
  background-color: #fff;
}
.navbar-default .navbar-nav > li.active > a,
.navbar-default .navbar-nav > li > a {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}
.navbar-default .navbar-nav > li.active:hover,
.navbar-default .navbar-nav > li:hover {
  background-color: #fff;
}
.navbar-default .navbar-nav > li.active:hover > a,
.navbar-default .navbar-nav > li:hover > a {
  color: #0092c6;
}
.navbar-default .navbar-nav > li.active a,
.navbar-default .navbar-nav > li a {
  color: #3a3a3a;
  background-color: #fff;
}

.navbar-default .navbar-nav > li > .dropdown-menu > li:hover {
  background-color: #fff;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > a {
  font-family: "Quicksand";
  font-style: normal;
  text-transform: none;
  font-weight: 400;
  font-size: 16px;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:hover {
  background-color: #fff;
  color: #0092c6;
}

.navbar-default .navbar-nav > li > .dropdown-menu {
  background-color: #fff;
  border: none;
  box-shadow: none;
}
@media screen and (min-width: 992px) {
  .navbar-default .navbar-nav > li > .dropdown-menu {
    border: 1px solid #c8d4d8;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.08);
  }
}

.navbar-default .navbar-nav > li > a {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.line-menu.sticked .container-fluid {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
}
.line-menu.sticked .container-fluid .mod-header-logo {
  width: 245px;
}
.line-menu.sticked .container-fluid .header-ext-login .member-register,
.line-menu.sticked .container-fluid .header-ext-login .member-login {
  font-size: 12.45px;
}

.member-greeting {
  display: none;
}

#submit.btn.btn-primary {
  position: relative;
  color: #39b44a;
}
#submit.btn.btn-primary:hover {
  color: #3a3a3a;
}

.form-withProgress__navigation-footer #submit.btn.btn-primary {
  position: relative;
  color: #fff;
  padding-left: 25px;
}
.form-withProgress__navigation-footer #submit.btn.btn-primary:hover {
  color: #fff;
  padding-left: 25px;
}

.line-carousel-accueil {
  position: relative;
}
.line-carousel-accueil::after {
  content: "";
  background: linear-gradient(102.81deg, #0092c6 27.46%, #39b44a 100%);
  mix-blend-mode: normal;
  opacity: 0.27;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.line-carousel-accueil {
  height: 386px;
}
@media screen and (min-width: 992px) {
  .line-carousel-accueil {
    height: 700px;
  }
}
.line-carousel-accueil .zone-100 .carousel {
  height: 386px;
  max-height: 700px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .line-carousel-accueil .zone-100 .carousel {
    height: 700px;
  }
}
.line-carousel-accueil .zone-100 .carousel img {
  height: 386px !important;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .line-carousel-accueil .zone-100 .carousel img {
    height: 700px !important;
  }
}
.line-carousel-accueil .zone-100 .carousel .carousel-control {
  color: #2f5b6a;
}
.line-carousel-accueil .zone-100 .carousel .carousel-control span.glyphicon {
  background-color: #fff;
  color: #2f5b6a;
  width: 39px;
}
.line-carousel-accueil .zone-100 .carousel .carousel-control .sr-onlly {
  color: #2f5b6a;
}
.line-carousel-accueil .zone-100 .carousel .carousel-control .glyphicon-chevron-left {
  background: url(https://cdn.ca.yapla.com/company/CPY33CMa1BQmWqtEySkcIKp/asset/images/icones/IDU-chevron-left.svg) no-repeat center center;
  left: 0;
  width: 39px;
  height: 60px;
}
.line-carousel-accueil .zone-100 .carousel .carousel-control .glyphicon-chevron-right {
  background: url(https://cdn.ca.yapla.com/company/CPY33CMa1BQmWqtEySkcIKp/asset/images/icones/IDU-chevron-right.svg) no-repeat center center;
  right: 0;
  width: 39px;
  height: 60px;
}
.line-carousel-accueil .zone-100 .carousel .caption-intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
}
.line-carousel-accueil .zone-100 .carousel .caption-intro h1 {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  line-height: 51px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .line-carousel-accueil .zone-100 .carousel .caption-intro h1 {
    line-height: 111px;
    font-size: 90px;
  }
}
.line-carousel-accueil .zone-100 .carousel .caption-intro .btn-splash {
  position: relative;
  color: #2f5b6a;
}
.line-carousel-accueil .zone-100 .carousel .caption-intro .btn-splash::before {
  content: "";
  background-color: #ffffff;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.line-carousel-accueil .zone-100 .carousel .caption-intro .btn-splash:hover {
  color: #fff !important;
}
.line-carousel-accueil .zone-100 .carousel .caption-intro .btn-splash:hover::before {
  background-color: #000000;
}
.line-carousel-accueil .zone-100 .carousel .carousel-inner > .item {
  max-height: 700px;
}

.line-banner-interne {
  position: relative;
}
.line-banner-interne::after {
  content: "";
  background: linear-gradient(102.81deg, #0092c6 27.46%, #39b44a 100%);
  mix-blend-mode: normal;
  opacity: 0.47;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.line-banner-interne {
  height: 300px;
}
@media screen and (min-width: 992px) {
  .line-banner-interne {
    height: 300px;
  }
}
.line-banner-interne .container-fluid {
  padding-left: 0px !important;
  padding-right: 0px !important;
  width: 100%;
}
.line-banner-interne .row-fluid.row {
  padding-left: 0px !important;
  padding-right: 0px !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.line-banner-interne .zone-banner {
  height: 300px;
  max-height: 300px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .line-banner-interne .zone-banner {
    height: 300px;
  }
}
.line-banner-interne .zone-banner .mod-banner__img {
  height: 300px !important;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .line-banner-interne .zone-banner .mod-banner__img {
    height: 300px !important;
  }
}
.line-banner-interne .zone-banner .mod-banner__img .mod-banner__content {
  padding-left: 15px;
  z-index: 5;
}
@media screen and (min-width: 992px) {
  .line-banner-interne .zone-banner .mod-banner__img .mod-banner__content {
    padding-left: 150px;
    z-index: 5;
  }
}
.line-banner-interne .zone-banner .mod-banner__img .mod-banner__content h1 {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 70px;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .line-banner-interne .zone-banner .mod-banner__img .mod-banner__content h1 {
    font-size: 55px;
  }
}
.line-banner-interne .zone-banner .carousel-control {
  color: #2f5b6a;
}
.line-banner-interne .zone-banner .carousel-control span.glyphicon {
  background-color: #fff;
  color: #2f5b6a;
  width: 39px;
}
.line-banner-interne .zone-banner .carousel-control .sr-onlly {
  color: #2f5b6a;
}
.line-banner-interne .zone-banner .carousel-control .glyphicon-chevron-left {
  background: url(https://cdn.ca.yapla.com/company/CPY33CMa1BQmWqtEySkcIKp/asset/images/icones/IDU-chevron-left.svg) no-repeat center center;
}
.line-banner-interne .zone-banner .carousel-control .glyphicon-chevron-right {
  background: url(https://cdn.ca.yapla.com/company/CPY33CMa1BQmWqtEySkcIKp/asset/images/icones/IDU-chevron-right.svg) no-repeat center center;
}
.line-banner-interne .zone-banner .caption-intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.line-banner-interne .zone-banner .caption-intro h1 {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .line-banner-interne .zone-banner .caption-intro h1 {
    line-height: 111px;
    font-size: 90px;
  }
}
.line-banner-interne .zone-banner .caption-intro .btn-splash {
  position: relative;
  color: #2f5b6a;
}
.line-banner-interne .zone-banner .caption-intro .btn-splash::before {
  content: "";
  background-color: #ffffff;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.line-banner-interne .zone-banner .carousel-inner > .item {
  max-height: 700px;
}

.line-banner-grey {
  position: relative;
}
.line-banner-grey::after {
  content: "";
  background: #2f5b6a;
  mix-blend-mode: normal;
  opacity: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.line-banner-grey {
  height: 300px;
}
@media screen and (min-width: 992px) {
  .line-banner-grey {
    height: 300px;
  }
}
.line-banner-grey .container-fluid {
  padding-left: 0px !important;
  padding-right: 0px !important;
  width: 100%;
}
.line-banner-grey .row-fluid.row {
  padding-left: 0px !important;
  padding-right: 0px !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.line-banner-grey .zone-banner {
  height: 300px;
  max-height: 300px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .line-banner-grey .zone-banner {
    height: 300px;
  }
}
.line-banner-grey .zone-banner .mod-banner__img {
  height: 300px !important;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .line-banner-grey .zone-banner .mod-banner__img {
    height: 300px !important;
  }
}
.line-banner-grey .zone-banner .mod-banner__img .mod-banner__content {
  padding-left: 150px;
  z-index: 5;
}
.line-banner-grey .zone-banner .mod-banner__img .mod-banner__content h1 {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  font-size: 55px;
  line-height: 111px;
  /* or 202% */
  text-transform: uppercase;
  color: #ffffff;
}
.line-banner-grey .zone-banner .carousel-control {
  color: #2f5b6a;
}
.line-banner-grey .zone-banner .carousel-control span.glyphicon {
  background-color: #fff;
  color: #2f5b6a;
  width: 39px;
}
.line-banner-grey .zone-banner .carousel-control .sr-onlly {
  color: #2f5b6a;
}
.line-banner-grey .zone-banner .carousel-control .glyphicon-chevron-left {
  background: url(https://cdn.ca.yapla.com/company/CPY33CMa1BQmWqtEySkcIKp/asset/images/icones/IDU-chevron-left.svg) no-repeat center center;
}
.line-banner-grey .zone-banner .carousel-control .glyphicon-chevron-right {
  background: url(https://cdn.ca.yapla.com/company/CPY33CMa1BQmWqtEySkcIKp/asset/images/icones/IDU-chevron-right.svg) no-repeat center center;
}
.line-banner-grey .zone-banner .caption-intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.line-banner-grey .zone-banner .caption-intro h1 {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .line-banner-grey .zone-banner .caption-intro h1 {
    line-height: 111px;
    font-size: 90px;
  }
}
.line-banner-grey .zone-banner .caption-intro .btn-splash {
  position: relative;
  color: #2f5b6a;
}
.line-banner-grey .zone-banner .caption-intro .btn-splash::before {
  content: "";
  background-color: #ffffff;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.line-banner-grey .zone-banner .carousel-inner > .item {
  max-height: 700px;
}

.breadcrumb {
  margin-top: 30px;
  margin-bottom: 0px;
}
@media screen and (min-width: 992px) {
  .breadcrumb {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.breadcrumb > li + li:before {
  content: ">";
  padding: 0 20px;
  color: #0092c6;
}

.breadcrumb > .active span {
  position: relative;
  padding: 10px 15px;
}
.breadcrumb > .active span::after {
  content: "";
  background-color: rgba(47, 91, 106, 0.062745098);
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.breadcrumb a,
.breadcrumb span {
  color: #2f5b6a;
}

@media screen and (max-width: 992px) {
  .line-header .row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .line-header .zone-breadcrumbs {
    padding-left: 0;
    padding-right: 0;
  }
  .line-header .zone-breadcrumbs .breadcrumb {
    padding-left: 0;
    padding-right: 0;
  }
  .line-header .zone-breadcrumbs .breadcrumb > li + li:before {
    padding: 0 10px;
  }
  .line-header .zone-breadcrumbs .breadcrumb .active span {
    position: relative;
    padding: 10px 9px;
  }
}
.thermometer-circular .mask .fill {
  clip: rect(0px, 135px, 270px, 0px);
  background-color: #1fabe1;
}
.thermometer-circular:before {
  background-color: rgba(31, 171, 225, 0.2);
}
.thermometer-circular .text,
.thermometer-circular .numbers {
  color: #808080;
}

.zone-article .mod-article__img {
  margin-bottom: 5rem;
}

.modal .form-horizontal .col-md-12 {
  width: 100%;
}

#group_form_add_web.form-horizontal .col-md-12 {
  width: 100%;
}

.table__field-image {
  width: 300px;
  min-height: 150px !important;
  height: 200px !important;
  object-fit: contain;
}

.paginatorNbRow {
  display: none;
}

#img-group_logo {
  width: 350px;
  object-fit: contain;
}

.wrapper_membership_list .radio label {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #0092c6;
}
.wrapper_membership_list .badge.price-membership-badge {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  color: #0092c6;
}

.member-step-confirm .form-withProgress__navigation-footer {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.mod-article__title {
  padding-bottom: 2rem;
}

.sidebar__member-zone .member-sidebar__member-header {
  border-bottom: none;
}
.sidebar__member-zone .member-sidebar__member-header h3 {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.02em;
  /* bleu */
  color: #0092c6;
}
.sidebar__member-zone .member-sidebar__inner {
  background: #fff;
  margin-bottom: 3rem;
  border-right: 1px solid #0092c6;
}
.sidebar__member-zone .member-sidebar__inner a {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #3a3a3a;
}
.sidebar__member-zone .member-sidebar__member-footer {
  background: transparent;
  padding: 0.6rem 0;
  margin-top: 0;
}
.sidebar__member-zone .member-sidebar__member-footer a {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: none !important;
  max-width: 100%;
  min-width: 1px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 25px;
  transition: all 0.225s linear;
  background-color: transparent;
  color: white;
  border: none;
  position: relative;
  z-index: 5;
}
.sidebar__member-zone .member-sidebar__member-footer a::before {
  content: "";
  background-color: #0092c6;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.sidebar__member-zone .member-sidebar__member-footer a:hover, .sidebar__member-zone .member-sidebar__member-footer a:focus, .sidebar__member-zone .member-sidebar__member-footer a:active {
  color: white;
  background: transparent;
}
.sidebar__member-zone .member-sidebar__member-footer a:hover::before, .sidebar__member-zone .member-sidebar__member-footer a:focus::before, .sidebar__member-zone .member-sidebar__member-footer a:active::before {
  content: "";
  background-color: #2f5b6a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.sidebar__member-zone .member-sidebar__member-footer a {
  margin-left: 2rem;
  display: inline-block;
}

.panel-group .panel-default > .panel-heading {
  color: #0092c6;
  background-color: #ffffff;
  border-color: #ffffff;
}
.panel-group .panel-default > .panel-heading a {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
}
.panel-group .panel-default > .panel-heading {
  border-bottom: 1px solid #0092c6;
}
.panel-group .panel-heading .panel-title > a.collapsed:after {
  background-color: #0092c6;
  border-radius: 50%;
  padding: 1px 10px;
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 10px;
}
.panel-group .panel-heading .panel-title > a:after {
  background-color: #0092c6;
  border-radius: 50%;
  padding: 7px 14px;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 12px;
}

.paginatorNbRow {
  display: none;
}

.paginationControl {
  padding-top: 5rem;
}

.zone-article .mod-article__content .mod-article__img {
  max-width: 300px;
}

.zone-article .mod-article__content .mod-article__img {
  margin-bottom: 2.5rem;
}

.zone-news__article-wrapper .back-to-list {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 772px) {
  .news-detail h1 {
    font-size: 25px;
  }
}

.line {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.line-menu, .line-banner, .line-header {
  padding-top: 0px;
  padding-bottom: 0px;
}

.line-pad-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.line-pad-sm {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.line-pad-md {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.line-pad-lg {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.line-pad-t-0 {
  padding-top: 0;
}

.line-pad-t-sm {
  padding-top: 2.5rem;
}

.line-pad-t-md {
  padding-top: 3rem;
}

.line-pad-t-lg {
  padding-top: 5rem;
}

.line-pad-b-0 {
  padding-bottom: 0;
}

.line-pad-b-sm {
  padding-bottom: 2.5rem;
}

.line-pad-b-md {
  padding-bottom: 3rem;
}

.line-pad-b-lg {
  padding-bottom: 5rem;
}

/*Flex site inner, keeps the footer on bottom*/
html,
body,
#site-wrapper {
  height: 100%;
}

#site-wrapper {
  height: 100%;
}

.site-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.line-footer,
.line-bottom-page {
  margin-top: auto;
  width: 100%;
}

.poweredBy-wrapper {
  width: 100%;
}

@media (min-width: 1400px) {
  .container {
    width: 1360px;
  }
}
@media (min-width: 1700px) {
  .container {
    width: 1500px;
  }
}
@media (min-width: 768px) {
  .container-fluid > .row,
  .container > .row {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container-fluid > .row,
  .container > .row {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-fluid > .row,
  .container > .row {
    width: 1150px;
  }
}
@media (min-width: 1400px) {
  .container-fluid > .row,
  .container > .row {
    width: 1310px;
  }
}
@media (min-width: 1700px) {
  .container-fluid > .row,
  .container > .row {
    width: 1310px;
  }
}
.container-fluid > .row,
.container > .row {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.line-carousel-accueil .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.line-carousel-accueil .container-fluid > .row {
  margin-right: auto;
  margin-left: auto;
  padding-left: 0px;
  padding-right: 0px;
  width: auto;
}

.line-border-bottom-gradient {
  padding-bottom: 1rem;
}
.line-border-bottom-gradient .row {
  padding-bottom: 50px;
}
.line-border-bottom-gradient .content {
  position: relative;
}
.line-border-bottom-gradient .content::after {
  content: "";
  text-align: center;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, #0092c6, #39b44a);
  border-image-slice: 2;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.line-border-bottom-gradient.line-event {
  padding-bottom: 1rem;
}
.line-border-bottom-gradient.line-event .row {
  padding-bottom: 50px;
}
.line-border-bottom-gradient.line-event .content {
  position: relative;
}
.line-border-bottom-gradient.line-event .content::after {
  content: "";
  text-align: center;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, #0092c6, #39b44a);
  border-image-slice: 2;
  width: 100%;
  position: absolute;
  bottom: 80px;
}

.line-border-bottom-gradient-full {
  padding-bottom: 1rem;
}
.line-border-bottom-gradient-full .row {
  padding-bottom: 50px;
}
.line-border-bottom-gradient-full .container {
  position: relative;
}
.line-border-bottom-gradient-full .container::after {
  content: "";
  text-align: center;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, #0092c6, #39b44a);
  border-image-slice: 2;
  width: 100%;
  position: absolute;
  bottom: 0px;
}

.line-title {
  display: none;
}

.page-accueil .line-banner-interne {
  display: none;
}

.line-mission {
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .line-mission.line-pad-lg {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .line-mission .row {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.line-mission .zone-50:first-of-type {
  width: 100%;
  height: 360px !important;
  display: inline;
  object-fit: contain;
}
@media screen and (min-width: 992px) {
  .line-mission .zone-50:first-of-type {
    width: 650px;
    height: 365px !important;
    display: block;
    object-fit: contain;
  }
}
@media screen and (max-width: 992px) {
  .line-mission .zone-50:first-of-type .content {
    text-align: left;
  }
}
.line-mission .zone-50:first-of-type .content img {
  height: 365px !important;
  object-fit: contain;
}
.line-mission .zone-50:last-of-type {
  position: relative;
  width: 100%;
  height: 260px;
  display: inline;
  margin-top: 2.5rem;
}
@media screen and (min-width: 992px) {
  .line-mission .zone-50:last-of-type {
    width: 50%;
    display: block;
  }
}
.line-mission .zone-50:last-of-type::after {
  content: "";
  border: 1px solid #ffffff;
  width: calc(100% + 240px);
  height: 442px;
  position: absolute;
  top: 45%;
  left: -200px;
  transform: translateY(-50%);
  display: none;
}
@media screen and (min-width: 992px) {
  .line-mission .zone-50:last-of-type::after {
    display: block;
    z-index: -1;
  }
}
.line-mission .zone-50:last-of-type .mod-article__intro h2,
.line-mission .zone-50:last-of-type .mod-article__intro p {
  color: #ffffff;
}
.line-mission .zone-50:last-of-type .mod-article__intro .btn.btn-splash {
  position: relative;
  color: #0092c6 !important;
  z-index: 5;
}
.line-mission .zone-50:last-of-type .mod-article__intro .btn.btn-splash::before {
  content: "";
  background-color: #ffffff;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.line-actualite h2 {
  text-align: center;
  margin-bottom: 5rem;
}
.line-actualite h3 a,
.line-actualite h3 {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 29px;
}
.line-actualite .e-date {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 29px;
}
.line-actualite .btn.btn-primary {
  color: white;
  border: none;
  position: relative;
  z-index: 5;
}
.line-actualite .btn.btn-primary::before {
  content: "";
  background-color: #0092c6;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.line-actualite .btn.btn-primary:hover, .line-actualite .btn.btn-primary:focus, .line-actualite .btn.btn-primary:active {
  color: white;
  background: transparent;
}
.line-actualite .btn.btn-primary:hover::before, .line-actualite .btn.btn-primary:focus::before, .line-actualite .btn.btn-primary:active::before {
  content: "";
  background-color: #2f5b6a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.line-actualite .viewAll {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
  width: fit-content;
  margin-top: 5rem;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  background-color: transparent;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* gris bleu */
  color: #2f5b6a;
  position: relative;
}
.line-actualite .viewAll::after {
  content: url("https://cdn.ca.yapla.com/company/CPY33CMa1BQmWqtEySkcIKp/asset/images/icones/arrow.svg");
  width: 30px;
  height: 13px;
  position: absolute;
  right: -10px;
  top: 15%;
}
@media screen and (min-width: 360px) and (max-width: 992px) {
  .line-actualite .viewAll::after {
    right: -30px;
  }
}
@media screen and (min-width: 992px) {
  .line-actualite .viewAll::after {
    right: -50px;
  }
}
@media screen and (max-width: 992px) {
  .line-actualite .item {
    margin-bottom: 5rem;
  }
}

.line-event h2 {
  text-align: center;
  margin-bottom: 5rem;
}
.line-event h3 a,
.line-event h3 {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 29px;
}
.line-event .intro {
  display: none;
}
.line-event .e-date {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 29px;
}
.line-event .btn.btn-primary {
  color: white;
  border: none;
  position: relative;
  z-index: 5;
}
.line-event .btn.btn-primary::before {
  content: "";
  background-color: #0092c6;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.line-event .btn.btn-primary:hover, .line-event .btn.btn-primary:focus, .line-event .btn.btn-primary:active {
  color: white;
  background: transparent;
}
.line-event .btn.btn-primary:hover::before, .line-event .btn.btn-primary:focus::before, .line-event .btn.btn-primary:active::before {
  content: "";
  background-color: #2f5b6a;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.line-event .viewAll {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
  width: fit-content;
  margin-top: 5rem;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 32px;
  background-color: transparent;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* gris bleu */
  color: #2f5b6a;
  position: relative;
}
.line-event .viewAll::after {
  content: url("https://cdn.ca.yapla.com/company/CPY33CMa1BQmWqtEySkcIKp/asset/images/icones/arrow.svg");
  width: 30px;
  height: 13px;
  position: absolute;
  right: -10px;
  top: 15%;
}
@media screen and (min-width: 360px) and (max-width: 992px) {
  .line-event .viewAll::after {
    right: -30px;
  }
}
@media screen and (min-width: 992px) {
  .line-event .viewAll::after {
    right: -50px;
  }
}

.line-partners {
  min-height: 299px;
}
@media screen and (max-width: 770px) {
  .line-partners .caption-intro p {
    display: flex;
    flex-direction: column;
  }
  .line-partners .zone-100 .carousel-inner > .item {
    max-height: 545px;
  }
  .line-partners .zone-100 .carousel {
    max-height: 545px;
  }
}
.line-partners .intro h4,
.line-partners .caption-intro h4:first-of-type {
  position: relative;
  height: 58px;
  line-height: 20px;
}
.line-partners .intro h4::after,
.line-partners .caption-intro h4:first-of-type::after {
  content: "";
  text-align: center;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(0.25turn, #0092c6, #39b44a);
  border-image-slice: 2;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0;
}
.line-partners p {
  margin-top: 4rem;
}
@media screen and (max-width: 772px) {
  .line-partners .zone-news_flash .news .col-sm-6 {
    width: 100%;
    min-height: 250px;
  }
}
@media screen and (min-width: 772px) and (max-width: 1200px) {
  .line-partners .zone-news_flash .news .col-sm-6 {
    width: 50%;
  }
  .line-partners .zone-news_flash .news .col-sm-6 .intro {
    min-height: 250px;
  }
}

.line-members h2 {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .line-members h2 {
    font-size: 26px;
  }
}
.line-members .item h4 {
  position: relative;
  z-index: 1;
  padding: 1rem 2.5rem;
  min-height: 140px;
}
.line-members .item h4::before {
  content: "";
  background: linear-gradient(100.53deg, #0092c6 17.43%, #39b44a 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .line-members .item.col-xs-12 {
    width: 100%;
  }
}
.line-members .item div,
.line-members .item h4 {
  color: #fff;
}

.line-partners .logos {
  display: flex;
  margin: 30px 0;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 400px) {
  .line-partners .logos {
    flex-direction: column;
    margin: 30px 50px;
  }
}
.line-partners .logos > a {
  display: block;
  flex: 0 0 95%;
}
@media screen and (min-width: 400px) {
  .line-partners .logos > a {
    flex: 0 0 calc(50% - 30px);
  }
}
.line-partners .logos > a > img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .line-partners-3 .logos > a {
    flex: 0 0 calc(33.33% - 30px);
  }
}

@media screen and (min-width: 600px) {
  .line-partners-4 .logos > a {
    flex: 0 0 calc(25% - 45px);
  }
}

.page-about .news-thumbnail,
.page-equipe .news-thumbnail,
.page-conseil-gouvernance .news-thumbnail {
  height: 180px !important;
  width: 180px !important;
  object-fit: cover;
  border-radius: 50%;
}
.page-about .zone-news_flash .itemImage img,
.page-equipe .zone-news_flash .itemImage img,
.page-conseil-gouvernance .zone-news_flash .itemImage img {
  height: 180px !important;
  width: 180px;
  object-fit: cover;
  border-radius: 50%;
}
@media screen and (min-width: 640px) and (max-width: 1200px) {
  .page-about .col-sm-6,
  .page-equipe .col-sm-6,
  .page-conseil-gouvernance .col-sm-6 {
    width: 50%;
  }
}
.page-about .mod-article__content .mod-article__img,
.page-equipe .mod-article__content .mod-article__img,
.page-conseil-gouvernance .mod-article__content .mod-article__img {
  height: 130px !important;
  width: 130px;
  object-fit: cover;
  border-radius: 50%;
}

.line-video-rapport .row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.line-video-rapport .row iframe {
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  .line-video-rapport .row {
    flex-direction: row;
  }
}
.line-video-rapport .row h2 {
  color: #fff;
  margin-top: 0;
}
.line-video-rapport .row .btn-splash {
  z-index: 1;
  color: #0092c6 !important;
}
.line-video-rapport .row .btn-splash:hover {
  color: #fff !important;
}
.line-video-rapport .row .btn.btn-splash:hover::before {
  background-color: #2f5b6a;
}

.line-article-row .item {
  display: grid;
  grid-template-columns: 125px auto;
  align-items: flex-start;
}
.line-article-row .item .itemImage,
.line-article-row .item .itemImage img {
  margin-bottom: 0;
}
.line-article-row .item .intro {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: #2f5b6a;
}
.line-article-row .item .intro strong {
  font-weight: 700;
}
.line-article-row .zone-news_flash > .content .row + .row {
  margin-top: 3rem;
}
.line-article-row {
  padding-bottom: 10rem;
}
@media screen and (max-width: 992px) {
  .line-article-row .zone-news_flash > .content .row + .row {
    margin-top: 2rem;
  }
  .line-article-row .item:first-of-type {
    margin-bottom: 2rem;
  }
}

.line-cta .btn.btn-splash {
  z-index: 1;
  color: #39b44a !important;
}
.line-cta .btn.btn-splash:hover {
  color: #fff !important;
}
.line-cta .btn.btn-splash ::before {
  content: "";
  background-color: #fff;
  padding: 12px 25px;
  transform: skew(-12deg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.line-categories .panel-group .panel-default > .panel-heading {
  position: relative;
  padding-left: 0;
}
.line-categories .panel-group .panel-default > .panel-heading h3 a {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  color: #2f5b6a;
}
.line-categories .panel-group .panel-default > .panel-heading p:nth-of-type(1) {
  margin: 0 0 2rem;
}
.line-categories .panel-group .panel-default > .panel-heading p:nth-of-type(2) {
  margin: 0 0 2rem;
}
.line-categories .panel-group .panel-default > .panel-heading p:nth-of-type(3) {
  margin: 0 0 0rem;
}
.line-categories .panel-group .panel-default > .panel-heading p:nth-of-type(3) span span {
  font-weight: 500;
}
.line-categories .panel-group .panel-default > .panel-heading p:nth-of-type(4) {
  margin: 0 0 0rem;
}
.line-categories .panel-body {
  padding-left: 0px;
}
.line-categories .panel-group .panel-heading .panel-title > a.collapsed:after,
.line-categories .panel-group .panel-heading .panel-title > a:after {
  position: absolute;
  bottom: 15px;
  right: 0;
}
