@import url("https://fonts.googleapis.com/css2?family=Damion&family=Roboto:wght@100;300;400;500;700;900&display=swap");
/*form*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif; }

a {
  color: inherit; }

html {
  scroll-behavior: smooth; }

.ltp_headerNavMob {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #FFFFFF;
  -webkit-box-shadow: -1px 5px 5px 0 rgba(229, 229, 229, 0.3);
  box-shadow: -1px 5px 5px 0 rgba(229, 229, 229, 0.3);
  z-index: 110; }
  @media all and (min-width: 1024px) {
    .ltp_headerNavMob {
      display: none; } }
  .ltp_headerNavMob .ltp_logoPrim {
    width: auto;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .ltp_headerNavMob .ltp_logoPrim a {
      width: 100%;
      height: 100%; }
      .ltp_headerNavMob .ltp_logoPrim a img {
        width: auto;
        max-width: 100%;
        height: 100%; }
  .ltp_headerNavMob .ltp_burgerMenu {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer; }
    .ltp_headerNavMob .ltp_burgerMenu span {
      position: absolute;
      display: block;
      width: 80%;
      height: 4px;
      background-color: #000000; }
      .ltp_headerNavMob .ltp_burgerMenu span:nth-of-type(1) {
        -webkit-transition: -webkit-transform 0.5s ease;
        transition: -webkit-transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
        top: 25%;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(-25%);
        -ms-transform: translateX(-50%) translateY(-25%);
        transform: translateX(-50%) translateY(-25%); }
      .ltp_headerNavMob .ltp_burgerMenu span:nth-of-type(2) {
        top: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%); }
      .ltp_headerNavMob .ltp_burgerMenu span:nth-of-type(3) {
        -webkit-transition: -webkit-transform 0.5s ease;
        transition: -webkit-transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
        top: 75%;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(-75%);
        -ms-transform: translateX(-50%) translateY(-75%);
        transform: translateX(-50%) translateY(-75%); }
    .ltp_headerNavMob .ltp_burgerMenu.ltp_open span:nth-of-type(1) {
      top: 50%;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
      transform: translateX(-50%) translateY(-50%) rotate(45deg);
      -webkit-transition: -webkit-transform 0.5s ease;
      transition: -webkit-transform 0.5s ease;
      -o-transition: transform 0.5s ease;
      transition: transform 0.5s ease;
      transition: transform 0.5s ease, -webkit-transform 0.5s ease; }
    .ltp_headerNavMob .ltp_burgerMenu.ltp_open span:nth-of-type(2) {
      opacity: 0; }
    .ltp_headerNavMob .ltp_burgerMenu.ltp_open span:nth-of-type(3) {
      top: 50%;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      -webkit-transition: -webkit-transform 0.5s ease;
      transition: -webkit-transform 0.5s ease;
      -o-transition: transform 0.5s ease;
      transition: transform 0.5s ease;
      transition: transform 0.5s ease, -webkit-transform 0.5s ease; }

.ltp_headerNav {
  background-color: #FFFFFF;
  -webkit-box-shadow: -1px 5px 5px 0 rgba(229, 229, 229, 0.3);
  box-shadow: -1px 5px 5px 0 rgba(229, 229, 229, 0.3);
  position: fixed;
  z-index: 110;
  top: calc(29px + 60px);
  width: 250px;
  height: 100%;
  right: -300px;
  overflow-y: auto;
  -webkit-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease; }
  @media all and (min-width: 768px) {
    .ltp_headerNav {
      top: calc(39px + 60px); } }
  .ltp_headerNav [class*="menu_principal"][class$="container"] {
    padding: 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }
    .ltp_headerNav [class*="menu_principal"][class$="container"] .ltp_navLink, .ltp_headerNav [class*="menu_principal"][class$="container"] .sub-menu {
      list-style: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .ltp_headerNav [class*="menu_principal"][class$="container"] .ltp_navLink .menu-item-has-children, .ltp_headerNav [class*="menu_principal"][class$="container"] .sub-menu .menu-item-has-children {
        position: relative; }
      .ltp_headerNav [class*="menu_principal"][class$="container"] .ltp_navLink [id*="menu-item"], .ltp_headerNav [class*="menu_principal"][class$="container"] .sub-menu [id*="menu-item"] {
        padding: 10px 15px;
        font-size: 14px;
        font-weight: 300;
        text-align: center; }
        .ltp_headerNav [class*="menu_principal"][class$="container"] .ltp_navLink [id*="menu-item"].ltp_ctaNav, .ltp_headerNav [class*="menu_principal"][class$="container"] .sub-menu [id*="menu-item"].ltp_ctaNav {
          background-color: #6158be;
          color: #FFFFFF;
          margin: 0 10px;
          font-size: 14px;
          text-transform: uppercase; }
          @media all and (min-width: 1024px) {
            .ltp_headerNav [class*="menu_principal"][class$="container"] .ltp_navLink [id*="menu-item"].ltp_ctaNav, .ltp_headerNav [class*="menu_principal"][class$="container"] .sub-menu [id*="menu-item"].ltp_ctaNav {
              padding: 10px 25px;
              font-size: 16px; } }
        .ltp_headerNav [class*="menu_principal"][class$="container"] .ltp_navLink [id*="menu-item"] a, .ltp_headerNav [class*="menu_principal"][class$="container"] .sub-menu [id*="menu-item"] a {
          color: inherit;
          font-size: inherit;
          text-decoration: none; }
  .ltp_headerNav.ltp_open {
    right: 0;
    -webkit-transition: right 0.4s ease;
    -o-transition: right 0.4s ease;
    transition: right 0.4s ease; }
  .ltp_headerNav .ltp_logoPrim {
    display: none; }
    @media all and (min-width: 1024px) {
      .ltp_headerNav .ltp_logoPrim {
        width: auto;
        height: 70px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        .ltp_headerNav .ltp_logoPrim a {
          width: 100%;
          height: 100%; }
          .ltp_headerNav .ltp_logoPrim a img {
            width: auto;
            max-width: 100%;
            height: 100%; } }
  @media all and (min-width: 1024px) {
    .ltp_headerNav {
      position: static;
      overflow-y: inherit;
      -webkit-box-shadow: none;
      box-shadow: none;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 0 20px; }
      .ltp_headerNav [class*="menu_principal"][class$="container"] .ltp_navLink {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative; }
        .ltp_headerNav [class*="menu_principal"][class$="container"] .ltp_navLink [id*="menu-item"]:hover .sub-menu {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
      .ltp_headerNav [class*="menu_principal"][class$="container"] .sub-menu {
        display: none;
        background-color: #FFFFFF;
        position: absolute; }
        .ltp_headerNav [class*="menu_principal"][class$="container"] .sub-menu [id*="menu-item"] {
          font-size: 14px; } }
  @media all and (min-width: 1200px) {
    .ltp_headerNav {
      padding: 0; }
      .ltp_headerNav [class*="menu_principal"][class$="container"] .ltp_navLink [id*="menu-item"] {
        font-size: 16px; } }

@media all and (min-width: 1024px) {
  header {
    -webkit-box-shadow: -1px 5px 5px 0 rgba(229, 229, 229, 0.3);
    box-shadow: -1px 5px 5px 0 rgba(229, 229, 229, 0.3); } }

.ltp_headerPhoneMob {
  background-color: #6158be;
  position: fixed;
  top: 100px;
  right: 10px;
  z-index: 100;
  -webkit-box-shadow: -1px 5px 5px 0 rgba(0, 139, 194, 0.3);
  box-shadow: -1px 5px 5px 0 rgba(0, 139, 194, 0.3);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%; }
  .ltp_headerPhoneMob a {
    font-size: 30px;
    text-decoration: none;
    padding: 5px 0 0; }
    .ltp_headerPhoneMob a i {
      color: #FFFFFF; }
  @media all and (min-width: 768px) {
    .ltp_headerPhoneMob {
      display: none; } }

.ltp_footer {
  background-color: #008bc2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media all and (min-width: 768px) {
    .ltp_footer {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .ltp_footer .ltp_footerNav {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0; }
    @media all and (min-width: 1024px) {
      .ltp_footer .ltp_footerNav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }
    .ltp_footer .ltp_footerNav .ltp_credit {
      text-align: center;
      color: #FFFFFF;
      font-size: 13px;
      font-weight: 300;
      font-variant: small-caps; }
      @media all and (min-width: 1024px) {
        .ltp_footer .ltp_footerNav .ltp_credit {
          text-align: left; } }
    .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] {
      padding: 10px; }
      .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] .ltp_navFootLink, .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] .sub-menu {
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        @media all and (min-width: 1024px) {
          .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] .ltp_navFootLink, .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] .sub-menu {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-flow: row nowrap;
            flex-flow: row nowrap; } }
        .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] .ltp_navFootLink [id*="menu-item"], .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] .sub-menu [id*="menu-item"] {
          color: #FFFFFF;
          padding: 10px;
          font-size: 12px;
          font-weight: 500; }
          @media all and (min-width: 1200px) {
            .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] .ltp_navFootLink [id*="menu-item"], .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] .sub-menu [id*="menu-item"] {
              font-size: 14px; } }
          .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] .ltp_navFootLink [id*="menu-item"] a, .ltp_footer .ltp_footerNav [class*="menu_bas_page"][class$="container"] .sub-menu [id*="menu-item"] a {
            color: inherit;
            text-decoration: none; }

.ltp_footRs {
  background-color: #008bc2;
  border-bottom: 1px solid #008bc2;
  padding: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media all and (min-width: 768px) {
    .ltp_footRs {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap; } }
  .ltp_footRs * {
    color: #FFFFFF; }
  .ltp_footRs p {
    font-size: 16px;
    padding: 5px;
    text-transform: uppercase;
    font-weight: 700; }
  .ltp_footRs a {
    text-decoration: none;
    display: inline-block;
    padding: 5px; }
    .ltp_footRs a span {
      font-size: 24px; }

.ltp_ctaContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  .ltp_ctaContent .ltp_cta {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer; }
    .ltp_ctaContent .ltp_cta.pink {
      color: #ca268c; }
      .ltp_ctaContent .ltp_cta.pink .ltp_ctaBWLine {
        background-color: #ca268c; }
    .ltp_ctaContent .ltp_cta.purple {
      color: #6158be; }
      .ltp_ctaContent .ltp_cta.purple .ltp_ctaBWLine {
        background-color: #6158be; }
    .ltp_ctaContent .ltp_cta.yellow {
      color: #e2dd32; }
      .ltp_ctaContent .ltp_cta.yellow .ltp_ctaBWLine {
        background-color: #e2dd32; }
    .ltp_ctaContent .ltp_cta.green {
      color: #92bc00; }
      .ltp_ctaContent .ltp_cta.green .ltp_ctaBWLine {
        background-color: #92bc00; }
    .ltp_ctaContent .ltp_cta.blue {
      color: #008bc2; }
      .ltp_ctaContent .ltp_cta.blue .ltp_ctaBWLine {
        background-color: #008bc2; }
    .ltp_ctaContent .ltp_cta.orange {
      color: #ff6100; }
      .ltp_ctaContent .ltp_cta.orange .ltp_ctaBWLine {
        background-color: #ff6100; }
    .ltp_ctaContent .ltp_cta.red {
      color: #b41e2f; }
      .ltp_ctaContent .ltp_cta.red .ltp_ctaBWLine {
        background-color: #b41e2f; }
    @media all and (min-width: 768px) {
      .ltp_ctaContent .ltp_cta {
        font-size: 14px; } }
    .ltp_ctaContent .ltp_cta .ltp_ctaBWLine {
      display: block;
      content: '';
      width: 100%;
      height: 3px;
      position: absolute;
      bottom: 0;
      left: -100%;
      right: 0;
      background-color: white;
      -webkit-transition: left ease-out .3s;
      -o-transition: left ease-out .3s;
      transition: left ease-out .3s; }
    .ltp_ctaContent .ltp_cta span:first-of-type {
      position: relative;
      z-index: 2;
      color: inherit; }
    .ltp_ctaContent .ltp_cta:hover .ltp_ctaBWLine, .ltp_ctaContent .ltp_cta:focus .ltp_ctaBWLine {
      left: 0;
      -webkit-transition: left ease-out .3s;
      -o-transition: left ease-out .3s;
      transition: left ease-out .3s; }

.ltp_titleDot {
  font-size: 28px;
  text-align: center;
  padding: 20px 20px 10px; }
  @media all and (min-width: 768px) {
    .ltp_titleDot {
      font-size: 34px; } }
  @media all and (min-width: 1024px) {
    .ltp_titleDot {
      text-align: left;
      font-size: 40px; } }
  .ltp_titleDot span {
    font-family: "Damion";
    font-weight: 900; }

.ltp_textContent {
  padding: 20px; }
  .ltp_textContent p {
    margin: 15px 0;
    font-size: 14px; }
    @media all and (min-width: 768px) {
      .ltp_textContent p {
        font-size: 16px; } }

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 5px;
  background-color: #6158be;
  border: 1px solid #6158be;
  opacity: 1;
  -webkit-transition: width .3s ease;
  -o-transition: width .3s ease;
  transition: width .3s ease; }
  .dot.dotTest {
    background-color: #b41e2f;
    border: 1px solid #b41e2f; }

.slick-dots {
  bottom: -30px; }
  .slick-dots li {
    width: 20px;
    height: 20px; }
    .slick-dots li.slick-active .dot {
      background-color: rgba(97, 88, 190, 0.2);
      -webkit-transition: width .3s ease;
      -o-transition: width .3s ease;
      transition: width .3s ease; }
      .slick-dots li.slick-active .dot.dotTest {
        background-color: rgba(180, 30, 47, 0.2); }

.ltp_arrowSlide {
  background-color: rgba(255, 255, 255, 0.5);
  width: 40px;
  height: 60px;
  position: absolute;
  z-index: 100;
  top: 35%;
  cursor: pointer;
  font-size: 35px;
  opacity: 0.7; }
  .ltp_arrowSlide i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #707070; }
  .ltp_arrowSlide:hover, .ltp_arrowSlide:focus {
    opacity: 1; }
  .ltp_arrowSlide.prev {
    left: 10px; }
  .ltp_arrowSlide.next {
    right: 10px; }

.bg_gris {
  background-color: #f2f2f5; }

.blue {
  background-color: #008bc2; }

.green {
  background-color: #92bc00; }

.purple {
  background-color: #6158be; }

.red {
  background-color: #b41e2f; }

.pink {
  background-color: #ca268c; }

.yellow {
  background-color: #e2dd32; }

.orange {
  background-color: #ff6100; }

.white {
  background-color: #FFFFFF; }
  .white .ltp_titleDot {
    color: #6158be; }

.blanc {
  color: #FFFFFF; }

.noir {
  color: #343A40; }

ul, ol {
  list-style: inside; }

@media all and (min-width: 1024px) {
  .ltp_mobOnly {
    display: none; } }

.ltp_notMob {
  display: none; }
  @media all and (min-width: 1024px) {
    .ltp_notMob {
      display: block; } }

.ltp_hd {
  position: absolute;
  width: 0;
  height: 0;
  left: -9999px; }

.ltp_wrapperSection {
  margin-top: calc(29px + 60px); }
  @media all and (min-width: 1024px) {
    .ltp_wrapperSection {
      margin-top: 0; } }

.toast-message {
  color: #FFFFFF; }

.titre_cta_bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media all and (min-width: 768px) {
    .titre_cta_bg {
      height: 450px; } }
  @media all and (min-width: 1024px) {
    .titre_cta_bg {
      height: 600px; } }
  @media all and (min-width: 768px) {
    .titre_cta_bg .ltp_img {
      display: none; } }
  .titre_cta_bg .ltp_img img {
    max-width: 100%;
    height: auto; }
  .titre_cta_bg .ltp_bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    height: 100%;
    width: 100%; }
    @media all and (max-width: 767px) {
      .titre_cta_bg .ltp_bg {
        background: none !important; } }
    .titre_cta_bg .ltp_bg .ltp_title {
      position: relative;
      text-transform: uppercase;
      padding: 10px;
      width: 90%;
      max-width: 430px;
      text-align: center;
      margin-bottom: 20px; }
      @media all and (min-width: 768px) {
        .titre_cta_bg .ltp_bg .ltp_title {
          padding-top: 80px;
          margin-top: 20px; } }
      @media all and (min-width: 1024px) {
        .titre_cta_bg .ltp_bg .ltp_title {
          margin-top: 50px;
          margin-bottom: 50px; } }
      @media all and (min-width: 1200px) {
        .titre_cta_bg .ltp_bg .ltp_title {
          width: 100%;
          max-width: none; } }
      .titre_cta_bg .ltp_bg .ltp_title small {
        font-size: 24px;
        background: #FFFFFF;
        display: inline;
        padding: 8px 2px 8px;
        font-family: "Damion"; }
        @media all and (min-width: 768px) {
          .titre_cta_bg .ltp_bg .ltp_title small {
            font-size: 28px; } }
      .titre_cta_bg .ltp_bg .ltp_title big {
        font-family: "Damion";
        font-size: 36px;
        line-height: 36px;
        background: #FFFFFF;
        padding: 4px 2px 3px; }
        @media all and (min-width: 768px) {
          .titre_cta_bg .ltp_bg .ltp_title big {
            font-size: 43px;
            line-height: 43px; } }
        @media all and (min-width: 1200px) {
          .titre_cta_bg .ltp_bg .ltp_title big {
            font-size: 60px;
            line-height: 60px; } }

.texte_illustre_cote {
  padding: 30px 0; }
  @media all and (min-width: 1024px) {
    .texte_illustre_cote {
      padding: 10px 0; } }
  .texte_illustre_cote .ltp_sectContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media all and (min-width: 1024px) {
      .texte_illustre_cote .ltp_sectContainer {
        width: 90%;
        max-width: 1400px;
        margin: 40px auto; } }
    @media all and (min-width: 1024px) {
      .texte_illustre_cote .ltp_sectContainer.right {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse nowrap;
        flex-flow: row-reverse nowrap; } }
    @media all and (min-width: 1024px) {
      .texte_illustre_cote .ltp_sectContainer.right .ltp_wrapText {
        padding-right: 20px; } }
    @media all and (min-width: 1024px) {
      .texte_illustre_cote .ltp_sectContainer.left {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap; } }
    @media all and (min-width: 1024px) {
      .texte_illustre_cote .ltp_sectContainer.left .ltp_wrapText {
        padding-left: 20px; } }
    .texte_illustre_cote .ltp_sectContainer .ltp_wrapIllu {
      width: 100%;
      max-width: 1000px;
      position: relative;
      text-align: center; }
      @media all and (min-width: 768px) {
        .texte_illustre_cote .ltp_sectContainer .ltp_wrapIllu {
          padding: 20px; } }
      @media all and (min-width: 1024px) {
        .texte_illustre_cote .ltp_sectContainer .ltp_wrapIllu {
          width: 40%; } }
      .texte_illustre_cote .ltp_sectContainer .ltp_wrapIllu img {
        width: auto;
        max-width: 100%;
        height: 100%;
        max-height: 350px;
        margin: 0 auto; }
        @media all and (min-width: 1024px) {
          .texte_illustre_cote .ltp_sectContainer .ltp_wrapIllu img {
            min-height: 400px; } }
      .texte_illustre_cote .ltp_sectContainer .ltp_wrapIllu iframe {
        width: 100%; }
    .texte_illustre_cote .ltp_sectContainer .ltp_wrapText {
      width: 100%;
      text-align: center; }
      @media all and (min-width: 1024px) {
        .texte_illustre_cote .ltp_sectContainer .ltp_wrapText {
          width: 35%;
          text-align: left; } }
      .texte_illustre_cote .ltp_sectContainer .ltp_wrapText .ltp_ctaContent {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        @media all and (min-width: 1024px) {
          .texte_illustre_cote .ltp_sectContainer .ltp_wrapText .ltp_ctaContent {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            margin-left: 20px; } }
    .texte_illustre_cote .ltp_sectContainer .ltp_titleDot {
      width: 100%;
      max-width: 800px;
      padding: 40px 0 0;
      text-align: center; }
      @media all and (min-width: 1024px) {
        .texte_illustre_cote .ltp_sectContainer .ltp_titleDot {
          padding: 0 20px;
          text-align: left; } }

.carrousel_full_page {
  position: relative;
  padding: 0; }
  .carrousel_full_page img {
    width: 100%;
    height: auto; }
  .carrousel_full_page .ltp_slideFrame {
    height: 100%;
    text-align: center; }
    .carrousel_full_page .ltp_slideFrame iframe {
      width: 100vw;
      max-height: 300px; }
      @media all and (min-width: 768px) {
        .carrousel_full_page .ltp_slideFrame iframe {
          max-height: none;
          min-height: 400px; } }
      @media all and (min-width: 1024px) {
        .carrousel_full_page .ltp_slideFrame iframe {
          min-height: 500px; } }
  .carrousel_full_page.ltp_notSlide .ltp_arrowSlide {
    display: none !important; }
  .carrousel_full_page .ltp_slide {
    position: relative; }
    .carrousel_full_page .ltp_slide .ltp_slideContentText {
      position: absolute;
      z-index: 100;
      top: 50%;
      left: 20px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 65%; }
      @media all and (min-width: 768px) {
        .carrousel_full_page .ltp_slide .ltp_slideContentText {
          width: 40%;
          left: 70px;
          text-align: center; } }
      @media all and (min-width: 1200px) {
        .carrousel_full_page .ltp_slide .ltp_slideContentText {
          width: 50%;
          left: 80px; } }
      .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle {
        font-weight: 700;
        text-transform: uppercase;
        color: #FFFFFF;
        text-shadow: 1px 1px 2px #707070;
        font-size: 18px;
        padding: 5px 0; }
        @media all and (min-width: 768px) {
          .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle {
            font-size: 24px; } }
        @media all and (min-width: 1200px) {
          .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle {
            font-size: 40px; } }
        .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle sup {
          position: relative;
          top: -8px;
          left: 2px;
          font-weight: 100;
          font-size: 0.5em; }
          @media all and (min-width: 1200px) {
            .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle sup {
              top: -20px; } }
        .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle big {
          font-size: 24px;
          font-weight: 900; }
          @media all and (min-width: 768px) {
            .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle big {
              font-size: 36px; } }
          @media all and (min-width: 1200px) {
            .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle big {
              font-size: 60px; } }
        .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle small {
          font-size: 12px;
          font-weight: 300;
          padding: 0;
          margin: 0; }
          @media all and (min-width: 768px) {
            .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle small {
              font-size: 14px; } }
          @media all and (min-width: 1200px) {
            .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_slideTitle small {
              font-size: 16px; } }
      .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_ctaContent {
        margin: 10px 0; }
        @media all and (min-width: 768px) {
          .carrousel_full_page .ltp_slide .ltp_slideContentText .ltp_ctaContent {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center; } }
  .carrousel_full_page .ltp_arrowSlide {
    display: none; }

.texte_centre_non_illustre, .titre_texte_iframe, .titre_texte_video {
  padding: 20px 0; }
  .texte_centre_non_illustre .ltp_sectContainer, .titre_texte_iframe .ltp_sectContainer, .titre_texte_video .ltp_sectContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media all and (min-width: 1024px) {
      .texte_centre_non_illustre .ltp_sectContainer, .titre_texte_iframe .ltp_sectContainer, .titre_texte_video .ltp_sectContainer {
        width: 90%;
        max-width: 800px;
        margin: 0 auto; } }
  .texte_centre_non_illustre .ltp_wrapText, .titre_texte_iframe .ltp_wrapText, .titre_texte_video .ltp_wrapText {
    width: 100%;
    padding-bottom: 20px;
    text-align: center; }
    .texte_centre_non_illustre .ltp_wrapText .ltp_titleDot, .titre_texte_iframe .ltp_wrapText .ltp_titleDot, .titre_texte_video .ltp_wrapText .ltp_titleDot {
      text-align: center;
      padding-bottom: 0; }
    .texte_centre_non_illustre .ltp_wrapText .ltp_textContent, .titre_texte_iframe .ltp_wrapText .ltp_textContent, .titre_texte_video .ltp_wrapText .ltp_textContent {
      padding: 10px; }
    .texte_centre_non_illustre .ltp_wrapText .ltp_ctaContent, .titre_texte_iframe .ltp_wrapText .ltp_ctaContent, .titre_texte_video .ltp_wrapText .ltp_ctaContent {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }

@media all and (min-width: 1024px) {
  .titre_texte_iframe .ltp_sectContainer, .titre_texte_video .ltp_sectContainer {
    width: 90%;
    max-width: none;
    margin: 0 auto; } }

@media all and (min-width: 1024px) {
  .titre_texte_iframe .ltp_sectContainer .ltp_textContent, .titre_texte_video .ltp_sectContainer .ltp_textContent {
    width: 60%;
    margin: 0 auto; } }

.titre_texte_iframe .ltp_sectContainer iframe, .titre_texte_video .ltp_sectContainer iframe {
  width: 100%;
  padding: 0 20px;
  margin: 20px 0 40px;
  border: none; }

@media all and (min-width: 1024px) {
  .titre_texte_video .ltp_sectContainer {
    width: 90%;
    max-width: none;
    margin: 0 auto; } }

@media all and (min-width: 1024px) {
  .titre_texte_video .ltp_sectContainer .ltp_textContent {
    width: 60%;
    margin: 0 auto; } }

.titre_texte_video .ltp_sectContainer iframe {
  width: 100%;
  padding: 0 20px;
  margin: 20px 0 40px;
  border: none; }

.carrousel_donnees {
  padding: 40px 0; }
  .carrousel_donnees .ltp_sectContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; }
    .carrousel_donnees .ltp_sectContainer .ltp_titleDot {
      text-align: center; }
    .carrousel_donnees .ltp_sectContainer .ltp_slideContainer {
      position: relative;
      padding: 20px 0; }
    .carrousel_donnees .ltp_sectContainer .ltp_slideData {
      width: 80%;
      margin: 0 auto;
      padding-bottom: 10px; }
      @media all and (min-width: 1200px) {
        .carrousel_donnees .ltp_sectContainer .ltp_slideData {
          width: 100%; } }
      .carrousel_donnees .ltp_sectContainer .ltp_slideData .ltp_slideContent {
        background-color: #FFFFFF;
        -webkit-box-shadow: -2px 2px 8px 0px rgba(112, 112, 112, 0.3);
        box-shadow: -2px 2px 8px 0px rgba(112, 112, 112, 0.3);
        width: 213px;
        height: 213px;
        margin: 20px auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        .carrousel_donnees .ltp_sectContainer .ltp_slideData .ltp_slideContent .ltp_slideContentTitle h3 {
          font-family: "Damion";
          font-size: 26px; }
        .carrousel_donnees .ltp_sectContainer .ltp_slideData .ltp_slideContent .ltp_slideContentText {
          width: 80%; }
          .carrousel_donnees .ltp_sectContainer .ltp_slideData .ltp_slideContent .ltp_slideContentText p {
            font-weight: 300;
            padding: 5px; }
  .carrousel_donnees .ltp_arrowSlide.prev {
    left: 10px; }
  .carrousel_donnees .ltp_arrowSlide.next {
    right: 10px; }

.timeline_verticale .ltp_sectContainer {
  background-color: #000000;
  color: #FFFFFF; }
  @media all and (min-width: 1024px) {
    .timeline_verticale .ltp_sectContainer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .timeline_verticale .ltp_sectContainer .ltp_wrapIllu {
    width: 100%; }
    @media all and (min-width: 1024px) {
      .timeline_verticale .ltp_sectContainer .ltp_wrapIllu {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch; } }
    .timeline_verticale .ltp_sectContainer .ltp_wrapIllu img {
      width: 100%;
      height: 100%; }
  .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert {
    position: relative;
    padding-bottom: 60px;
    padding-top: 30px;
    width: 100%; }
    @media all and (min-width: 1200px) {
      .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert {
        max-width: 600px;
        margin: 0 auto; } }
    .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_titleDot {
      text-align: center; }
    .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer {
      width: 90%;
      margin: 0 auto;
      height: 100%;
      max-height: 350px;
      overflow-y: auto; }
      @media all and (min-width: 1024px) {
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer {
          max-height: 450px; } }
      .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent {
        padding: 10px 0;
        width: 50%; }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent:nth-of-type(odd) {
          margin-right: 0;
          margin-left: auto;
          border-left: 1px solid rgba(229, 229, 229, 0.5);
          padding-left: 25px; }
          .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent:nth-of-type(odd) .ltp_timelineContentDate {
            position: relative; }
            .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent:nth-of-type(odd) .ltp_timelineContentDate::before {
              content: '';
              width: 10px;
              height: 10px;
              border-radius: 50%;
              display: block;
              position: absolute;
              top: 50%;
              -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
              transform: translateY(-50%);
              left: -30px; }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent:nth-of-type(even) {
          margin-left: 0.9px;
          margin-right: auto;
          border-right: 1px solid rgba(229, 229, 229, 0.5);
          padding-right: 25px;
          text-align: right; }
          .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent:nth-of-type(even) .ltp_timelineContentDate {
            position: relative; }
            .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent:nth-of-type(even) .ltp_timelineContentDate::after {
              content: '';
              width: 10px;
              height: 10px;
              border-radius: 50%;
              display: block;
              position: absolute;
              top: 50%;
              -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
              transform: translateY(-50%);
              right: -30px; }
          .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent:nth-of-type(even) .ltp_timelineContentText p {
            margin-right: 0;
            margin-left: auto; }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate h2 {
          font-family: "Roboto", sans-serif;
          font-size: 40px; }
          @media all and (min-width: 1200px) {
            .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate h2 {
              font-size: 60px; } }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.pink::before, .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.pink::after {
          background-color: #ca268c; }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.purple::before, .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.purple::after {
          background-color: #6158be; }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.yellow::before, .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.yellow::after {
          background-color: #e2dd32; }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.green::before, .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.green::after {
          background-color: #92bc00; }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.blue::before, .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.blue::after {
          background-color: #008bc2; }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.orange::before, .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.orange::after {
          background-color: #ff6100; }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.red::before, .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate.red::after {
          background-color: #b41e2f; }
        .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentText p {
          font-weight: 100;
          font-size: 13px;
          max-width: 180px; }
          @media all and (min-width: 1200px) {
            .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentText p {
              font-size: 16px; } }
    .timeline_verticale .ltp_sectContainer .ltp_wrapTimelineVert .ltp_mouse {
      width: 20px;
      height: 35px;
      background: transparent url("../../../images/mouse.png") no-repeat center/contain;
      content: '';
      position: absolute;
      bottom: 15px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }

.timeline_horizontale {
  padding: 40px 0; }
  .timeline_horizontale .ltp_sectContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; }
  @media all and (min-width: 768px) {
    .timeline_horizontale .ltp_wrapTimelineHor {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 100%;
      margin: 0 auto; } }
  .timeline_horizontale .ltp_wrapTimelineHor .ltp_wrapText {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    .timeline_horizontale .ltp_wrapTimelineHor .ltp_wrapText .ltp_titleDot {
      margin-left: auto;
      margin-right: auto; }
    .timeline_horizontale .ltp_wrapTimelineHor .ltp_wrapText .ltp_ctaContent {
      margin: 40px auto 20px; }
  .timeline_horizontale .ltp_wrapTimelineHor .ltp_timelineCont {
    width: 100%;
    margin: 0 auto; }
  .timeline_horizontale .ltp_timelineContainer {
    padding: 40px 0;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto; }
    .timeline_horizontale .ltp_timelineContainer .ltp_timelineContent {
      width: 100%; }
      .timeline_horizontale .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentPicto {
        margin-left: 40px;
        height: 70px; }
        .timeline_horizontale .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentPicto img {
          height: 100%;
          width: auto; }
      .timeline_horizontale .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate {
        border-bottom: 1px solid #E5E5E5;
        margin-bottom: 15px;
        padding-bottom: 15px; }
        .timeline_horizontale .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate h2 {
          font-family: "Roboto", sans-serif;
          font-size: 20px;
          color: #008bc2;
          margin-left: 40px;
          position: relative;
          text-align: left; }
          @media all and (min-width: 1200px) {
            .timeline_horizontale .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate h2 {
              font-size: 28px; } }
          .timeline_horizontale .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentDate h2::after {
            content: '';
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: block;
            position: absolute;
            bottom: -20px;
            left: 5px;
            background-color: #008bc2; }
      .timeline_horizontale .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentText {
        width: 90%;
        max-width: 230px;
        margin-left: 40px; }
        .timeline_horizontale .ltp_timelineContainer .ltp_timelineContent .ltp_timelineContentText p {
          font-size: 14px;
          font-weight: 300; }

.titre_logos_image .ltp_sectContainer {
  width: 100%;
  max-width: 1300px;
  padding: 40px 0;
  margin: 0 auto; }
  .titre_logos_image .ltp_sectContainer .ltp_containerBg {
    width: 100%;
    position: relative;
    max-height: 90vh; }
    @media all and (min-width: 700px) {
      .titre_logos_image .ltp_sectContainer .ltp_containerBg {
        height: 500px; } }
    @media all and (min-width: 1024px) {
      .titre_logos_image .ltp_sectContainer .ltp_containerBg {
        height: 600px; } }
    @media all and (min-width: 1200px) {
      .titre_logos_image .ltp_sectContainer .ltp_containerBg {
        height: 700px; } }
    .titre_logos_image .ltp_sectContainer .ltp_containerBg .ltp_blocContent {
      background-color: #FFFFFF;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 100%;
      max-width: 700px;
      padding: 10px; }
      @media all and (min-width: 700px) {
        .titre_logos_image .ltp_sectContainer .ltp_containerBg .ltp_blocContent {
          width: 50%;
          position: absolute; } }
      .titre_logos_image .ltp_sectContainer .ltp_containerBg .ltp_blocContent[class*='top'] {
        top: 0; }
      .titre_logos_image .ltp_sectContainer .ltp_containerBg .ltp_blocContent[class*='bottom'] {
        bottom: 0; }
      .titre_logos_image .ltp_sectContainer .ltp_containerBg .ltp_blocContent[class*='right'] {
        right: 0; }
      .titre_logos_image .ltp_sectContainer .ltp_containerBg .ltp_blocContent[class*='left'] {
        left: 0; }
      .titre_logos_image .ltp_sectContainer .ltp_containerBg .ltp_blocContent .ltp_titleDot {
        width: 100%;
        text-align: center; }
      .titre_logos_image .ltp_sectContainer .ltp_containerBg .ltp_blocContent .ltp_imgContainer {
        width: 50%;
        padding: 20px;
        text-align: center; }
        @media all and (min-width: 1024px) {
          .titre_logos_image .ltp_sectContainer .ltp_containerBg .ltp_blocContent .ltp_imgContainer {
            width: 40%; } }
        .titre_logos_image .ltp_sectContainer .ltp_containerBg .ltp_blocContent .ltp_imgContainer img {
          width: auto;
          min-width: 120px;
          max-width: 180px; }

.illustration_legende .ltp_sectContainer {
  width: 100%;
  max-width: 1100px;
  padding: 40px 0;
  margin: 0 auto; }
  .illustration_legende .ltp_sectContainer .ltp_containerIL {
    width: 100%; }
    .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent {
      width: 100%; }
      .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapIllu {
        width: 100%; }
        .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapIllu img {
          width: 100%; }
      .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend {
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        @media all and (min-width: 436px) {
          .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start; } }
        .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend .ltp_itemContent {
          width: 100%;
          max-width: 265px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; }
          @media all and (min-width: 436px) {
            .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend .ltp_itemContent {
              width: 45%; } }
          @media all and (min-width: 1024px) {
            .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend .ltp_itemContent {
              width: 100%; } }
          .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend .ltp_itemContent .ltp_itemTitle {
            padding: 10px;
            width: 100%;
            text-align: center; }
            .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend .ltp_itemContent .ltp_itemTitle h3 {
              font-family: "Damion";
              text-transform: uppercase;
              font-size: 20px; }
              @media all and (min-width: 1024px) {
                .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend .ltp_itemContent .ltp_itemTitle h3 {
                  font-size: 28px; } }
          .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend .ltp_itemContent .ltp_itemText {
            padding: 10px;
            width: 100%;
            text-align: center;
            font-size: 12px; }
            @media all and (min-width: 1024px) {
              .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend .ltp_itemContent .ltp_itemText {
                font-size: 14px; } }
          .illustration_legende .ltp_sectContainer .ltp_containerIL .ltp_blocContent .ltp_wrapLegend .ltp_itemContent .ltp_ctaContent {
            padding: 10px 0;
            width: 100%;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center; }

.paragraphes_illustres_encart_promotionel {
  width: 100%;
  padding: 20px 0; }
  .paragraphes_illustres_encart_promotionel .ltp_sectContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media all and (min-width: 1024px) {
      .paragraphes_illustres_encart_promotionel .ltp_sectContainer {
        width: 90%;
        max-width: 1000px;
        margin: 20px auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }
    @media all and (min-width: 1024px) {
      .paragraphes_illustres_encart_promotionel .ltp_sectContainer.right {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap; } }
    @media all and (min-width: 1024px) {
      .paragraphes_illustres_encart_promotionel .ltp_sectContainer.left {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse nowrap;
        flex-flow: row-reverse nowrap; } }
    .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText {
      width: 100%;
      max-width: 500px;
      margin: 0 auto; }
      @media all and (min-width: 1024px) {
        .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText {
          max-width: none; } }
      .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_titleDot {
        text-align: center;
        max-width: 550px; }
        @media all and (min-width: 1024px) {
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_titleDot {
            padding-left: 0;
            max-width: none; } }
      .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer {
        text-align: center; }
        @media all and (min-width: 568px) {
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            padding: 0 0 10px;
            text-align: left; }
            .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer:first-of-type {
              margin-top: 20px; } }
        .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer.left {
          padding-left: 30px;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap; }
        .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer.right {
          padding-right: 30px;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
          -ms-flex-flow: row-reverse nowrap;
          flex-flow: row-reverse nowrap; }
        .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_illuContent {
          display: none; }
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_illuContent img {
            max-height: 50px;
            width: 100%; }
          @media all and (min-width: 568px) {
            .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_illuContent {
              display: block; } }
        .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_textContent {
          width: 100%; }
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_textContent .ltp_contentTitle {
            font-weight: 600;
            padding: 0 0 10px;
            font-size: 15px; }
            @media all and (min-width: 768px) {
              .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_textContent .ltp_contentTitle {
                font-size: 18px; } }
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_textContent .ltp_contentText {
            font-size: 14px; }
            @media all and (min-width: 768px) {
              .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_textContent .ltp_contentText {
                font-size: 16px; } }
      .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_ctaContent {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 30px 0 20px; }
    .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert {
      background-color: #6158be;
      margin: 20px auto;
      width: 90%;
      max-width: 320px; }
      @media all and (min-width: 568px) {
        .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          justify-content: flex-start;
          max-width: 650px; } }
      @media all and (min-width: 1024px) {
        .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          max-width: 320px; } }
      .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu {
        text-align: center; }
        .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu img {
          width: 100%;
          height: auto; }
        @media all and (min-width: 568px) {
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu {
            width: 100%;
            max-width: 250px;
            padding: 0; }
            .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu img {
              padding: 0; } }
        @media all and (min-width: 1024px) {
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu {
            width: 100%;
            max-width: none;
            padding: 0;
            max-height: 450px;
            overflow: hidden; }
            .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu img {
              padding: 0; } }
      .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent {
        padding: 15px; }
        @media all and (min-width: 568px) {
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent {
            width: 70%; } }
        @media all and (min-width: 1024px) {
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent {
            width: 100%;
            padding: 20px; } }
        .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertTitle {
          padding: 10px 0; }
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertTitle h3 {
            color: #FFFFFF;
            text-transform: uppercase;
            font-size: 18px; }
            @media all and (min-width: 768px) {
              .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertTitle h3 {
                font-size: 20px; } }
        .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertText {
          padding: 5px 0; }
          .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertText p {
            color: #FFFFFF;
            font-size: 14px;
            letter-spacing: 0.05em;
            font-weight: 300; }
            @media all and (min-width: 768px) {
              .paragraphes_illustres_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertText p {
                font-size: 16px; } }

.double_liste_icones {
  width: 100%;
  padding: 20px 0; }
  .double_liste_icones .ltp_sectContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media all and (min-width: 1024px) {
      .double_liste_icones .ltp_sectContainer {
        width: 90%;
        max-width: 1000px;
        margin: 20px auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }
    .double_liste_icones .ltp_sectContainer .ltp_wrapText {
      width: 100%;
      max-width: 500px;
      margin: 0 auto; }
      @media all and (min-width: 1024px) {
        .double_liste_icones .ltp_sectContainer .ltp_wrapText {
          max-width: none; } }
      .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_titleDot {
        text-align: center;
        max-width: 550px; }
        @media all and (min-width: 1024px) {
          .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_titleDot {
            padding-left: 0;
            max-width: none; } }
      .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 0 0 10px;
        text-align: left; }
        @media all and (min-width: 568px) {
          .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer:first-of-type {
            margin-top: 20px; } }
        .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer.left {
          padding-left: 30px;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap; }
        .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer.right {
          padding-right: 30px;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
          -ms-flex-flow: row-reverse nowrap;
          flex-flow: row-reverse nowrap; }
        .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_illuContent {
          width: 100px; }
          .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_illuContent img {
            height: 100%;
            width: 100%; }
          @media all and (min-width: 568px) {
            .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_illuContent {
              display: block; } }
        .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_textContent {
          width: 100%; }
          .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_textContent .ltp_contentTitle {
            font-weight: 600;
            padding: 0 0 10px;
            font-size: 15px; }
            @media all and (min-width: 768px) {
              .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_textContent .ltp_contentTitle {
                font-size: 18px; } }
          .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_textContent .ltp_contentText {
            font-size: 14px; }
            @media all and (min-width: 768px) {
              .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_parContainer .ltp_textContent .ltp_contentText {
                font-size: 16px; } }
      .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_ctaContent {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 30px 0 20px; }
      @media all and (min-width: 1024px) {
        .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_dblCol {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; } }
      .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_left {
        padding: 0 20px; }
      .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_right {
        border-top: 1px solid #f2f2f5;
        padding: 0 20px; }
        @media all and (min-width: 1024px) {
          .double_liste_icones .ltp_sectContainer .ltp_wrapText .ltp_right {
            border-top: none; } }

.testimoniaux_encart_promotionel {
  width: 100%;
  padding: 20px 0; }
  .testimoniaux_encart_promotionel .ltp_sectContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media all and (min-width: 1024px) {
      .testimoniaux_encart_promotionel .ltp_sectContainer {
        width: 90%;
        max-width: 1000px;
        margin: 20px auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }
    @media all and (min-width: 1024px) {
      .testimoniaux_encart_promotionel .ltp_sectContainer.right {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap; } }
    @media all and (min-width: 1024px) {
      .testimoniaux_encart_promotionel .ltp_sectContainer.left {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse nowrap;
        flex-flow: row-reverse nowrap; } }
    .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapText {
      width: 100%;
      max-width: 500px;
      margin: 0 auto; }
      .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_titleDot {
        text-align: center;
        max-width: 550px; }
        @media all and (min-width: 1024px) {
          .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_titleDot {
            padding-left: 0;
            max-width: none; } }
      .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_slideTest {
        background: url("../../images/quote_left.png") no-repeat left top, url("../../images/quote_right.png") no-repeat right bottom;
        padding: 50px 0; }
        .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_slideTest .ltp_testContainer .ltp_textContent {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          padding: 30px; }
          .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_slideTest .ltp_testContainer .ltp_textContent .ltp_contentText p {
            font-size: 13px;
            font-style: italic;
            line-height: 1.6; }
          .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_slideTest .ltp_testContainer .ltp_textContent .ltp_contentSign {
            font-size: 16px;
            font-weight: 600; }
            .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_slideTest .ltp_testContainer .ltp_textContent .ltp_contentSign::before, .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapText .ltp_slideTest .ltp_testContainer .ltp_textContent .ltp_contentSign::after {
              content: "--"; }
    .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert {
      background-color: #b41e2f;
      margin: 20px auto;
      width: 90%;
      max-width: 320px; }
      @media all and (min-width: 568px) {
        .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          justify-content: flex-start;
          max-width: 650px; } }
      @media all and (min-width: 1024px) {
        .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          max-width: 320px; } }
      .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu {
        text-align: center; }
        .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu img {
          width: 100%;
          height: auto; }
        @media all and (min-width: 568px) {
          .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu {
            width: 100%;
            max-width: 250px;
            padding: 0; }
            .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu img {
              padding: 0; } }
        @media all and (min-width: 1024px) {
          .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu {
            width: 100%;
            max-width: none;
            padding: 0;
            max-height: 450px;
            overflow: hidden; }
            .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertIllu img {
              padding: 0; } }
      .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent {
        padding: 15px; }
        @media all and (min-width: 568px) {
          .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent {
            width: 70%; } }
        @media all and (min-width: 1024px) {
          .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent {
            width: 100%;
            padding: 20px; } }
        .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertTitle {
          padding: 10px 0; }
          .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertTitle h3 {
            color: #FFFFFF;
            text-transform: uppercase;
            font-size: 18px; }
            @media all and (min-width: 768px) {
              .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertTitle h3 {
                font-size: 20px; } }
        .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertText {
          padding: 5px 0; }
          .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertText p {
            color: #FFFFFF;
            font-size: 14px;
            letter-spacing: 0.05em;
            font-weight: 300; }
            @media all and (min-width: 768px) {
              .testimoniaux_encart_promotionel .ltp_sectContainer .ltp_wrapInsert .ltp_insertContent .ltp_insertText p {
                font-size: 16px; } }

.dernieres_actu .ltp_sectContainer {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0; }

.dernieres_actu .ltp_listingActus {
  padding: 20px 0;
  position: relative;
  height: 100%; }
  .dernieres_actu .ltp_listingActus .ltp_slideArticles {
    width: 100%;
    max-width: 350px;
    margin: 0 auto; }
    @media all and (min-width: 568px) {
      .dernieres_actu .ltp_listingActus .ltp_slideArticles {
        max-width: 550px; } }
    @media all and (min-width: 768px) {
      .dernieres_actu .ltp_listingActus .ltp_slideArticles {
        max-width: 750px; } }
    @media all and (min-width: 1024px) {
      .dernieres_actu .ltp_listingActus .ltp_slideArticles {
        max-width: 1000px; } }
    .dernieres_actu .ltp_listingActus .ltp_slideArticles article {
      padding: 0 15px 20px; }
      .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent {
        color: #000000;
        text-decoration: none;
        background-color: #FFFFFF;
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-shadow: -2px 2px 8px 0px rgba(112, 112, 112, 0.3);
        box-shadow: -2px 2px 8px 0px rgba(112, 112, 112, 0.3); }
        .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent a {
          text-decoration: none; }
        .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleThumb {
          width: 100%;
          height: 200px; }
        .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleDate {
          font-size: 12px;
          color: #707070;
          padding: 10px 0; }
        .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleTitle {
          padding: 10px 0;
          font-weight: 700;
          min-height: 70px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
        .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleResume {
          height: 100px;
          font-weight: 300;
          font-size: 14px;
          position: relative; }
          .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleResume * {
            font-size: 14px; }
        .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleCta {
          width: 100%;
          padding: 0 0 15px; }
          .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleCta a {
            margin: 0 auto;
            border-width: 3px;
            border-style: solid;
            border-radius: 10px;
            width: 150px;
            font-size: 16px;
            text-align: center; }
            .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleCta a.blue {
              border-color: #008bc2;
              color: #008bc2; }
            .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleCta a.green {
              border-color: #92bc00;
              color: #92bc00; }
            .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleCta a.purple {
              border-color: #6158be;
              color: #6158be; }
            .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleCta a.red {
              border-color: #b41e2f;
              color: #b41e2f; }
            .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleCta a.pink {
              border-color: #ca268c;
              color: #ca268c; }
            .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleCta a.yellow {
              border-color: #e2dd32;
              color: #e2dd32; }
            .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleCta a.orange {
              border-color: #ff6100;
              color: #ff6100; }
            .dernieres_actu .ltp_listingActus .ltp_slideArticles article .ltp_articleContent .ltp_articleCta a.white {
              border-color: #ff6100;
              color: #ff6100; }

.ltp_contact {
  background-color: #f2f2f5;
  padding: 40px 0;
  margin: 40px 0 0; }
  .ltp_contact .ltp_containerSect {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto; }
    .ltp_contact .ltp_containerSect .ltp_titleDot {
      text-align: center; }
    .ltp_contact .ltp_containerSect .ltp_sectContact {
      padding: 30px 0 60px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-flow: column-reverse nowrap;
      flex-flow: column-reverse nowrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      @media all and (min-width: 1024px) {
        .ltp_contact .ltp_containerSect .ltp_sectContact {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start; } }
      .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv {
        background-color: #008bc2;
        color: #FFFFFF;
        width: 90%;
        margin: 30px auto;
        position: relative;
        overflow: hidden; }
        @media all and (min-width: 1024px) {
          .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv {
            max-width: 400px;
            margin: 0 20px; } }
        .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_containerBvIllu {
          position: absolute;
          width: 100%;
          opacity: 0; }
          @media all and (min-width: 1024px) {
            .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_containerBvIllu {
              display: block;
              position: relative;
              opacity: 1; } }
          .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_containerBvIllu img {
            width: 100%;
            height: auto; }
        .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBv {
          padding: 40px 30px;
          text-align: center;
          position: relative; }
          .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBv * {
            color: #FFFFFF; }
          @media all and (min-width: 1024px) {
            .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBv {
              height: calc(100% - 280px);
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -ms-flex-flow: column nowrap;
              flex-flow: column nowrap;
              -webkit-box-align: center;
              -ms-flex-align: center;
              align-items: center;
              -webkit-box-pack: center;
              -ms-flex-pack: center;
              justify-content: center; } }
        .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvContact h3, .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvLocal h3 {
          text-transform: uppercase;
          font-size: 20px;
          font-weight: 900; }
        .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvContact p, .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvLocal p {
          font-size: 14px;
          margin: 10px auto 20px;
          width: 80%;
          line-height: 1.4; }
        .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvContact a, .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvLocal a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          text-decoration: none;
          font-size: 19px;
          font-weight: 900; }
          .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvContact a i, .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvLocal a i {
            padding: 0 10px;
            font-weight: 400; }
        .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvLocal {
          margin: 30px 0 0; }
          .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvLocal address {
            font-style: normal;
            font-size: 14px;
            margin: 10px 0 20px;
            line-height: 1.4; }
          .ltp_contact .ltp_containerSect .ltp_sectContact .ltp_containerBv .ltp_contentBvLocal .ltp_horaires p span {
            display: block;
            text-transform: uppercase;
            font-weight: 500;
            padding: 5px 0; }

.ltp_certificates {
  background: rgba(242, 242, 245, 0.2) url("../../images/bg_helice_certificates.png") no-repeat center bottom/cover;
  padding: 40px 20px; }
  @media all and (min-width: 1024px) {
    .ltp_certificates .ltp_sectCertificates {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .ltp_certificates .ltp_sectCertificates .ltp_certificateContent {
    padding: 20px; }
    @media all and (min-width: 1024px) {
      .ltp_certificates .ltp_sectCertificates .ltp_certificateContent {
        width: 60%; } }
    .ltp_certificates .ltp_sectCertificates .ltp_certificateContent .ltp_titleDot {
      color: #6158be;
      padding-left: 0;
      font-size: 26px; }
      @media all and (min-width: 768px) {
        .ltp_certificates .ltp_sectCertificates .ltp_certificateContent .ltp_titleDot {
          font-size: 34px; } }
    .ltp_certificates .ltp_sectCertificates .ltp_certificateContent .ltp_contentText p {
      font-size: 13px;
      line-height: 1.6;
      font-weight: 300; }
  .ltp_certificates .ltp_sectCertificates .ltp_certificateIllus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media all and (min-width: 1024px) {
      .ltp_certificates .ltp_sectCertificates .ltp_certificateIllus {
        width: 30%; } }
    .ltp_certificates .ltp_sectCertificates .ltp_certificateIllus .ltp_certificateIllu {
      width: 150px;
      height: 150px;
      padding: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media all and (min-width: 1024px) {
        .ltp_certificates .ltp_sectCertificates .ltp_certificateIllus .ltp_certificateIllu {
          width: 170px;
          height: 170px; } }
      .ltp_certificates .ltp_sectCertificates .ltp_certificateIllus .ltp_certificateIllu img {
        height: 100%; }

.ltp_wrapError {
  width: 100%;
  max-width: 1300px;
  margin: 40px auto;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px; }
  @media all and (min-width: 768px) {
    .ltp_wrapError {
      height: 500px; } }
  @media all and (min-width: 1024px) {
    .ltp_wrapError {
      height: 700px;
      max-height: 90vh;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .ltp_wrapError .ltp_errorContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); }
    .ltp_wrapError .ltp_errorContent .ltp_titleDot.blue {
      background-color: transparent;
      color: #008bc2; }
    .ltp_wrapError .ltp_errorContent .ltp_titleDot.green {
      background-color: transparent;
      color: #92bc00; }
    .ltp_wrapError .ltp_errorContent .ltp_titleDot.purple {
      background-color: transparent;
      color: #6158be; }
    .ltp_wrapError .ltp_errorContent .ltp_titleDot.red {
      background-color: transparent;
      color: #b41e2f; }
    .ltp_wrapError .ltp_errorContent .ltp_titleDot.pink {
      background-color: transparent;
      color: #ca268c; }
    .ltp_wrapError .ltp_errorContent .ltp_titleDot.yellow {
      background-color: transparent;
      color: #e2dd32; }
    .ltp_wrapError .ltp_errorContent .ltp_titleDot.orange {
      background-color: transparent;
      color: #ff6100; }
    .ltp_wrapError .ltp_errorContent .ltp_wrapText {
      margin: 20px 0 40px; }

.ltp_wrapperSectionSec {
  margin: 0 auto; }
  .ltp_wrapperSectionSec .ltp_wrapTitlePage {
    text-align: center;
    margin-top: calc(29px + 60px); }
    @media all and (min-width: 1024px) {
      .ltp_wrapperSectionSec .ltp_wrapTitlePage {
        margin-top: 0; } }
    .ltp_wrapperSectionSec .ltp_wrapTitlePage h1 {
      background-color: rgba(255, 255, 255, 0.5);
      font-family: "Damion";
      font-size: 30px;
      padding: 30px 0; }
      @media all and (min-width: 1024px) {
        .ltp_wrapperSectionSec .ltp_wrapTitlePage h1 {
          font-size: 60px;
          padding: 50px 0; } }
  .ltp_wrapperSectionSec .ltp_wrapContent {
    width: 100%;
    max-width: 1300px;
    margin: 20px auto;
    padding: 20px;
    min-height: 50vh; }
    .ltp_wrapperSectionSec .ltp_wrapContent * {
      padding: 5px 0; }
    .ltp_wrapperSectionSec .ltp_wrapContent h1, .ltp_wrapperSectionSec .ltp_wrapContent h2, .ltp_wrapperSectionSec .ltp_wrapContent h3, .ltp_wrapperSectionSec .ltp_wrapContent h4, .ltp_wrapperSectionSec .ltp_wrapContent h5 {
      font-family: "Damion";
      padding: 20px 0 5px; }
    .ltp_wrapperSectionSec .ltp_wrapContent ul, .ltp_wrapperSectionSec .ltp_wrapContent ol {
      list-style: inside; }

.ltp_archive_prestations {
  padding: 20px;
  margin: 20px 0; }
  .ltp_archive_prestations .ltp_sectArchPrest {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0;
    padding: 20px 0; }
    @media all and (min-width: 768px) {
      .ltp_archive_prestations .ltp_sectArchPrest {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start; } }
    .ltp_archive_prestations .ltp_sectArchPrest article {
      width: 100%;
      max-width: 320px;
      padding: 0 0 20px; }
      @media all and (min-width: 768px) {
        .ltp_archive_prestations .ltp_sectArchPrest article {
          padding: 0 10px 20px; } }
      .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent {
        color: #000000;
        text-decoration: none;
        background-color: #FFFFFF;
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-shadow: -2px 2px 8px 0px rgba(112, 112, 112, 0.3);
        box-shadow: -2px 2px 8px 0px rgba(112, 112, 112, 0.3); }
        .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent a {
          text-decoration: none; }
        .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleThumb {
          width: 100%;
          height: 200px; }
        .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleDate {
          font-size: 12px;
          color: #707070;
          padding: 10px 0; }
        .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleTitle {
          padding: 10px 0;
          font-weight: 700;
          min-height: 70px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
        .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleResume {
          height: 120px;
          font-weight: 300;
          font-size: 14px;
          position: relative; }
          .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleResume * {
            font-size: 14px; }
        .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleCta {
          width: 100%;
          padding: 0 0 15px; }
          .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleCta a {
            margin: 0 auto;
            border-width: 3px;
            border-style: solid;
            border-radius: 10px;
            width: 150px;
            font-size: 16px;
            text-align: center; }
            .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleCta a.blue {
              border-color: #008bc2;
              color: #008bc2; }
            .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleCta a.green {
              border-color: #92bc00;
              color: #92bc00; }
            .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleCta a.purple {
              border-color: #6158be;
              color: #6158be; }
            .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleCta a.red {
              border-color: #b41e2f;
              color: #b41e2f; }
            .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleCta a.pink {
              border-color: #ca268c;
              color: #ca268c; }
            .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleCta a.yellow {
              border-color: #e2dd32;
              color: #e2dd32; }
            .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleCta a.orange {
              border-color: #ff6100;
              color: #ff6100; }
            .ltp_archive_prestations .ltp_sectArchPrest article .ltp_articleContent .ltp_articleCta a.white {
              border-color: #ff6100;
              color: #ff6100; }

.ltp_singlePrestationContainer {
  padding: 0 0 40px; }
  .ltp_singlePrestationContainer .ltp_prestationHead {
    width: 100%;
    height: 300px;
    position: relative; }
    @media all and (min-width: 768px) {
      .ltp_singlePrestationContainer .ltp_prestationHead {
        height: 400px; } }
    .ltp_singlePrestationContainer .ltp_prestationHead .ltp_prestationHeadBg {
      filter: blur(8px);
      -webkit-filter: blur(8px);
      width: 100%;
      height: 100%; }
    .ltp_singlePrestationContainer .ltp_prestationHead .ltp_prestationHeadTitle {
      background-color: black;
      /* Fallback color */
      background-color: rgba(0, 0, 0, 0.3);
      /* Black w/opacity/see-through */
      color: #FFFFFF;
      font-weight: bold;
      border: 3px solid #f1f1f1;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 2;
      width: 80%;
      padding: 20px;
      text-align: center;
      text-transform: uppercase;
      font-size: 40px;
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); }
      .ltp_singlePrestationContainer .ltp_prestationHead .ltp_prestationHeadTitle small {
        display: block;
        font-size: 20px; }
    .ltp_singlePrestationContainer .ltp_prestationHead .ltp_prestationHeadIllu {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      text-align: center; }
      .ltp_singlePrestationContainer .ltp_prestationHead .ltp_prestationHeadIllu img {
        height: 100%;
        width: auto; }
  .ltp_singlePrestationContainer .ltp_sectContainer {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto; }
    .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation {
      width: 100%;
      padding: 0 20px; }
      .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_singlePrestationInfos {
        padding: 10px; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_singlePrestationInfos p {
          font-size: 12px;
          text-align: right;
          color: #707070; }
          .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_singlePrestationInfos p span {
            color: #707070; }
      .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_titleDot {
        padding-bottom: 30px; }
        @media all and (min-width: 1024px) {
          .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_titleDot {
            padding-left: 0; } }
      .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent {
        line-height: 1.3em;
        font-weight: 300;
        /* Unconstrained main colum */ }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent::after {
          content: "";
          display: block;
          clear: both; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent p {
          padding: 10px 0; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent iframe {
          max-width: 100%; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent ul, .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent ol {
          list-style-position: inside;
          line-height: 1.1em;
          padding: 0 0 5px; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent h1, .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent h2, .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent h3, .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent h4, .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent h5 {
          padding: 8px 0; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent blockquote {
          padding: 5px 15px;
          margin: 40px 15px;
          border-left: 6px solid #008bc2;
          width: 90%;
          text-align: justify;
          background-color: rgba(0, 139, 194, 0.1);
          position: relative;
          font-weight: 400; }
          .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent blockquote::before {
            content: '\201C';
            font-size: 80px;
            font-family: serif;
            font-weight: bold;
            position: absolute;
            color: rgba(0, 139, 194, 0.2);
            top: -10px;
            left: 10px; }
          .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent blockquote p {
            position: relative;
            z-index: 2;
            padding: 10px; }
          .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent blockquote::after {
            content: '\201D';
            font-size: 80px;
            font-family: serif;
            font-weight: bold;
            position: absolute;
            color: rgba(0, 139, 194, 0.2);
            bottom: -40px;
            right: 10px; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent img {
          padding: 0 10px; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent > *:not(.alignwide):not(.alignfull) {
          margin-left: auto;
          margin-right: auto; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent .alignfull {
          display: block;
          text-align: center; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent .alignwide {
          max-width: 75%;
          margin-left: auto;
          margin-right: auto; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent .alignleft {
          display: block;
          float: left;
          margin-right: 2em; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent .alignright {
          display: block;
          float: right;
          margin-left: 2em; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent .alignleft,
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent .alignright {
          display: table; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent .alignleft figcaption,
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent .alignright figcaption {
          display: table-caption;
          caption-side: bottom; }
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent .alignright figcaption,
        .ltp_singlePrestationContainer .ltp_sectContainer .ltp_singlePrestation .ltp_prestationContent .alignleft figcaption {
          font-size: 75%;
          color: gray;
          margin-bottom: 1em; }

.ltp_singleArticleContainer {
  padding: 0 0 40px; }
  .ltp_singleArticleContainer .ltp_articleHead {
    width: 100%;
    height: 200px; }
    @media all and (min-width: 768px) {
      .ltp_singleArticleContainer .ltp_articleHead {
        height: 300px; } }
  .ltp_singleArticleContainer .ltp_sectContainer {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto; }
    .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle {
      width: 100%;
      padding: 0 20px; }
      .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_singleArticleInfos {
        padding: 10px; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_singleArticleInfos p {
          font-size: 12px;
          text-align: right;
          color: #707070; }
          .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_singleArticleInfos p span {
            color: #707070; }
      .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_titleDot {
        padding-bottom: 30px; }
        @media all and (min-width: 1024px) {
          .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_titleDot {
            padding-left: 0; } }
      .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent {
        line-height: 1.3em;
        font-weight: 300;
        /* Unconstrained main colum */
        /* We float the img inside the figure that has .alignleft applied.
           This makes the .alignleft element have the same main column width as text.
           What makes the float work is that the figure collapses into a zero height element */
        /* For captions, we display the figure itself as a table.
           This ensures the figcaption will retain the same width as the image,
           which is important when the caption is long. */ }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent::after {
          content: "";
          display: block;
          clear: both; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent p {
          padding: 10px 0; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent iframe {
          max-width: 100%; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent ul, .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent ol {
          list-style-position: inside;
          line-height: 1.1em;
          padding: 0 0 5px; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent h1, .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent h2, .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent h3, .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent h4, .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent h5 {
          padding: 8px 0; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent blockquote {
          padding: 5px 15px;
          margin: 40px 15px;
          border-left: 6px solid #008bc2;
          width: 90%;
          text-align: justify;
          background-color: rgba(0, 139, 194, 0.1);
          position: relative;
          font-weight: 400; }
          .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent blockquote::before {
            content: '\201C';
            font-size: 80px;
            font-family: serif;
            font-weight: bold;
            position: absolute;
            color: rgba(0, 139, 194, 0.2);
            top: -10px;
            left: 10px; }
          .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent blockquote p {
            position: relative;
            z-index: 2;
            padding: 10px; }
          .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent blockquote::after {
            content: '\201D';
            font-size: 80px;
            font-family: serif;
            font-weight: bold;
            position: absolute;
            color: rgba(0, 139, 194, 0.2);
            bottom: -40px;
            right: 10px; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent img {
          padding: 0 10px; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent > *:not(.alignwide):not(.alignfull) {
          margin-left: auto;
          margin-right: auto; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent .alignfull {
          display: block;
          text-align: center; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent .alignwide {
          max-width: 75%;
          /* Could be a pixel value too */
          margin-left: auto;
          margin-right: auto; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent .alignleft {
          display: block;
          float: left;
          margin-right: 2em; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent .alignright {
          display: block;
          float: right;
          margin-left: 2em; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent .alignleft,
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent .alignright {
          display: table; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent .alignleft figcaption,
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent .alignright figcaption {
          display: table-caption;
          caption-side: bottom; }
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent .alignright figcaption,
        .ltp_singleArticleContainer .ltp_sectContainer .ltp_singleArticle .ltp_articleContent .alignleft figcaption {
          font-size: 75%;
          color: gray;
          margin-bottom: 1em; }

.ltp_form {
  background-color: #FFFFFF;
  padding: 10px 20px;
  margin: 0 auto;
  width: 90%; }
  .ltp_form * {
    color: inherit; }
  @media all and (min-width: 768px) {
    .ltp_form {
      padding: 20px 30px; } }
  @media all and (min-width: 1024px) {
    .ltp_form {
      max-width: 650px;
      margin: 0 20px; } }
  .ltp_form .ltp_ctaContent {
    margin: 10px 0;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
    .ltp_form .ltp_ctaContent .ltp_cta {
      width: 100%;
      max-width: 300px;
      height: 55px;
      font-size: 16px; }
    .ltp_form .ltp_ctaContent aside {
      font-size: 11px;
      padding: 10px 0;
      text-align: right; }
  .ltp_form .ltp_formLine:last-of-type {
    margin: 30px 0 0; }
    @media all and (min-width: 1024px) {
      .ltp_form .ltp_formLine:last-of-type {
        margin: 40px 0 0; } }

@media all and (min-width: 768px) {
  .ltp_formLine {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; } }

.ltp_formLine .ltp_inputLab, .ltp_formLine .ltp_selectLab {
  width: 100%; }

.ltp_formLine.ltp_formLine2 > div {
  width: 100%; }
  @media all and (min-width: 768px) {
    .ltp_formLine.ltp_formLine2 > div {
      width: 49%; } }

.ltp_formLine.ltp_formLine2BL > div {
  width: 100%; }
  @media all and (min-width: 768px) {
    .ltp_formLine.ltp_formLine2BL > div:nth-of-type(1) {
      width: 59%; } }
  @media all and (min-width: 768px) {
    .ltp_formLine.ltp_formLine2BL > div:nth-of-type(2) {
      width: 39%; } }

.ltp_formLine.ltp_formLine2BR > div {
  width: 100%; }
  @media all and (min-width: 768px) {
    .ltp_formLine.ltp_formLine2BR > div:nth-of-type(1) {
      width: 29%; } }
  @media all and (min-width: 768px) {
    .ltp_formLine.ltp_formLine2BR > div:nth-of-type(2) {
      width: 69%; } }

.ltp_formLine.ltp_formLine3 > div {
  width: 100%; }
  @media all and (min-width: 768px) {
    .ltp_formLine.ltp_formLine3 > div {
      width: 32%; } }

.ltp_formLine.ltp_formLine4 > div {
  width: 100%; }
  @media all and (min-width: 768px) {
    .ltp_formLine.ltp_formLine4 > div {
      width: 24%; } }

.ltp_formLine.ltp_formLine5 > div {
  width: 100%; }
  @media all and (min-width: 768px) {
    .ltp_formLine.ltp_formLine5 > div {
      width: 19%; } }

.ltp_formLine.ltp_formLineTop {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.ltp_inputLab, .ltp_selectLab {
  background-color: #FFFFFF;
  position: relative;
  height: 50px;
  border: 1px solid #707070;
  width: 295px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  margin: 10px 0; }
  .ltp_inputLab input, .ltp_selectLab input {
    width: 100%;
    border: none;
    background: none; }
    .ltp_inputLab input + label, .ltp_selectLab input + label {
      position: absolute;
      font-size: 13px;
      text-transform: uppercase;
      font-weight: 600;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .ltp_inputLab input:focus, .ltp_selectLab input:focus, .ltp_inputLab input.active, .ltp_selectLab input.active {
      -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
      transform: translateY(10px); }
    .ltp_inputLab input:invalid, .ltp_selectLab input:invalid {
      border: none;
      outline: none; }
    .ltp_inputLab input:focus + label, .ltp_selectLab input:focus + label, .ltp_inputLab input + label.active, .ltp_selectLab input + label.active {
      color: #707070;
      font-size: 11px;
      -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
      transform: translateY(-10px);
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
  .ltp_inputLab.errors, .errors.ltp_selectLab {
    border: 2px solid #b41e2f; }
  .ltp_inputLab.ltp_disabled, .ltp_disabled.ltp_selectLab {
    background-color: #f2f2f5;
    position: relative; }
    .ltp_inputLab.ltp_disabled::after, .ltp_disabled.ltp_selectLab::after {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: ''; }

.ltp_selectLab select {
  width: 100%;
  border: none;
  background: transparent url("../../images/carret.png") no-repeat 99% center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -o-text-overflow: '';
  text-overflow: '';
  height: 100%; }
  .ltp_selectLab select::-ms-expand {
    display: none; }
  .ltp_selectLab select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000; }
  .ltp_selectLab select + label {
    position: absolute;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .ltp_selectLab select.active {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px); }
  .ltp_selectLab select:invalid {
    border: none;
    outline: none; }
  .ltp_selectLab select:focus + label, .ltp_selectLab select + label.active {
    color: #707070;
    font-size: 11px;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }

fieldset {
  border: none;
  font-weight: 700;
  font-size: 18px;
  margin: 30px 0 10px; }
  fieldset.error {
    color: #b41e2f; }

.ltp_checkBox, .ltp_checkBoxBig {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  .ltp_checkBox .ltp_checkBoxLab, .ltp_checkBoxBig .ltp_checkBoxLab {
    height: 55px;
    margin: 5px 10px 5px 0;
    width: calc(50% - 10px); }
    @media all and (min-width: 768px) {
      .ltp_checkBox .ltp_checkBoxLab, .ltp_checkBoxBig .ltp_checkBoxLab {
        width: 150px; } }
  .ltp_checkBox input, .ltp_checkBoxBig input {
    position: absolute;
    left: -99999px;
    width: 1px;
    height: 1px; }
    .ltp_checkBox input + label, .ltp_checkBoxBig input + label {
      background-color: #FFFFFF;
      color: #6158be;
      border: 1px solid #6158be;
      height: 100%;
      width: 100%;
      font-size: 14px;
      font-weight: 500;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      cursor: pointer; }
      .ltp_checkBox input + label:hover, .ltp_checkBoxBig input + label:hover {
        background-color: #6158be;
        color: #FFFFFF; }
      .ltp_checkBox input + label i, .ltp_checkBoxBig input + label i {
        font-size: 24px;
        display: none;
        padding: 0 10px 0 0; }
      .ltp_checkBox input + label span, .ltp_checkBoxBig input + label span {
        text-align: center; }
    .ltp_checkBox input:checked + label, .ltp_checkBoxBig input:checked + label {
      background-color: #6158be;
      color: #FFFFFF; }
      .ltp_checkBox input:checked + label span, .ltp_checkBoxBig input:checked + label span {
        text-align: left; }
      .ltp_checkBox input:checked + label i, .ltp_checkBoxBig input:checked + label i {
        display: block; }

@media all and (min-width: 768px) {
  .ltp_checkBoxBig .ltp_checkBoxLab {
    width: 200px; } }

.ltp_radioBox {
  margin: 40px 0; }
  @media all and (min-width: 768px) {
    .ltp_radioBox {
      margin: 0; } }
  .ltp_radioBox input {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px; }
    .ltp_radioBox input + label {
      display: block;
      position: relative;
      padding: 10px 10px 10px 35px;
      font-size: 12px;
      cursor: pointer; }
      .ltp_radioBox input + label > span {
        background-color: #FFFFFF;
        margin: 5px;
        border: 1px solid #6158be;
        width: 20px;
        height: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        left: 0;
        top: 6px; }
        .ltp_radioBox input + label > span > span {
          width: 14px;
          height: 14px;
          background-color: #6158be;
          opacity: 0; }
    .ltp_radioBox input:checked + label > span > span {
      opacity: 1; }
    .ltp_radioBox input.error + label {
      color: #b41e2f; }
