@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  /*
  font-size: 2em;
  margin: 0.67em 0;
  */
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

/*
 * Add the correct display in all browsers.
 */

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**-----------------------------------------------------
* UTILITIES
* utilities.scss
*
* @Params:
*   $colors
*   $radius
*   $spacings
*
* Functions:
*   color($color-name)          // param $colors        | apply color from array $colors
*   radiusizer($radius-value)   // param $radius        | apply radius from array $radius
*   ratio($width)               // value                | (ratio-4-3, ratio-16-9, ratio-9-16, ratio-8-14)    |  return value
*   shadowlize()                                        | (shadowlize-bottom, shadowlize)                    |  apply shaddow style
*   spacing($space)             // param $spacings      | used for paddings and margins main elements 
-----------------------------------------------------*/
/**-----------------------------------------------------
* COLORS
-----------------------------------------------------*/

.white {
  background-color: white;
}

.greyBgAside {
  background-color: #f4f5f6;
}

.personnalites {
  background-color: #D2BBE4;
}

.i-vert {
  background-color: #ACE6AD;
}

.i-rose {
  background-color: #E5B7B7;
}

.i-bleu {
  background-color: #A3D1D5;
}

.i-jaune {
  background-color: #ECD48C;
}

.txt-initial {
  color: #515C6F !important;
}

.txt-greyMedium {
  color: #d0d0d0 !important;
}

.txt-greyNav {
  color: #707070 !important;
}

.txt-bleu {
  color: #006BB5 !important;
}

.txt-important {
  font-size: 1.5rem;
  width: 100%;
}

.txt-small,
.text-small {
  font-size: 80%;
}

.txt-min {
  font-size: 14px;
}

/** borders */

.brd-bleu {
  border-color: #006BB5 !important;
}

/**-----------------------------------------------------
* BORDERS RADIUS
-----------------------------------------------------*/
/**
* LINE-HEIGHT
**/
.line-height-s {
  line-height: 1;
}

.line-height-m {
  line-height: 1.2;
}

/**-----------------------------------------------------
* RATIO
-----------------------------------------------------*/
/**-----------------------------------------------------
* SHADOW FUNCTIONS
-----------------------------------------------------*/
/**-----------------------------------------------------
* SPACINGS
-----------------------------------------------------*/

.plb-separator {
  border-bottom: 1px solid #d0d0d0;
}

/**-----------------------------------------------------
* ICONS
*-------------------------------------------------------
* icons.scss
* Easy readable "background-url" settings
* functions : 
*       return svg icons with color attribute as image url
* params : 
*       @fill : fill's color, 
*       @stroke : stroke's color
*       (@stroke-width) : stroke width
-----------------------------------------------------*/
/**-----------------------------------------------------
* Setters : bind each svg to his own function
-----------------------------------------------------*/
/**--------------------------------------------
* ICONS
---------------------------------------------*/

.icon-phone,
.icon-chevron-thin,
.icon-chevron-thin-lr,
.icon-chevron-thin-rl {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-phone {
  display: block;
}

.icon-phone {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 23 23%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22%23006BB5%22 stroke=%22stroke%22 d=%22M13.348,16.429l2.464-2.259a.754.754,0,0,1,.616-.205l.411.205,5.75,2.67c.411.205.411.411.411.821a5.206,5.206,0,0,1-1.643,3.7A5.883,5.883,0,0,1,17.045,23a12.513,12.513,0,0,1-5.75-1.437,26.921,26.921,0,0,1-5.75-4.107,34.978,34.978,0,0,1-3.08-4.518A28.386,28.386,0,0,1,.411,8.42,12.637,12.637,0,0,1,0,4.518a5.4,5.4,0,0,1,1.438-3.08A6.245,6.245,0,0,1,5.339,0a1.067,1.067,0,0,1,.821.411l3.08,5.75a.717.717,0,0,0,.205.411.754.754,0,0,1-.205.616L6.571,9.652a.917.917,0,0,0,0,1.027,19.611,19.611,0,0,0,2.464,3.286,20.735,20.735,0,0,0,3.286,2.67C12.732,16.839,13.143,16.839,13.348,16.429Z%22/%3E%3C/svg%3E");
  height: 1em;
  width: 1.05em;
}

.icon-chevron-thin,
.icon-chevron-thin-lr,
.icon-chevron-thin-rl {
  position: relative;
  display: inline-block;
  transition: all 0.2s;
}

.icon-chevron-thin {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 18.36 9.608%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22transparent%22 stroke=%22%23484849%22 stroke-width=%221px%22 d=%22M-6354.479,162.119l8.078,6.568,7.642-6.568%22 transform=%22translate(6354.795 -161.731)%22/%3E%3C/svg%3E");
  width: 0.8em;
  height: 0.45em;
  height: 0.5em;
}

.icon-chevron-thin-lr,
.icon-chevron-thin-rl {
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 7.652 12.739%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22transparent%22 stroke=%22%23484849%22 stroke-width=%221px%22 d=%22M0,6.569,6.167,0,12,6.569%22 transform=%22translate(6.911 0.365) rotate(90)%22/%3E%3C/svg%3E");
  width: 0.4em;
  height: 0.7em;
  margin-bottom: 0.12em;
}

.icon-chevron-thin-rl {
  transform: rotate(180deg);
}

/*
.icon-plb::before{
    content:"";
    position:absolute;
    top: calc(50% - 5px);
    right: -5px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left:5px solid color(greyStrong);
}
*/
/*------------------------------------------------------
* btn btn-bleu btn-bg-bleu btn-top
-----------------------------------------------------*/
.btn-bleu {
  color: #fff !important;
  background-color: #006BB5;
  border-color: #006BB5;
}

.btn-bleu:hover {
  color: #006BB5 !important;
  background-color: transparent;
  border-color: #006BB5;
}

.btn-bleu:not(:disabled):not(.disabled).active,
.btn-bleu:not(:disabled):not(.disabled):active {
  color: #006BB5 !important;
  background-color: transparent;
  border-color: #006BB5;
}

/*
.btn-bg-bleu:focus{
    color: color(bleu)!important;
    background-color: transparent;
    border-color: color(bleu);
}
*/

.btn-sky-blue {
  color: #fff !important;
  background-color: #91C0E1;
  border-color: #91C0E1;
}

.btn-sky-blue:hover {
  color: #91C0E1 !important;
  background-color: transparent;
  border-color: #91C0E1;
}

.btn-sky-blue:not(:disabled):not(.disabled).active,
.btn-sky-blue:not(:disabled):not(.disabled):active {
  color: #91C0E1 !important;
  background-color: transparent;
  border-color: #91C0E1;
}

#btn-top,
.btn-top {
  position: fixed;
  z-index: 49;
  opacity: 0.7;
  height: 50px;
  width: 50px;
  bottom: 90px;
  right: 30px;
  right: 25px;
  cursor: pointer;
}

#btn-top {
  background-image: url("../../../../images/icones/btn-top.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/**-----------------------------------------------------
* link with underline and underline animate
-----------------------------------------------------*/
.u-line,
.u-line-animate,
.u-line:hover,
.u-line-animate:hover {
  text-decoration: none;
}

.u-line:hover,
.u-line-animate:hover {
  border-bottom: 1px solid #484849;
}

/**------------------------------------------------------
* Misc
-------------------------------------------------------*/

.small-display {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.link-style-none,
.link-style-none:hover {
  text-decoration: none !important;
}

.font-style-underline {
  text-decoration: underline !important;
}

.list-style-none {
  list-style: none;
  padding: 0;
  margin: 0;
}

.titre_travaux_pratiques,
.corps_travaux_pratiques {
  font-style: italic;
}

.titre_travaux_pratiques {
  font-weight: bolder;
}

/**
* padded container
*/

/**
* LISTS
*/

/**
 * CUSTOM CHECKBOX
 */
/* Customize the label (the container) */
#wrapper {
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
#wrapper .form-check-label {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-left: -1.25rem;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#wrapper .form-check-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/*------------------------------------
* CK EDITOR UTILITIES
--------------------------------------*/

/* figure style */

/* table style */

/**-----------------------------------------------
* Load fonts
------------------------------------------------*/
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto Italic"), local("Roboto-Italic"), url(https://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu51xIIzI.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local("Roboto Light"), local("Roboto-Light"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBBc4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxK.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Roboto Medium"), local("Roboto-Medium"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBBc4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Roboto Bold"), local("Roboto-Bold"), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/**
* common style
*/
/**
* AXEPTIO
* Hide reject & continue btn
*/
/*
.ax-discardButton {
    display: none !important;
}
*/
/**
* RESET
*/
a {
  text-decoration: none;
  color: #484849;
  cursor: pointer;
}

a:hover {
  color: inherit;
}

button {
  cursor: pointer;
}

a:active,
a:focus,
button:active,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}

p a {
  text-decoration: underline;
  cursor: pointer;
  color: #006BB5;
}

/**
* End RESET
*/
/**-----------------------------------------------------
* INIT
-----------------------------------------------------*/
h1, h2, h3 {
  font-weight: bold;
}

body {
  color: #484849;
  font-family: "Roboto", sans-serif;
  line-height: 1.275em;
  font-size: 17px;
}

/**-----------------------------------------------------
* CUSTOM TITLE (home jumbotron)
-----------------------------------------------------*/
.title-big {
  font-weight: 700;
}

.info-big {
  font-weight: 900;
}

.title-medium {
  font-weight: 400;
}

/**-----------------------------------------------------
* MAINS CONTAINER INIT
-----------------------------------------------------*/
header {
  z-index: 999;
  background-color: #fff;
  width: 100vw;
  height: auto !important;
  position: fixed;
  box-shadow: 0 0.3rem 0.4rem -0.4rem rgba(0, 0, 0, 0.2);
  padding: 0 6.5%;
}

.hidden {
  display: none;
}

#top-header .navbar {
  padding-left: 0;
  padding-right: 0;
}

#top-header--lp .navbar {
  padding-left: 0;
  padding-right: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-top: 126.5px;
}

#introduce-text {
  overflow: hidden;
  transition: height 0.4s ease;
}
#introduce-text a {
  color: #006BB5;
  text-decoration: underline;
  transition: color 0.3s ease;
}
#introduce-text a:hover, #introduce-text a:active, #introduce-text a:focus {
  color: #484849;
}

section .title-section, footer .title-section {
  font-weight: 400;
}
section .title-section::after, footer .title-section::after {
  display: block;
  content: "";
  background-color: #006BB5;
  margin-top: 1rem;
  margin-bottom: 2rem;
  height: 0.2rem;
  width: 90px;
}

.section-white {
  background-color: #fff;
}

.section-grey {
  background-color: #f7f7f7;
}

.section-greystrong {
  background-color: #484849;
  color: #fff;
}

.section-bleu {
  background-color: #006BB5;
}

/*
.section-one-col {
    padding-top:spacing(initial);
    padding-bottom:spacing(initial);
}
    */

#top-formation .cards-list {
  overflow: hidden;
}

/**-----------------------------------------------------
* MENUS
-----------------------------------------------------*/
#top-header {
  height: 63px;
}

#top-header--lp .contact a,
#top-header .contact a {
  position: relative;
}
#top-header--lp .contact a:hover,
#top-header .contact a:hover {
  color: #006BB5;
  text-decoration: none;
}
#top-header--lp .contact .btn,
#top-header .contact .btn {
  border-radius: 9px;
  color: #006BB5;
  border-color: #006BB5;
}
#top-header--lp .contact .btn:hover,
#top-header .contact .btn:hover {
  color: #fff;
  border-color: #006BB5;
  background-color: #006BB5;
}


.navbar-left img {
  height: 47.617px;
  padding: 0.5rem;
}

/**-----------------------------------------------------
* SEARCHFORMS
-----------------------------------------------------*/

/**-----------------------------------------------------
* FILTERS - SEARCH PAGES
-----------------------------------------------------*/

div[id^=filterSortBy],
#filterSortBy {
  position: relative;
}
div[id^=filterSortBy] .form-date,
#filterSortBy .form-date {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 120 138%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22%23aaaaaa%22 stroke=%22%23aaaaaa%22 d=%22M120,40.947V30c0-6.627-5.373-12-12-12H97.415c0.005-0.056,0.017-0.11,0.017-0.167V1.981C97.432,0.887,96.545,0,95.45,0H79.599c-1.094,0-1.981,0.887-1.981,1.981v15.851c0,0.058,0.012,0.111,0.017,0.167H42.367c0.004-0.056,0.017-0.11,0.017-0.167V1.981C42.384,0.887,41.496,0,40.402,0H24.55c-1.094,0-1.981,0.887-1.981,1.981v15.852c0,0.057,0.012,0.111,0.017,0.167H12C5.373,18,0,23.372,0,30v10.947H120z%22/%3E%3Cpath fill=%22%23aaaaaa%22 stroke=%22%23aaaaaa%22 d=%22M0,43.925V126c0,6.627,5.373,12,12,12h96c6.627,0,12-5.373,12-12V43.925H0z M34.382,117.699H16.984v-17.398h17.398V117.699z M34.382,79.699H16.984V62.301h17.398V79.699z M69.257,117.698H51.858v-17.397h17.399V117.698z M69.257,79.698H51.858V62.301h17.399V79.698z M104.131,117.698H86.732v-17.397h17.398V117.698z M104.131,79.698H86.732V62.301h17.398V79.698z%22/%3E%3C/svg%3E");
}

/**-----------------------------------------------------
* SEARCH RESULTS LIST - SEARCH PAGES
-----------------------------------------------------*/

/**-----------------------------------------------------
* JUMBOTRON
-----------------------------------------------------*/
#jumbotron {
  display: block;
  position: relative;
  height: 40vh; /*
background-color: white;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;*/
}
#jumbotron .jumbotron-content {
  padding-top: 40px;
}
#jumbotron .title-big,
#jumbotron .title-medium {
  color: white;
}
#jumbotron .title-big {
  margin-bottom: 0px;
  font-size: 2.125rem;
  line-height: 2.5rem;
}
#jumbotron .title-medium {
  margin-bottom: 15px;
  font-size: 1.313rem;
  line-height: 1.5rem;
}

/**-----------------------------------------------------
* image jombotron
-----------------------------------------------------*/
/**-----------------------------------------------------
* FORMATIONS JUMBOTRON
-----------------------------------------------------*/
#jumbotron.header-formation {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../../images/Logo-plb/logo-background-alpha-20.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 33vw auto;
  height: auto;
  max-height: none;
}
#jumbotron.header-formation ul {
  position: absolute;
  top: -15px;
  display: flex;
  flex-direction: row;
}
#jumbotron.header-formation ul li {
  margin-right: 10px;
}

/**-----------------------------------------------------
* BREADCRUMB
-----------------------------------------------------*/
#breadcrumb {
  padding: 10px 0;
}
#breadcrumb .breadcrumb {
  border-radius: 0;
  background-color: #fff;
  margin-bottom: 0;
  padding: 0.75rem 0;
}
#breadcrumb .breadcrumb a {
  color: #484849;
  text-decoration: underline;
}

/**-----------------------------------------------------
* media media-body 
-----------------------------------------------------*/

/**-----------------------------------------------------
* INIT : 
*   Cards list 
*   top formation
*   domaines formation 
-----------------------------------------------------*/
.cards-list {
  flex-wrap: nowrap;
  /**-----------------------------------------------------
  * page search
  * page domaine formation
  -----------------------------------------------------*/
}
.cards-list .card, .cards-list .card a {
  text-decoration: none;
}
.cards-list .card {
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 0;
}
.cards-list .card .card-img-top {
  border-radius: 0;
}
.cards-list .card .card-body {
  position: relative;
}
.cards-list .card .label {
  font-weight: 700;
}
.cards-list .card ul {
  list-style: none;
}
.cards-list .card-full {
  padding-bottom: 4px;
  height: 100%;
  box-shadow: 0 0.3rem 0.4rem -0.4rem rgba(0, 0, 0, 0.2);
}
.cards-list .card-full .card-body {
  padding-top: 70px;
}
.cards-list .card-full .card-body ul {
  margin-top: 1.8rem;
}
.cards-list .card-full .card-title {
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 0;
  height: 90px;
  border-bottom: 1px solid #f7f7f7;
}
.cards-list .card-full .card-footer {
  background-color: transparent;
}
.cards-list .card-row {
  border: 1px #E5E5E5 solid;
}
.cards-list .card-row .greyBgAside {
  border-bottom: 1px #E5E5E5 solid;
}
.cards-list .card-row .card-stars {
  float: right;
}
.cards-list .card-row .certification {
  width: 210px;
  min-width: 210px;
  max-width: 210px;
}

/**-----------------------------------------------------
*  SIMPLE-CONTAINER
-----------------------------------------------------*/

.section-one-col .contact {
  margin-top: 10px;
}
.section-one-col .contact .icon-phone, .section-one-col .contact span {
  display: inline-block;
}
.section-one-col .contact .icon-phone {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 23 23%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22%23484849%22 stroke=%22stroke%22 d=%22M13.348,16.429l2.464-2.259a.754.754,0,0,1,.616-.205l.411.205,5.75,2.67c.411.205.411.411.411.821a5.206,5.206,0,0,1-1.643,3.7A5.883,5.883,0,0,1,17.045,23a12.513,12.513,0,0,1-5.75-1.437,26.921,26.921,0,0,1-5.75-4.107,34.978,34.978,0,0,1-3.08-4.518A28.386,28.386,0,0,1,.411,8.42,12.637,12.637,0,0,1,0,4.518a5.4,5.4,0,0,1,1.438-3.08A6.245,6.245,0,0,1,5.339,0a1.067,1.067,0,0,1,.821.411l3.08,5.75a.717.717,0,0,0,.205.411.754.754,0,0,1-.205.616L6.571,9.652a.917.917,0,0,0,0,1.027,19.611,19.611,0,0,0,2.464,3.286,20.735,20.735,0,0,0,3.286,2.67C12.732,16.839,13.143,16.839,13.348,16.429Z%22/%3E%3C/svg%3E");
  margin-right: 10px;
}
.section-one-col .contact span {
  font-weight: 700;
}

#formationCollapse--lp .box,
#formationCollapse .box {
  margin-bottom: 40px;
}
#formationCollapse--lp a,
#formationCollapse a {
  cursor: pointer;
  color: #006BB5;
  text-decoration: underline;
}
#formationCollapse--lp a:hover, #formationCollapse--lp a:active, #formationCollapse--lp a:focus,
#formationCollapse a:hover,
#formationCollapse a:active,
#formationCollapse a:focus {
  color: #484849;
}
#formationCollapse--lp div[id^=collapse] .titre,
#formationCollapse div[id^=collapse] .titre {
  font-size: 18px !important;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
#formationCollapse--lp div[id^=collapse] .box.box-border > .titre,
#formationCollapse div[id^=collapse] .box.box-border > .titre {
  margin-top: 0;
}
#formationCollapse--lp div[id^=collapse] .sous_titre,
#formationCollapse div[id^=collapse] .sous_titre {
  font-size: 16px;
  font-weight: 700;
}
#formationCollapse--lp div[id^=collapse] span.corps_contenu,
#formationCollapse--lp div[id^=collapse] span.corps_travaux_pratiques,
#formationCollapse div[id^=collapse] span.corps_contenu,
#formationCollapse div[id^=collapse] span.corps_travaux_pratiques {
  display: block;
}
#formationCollapse--lp div[id^=collapse] ul,
#formationCollapse div[id^=collapse] ul {
  padding-left: 20px;
  list-style-type: disc;
}
#formationCollapse--lp div#collapseProgramme,
#formationCollapse div#collapseProgramme {
  /*
  .box.box-border + .titre,
  .box.box-border + p {
      margin-top: 0 !important;
  }
  */
}
#formationCollapse--lp div#collapseProgramme .box.box-border .titre,
#formationCollapse--lp div#collapseProgramme .box.box-border .sous_titre,
#formationCollapse--lp div#collapseProgramme .box.box-border .titre_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .titre,
#formationCollapse div#collapseProgramme .box.box-border .sous_titre,
#formationCollapse div#collapseProgramme .box.box-border .titre_travaux_pratiques {
  font-weight: 700;
  margin: 0;
  padding: 0;
}
#formationCollapse--lp div#collapseProgramme .box.box-border .titre,
#formationCollapse div#collapseProgramme .box.box-border .titre {
  margin-top: 0;
}
#formationCollapse--lp div#collapseProgramme .box.box-border p,
#formationCollapse div#collapseProgramme .box.box-border p {
  margin-top: 0;
  margin-bottom: 0;
}
#formationCollapse--lp div#collapseProgramme .box.box-border .sous_titre,
#formationCollapse--lp div#collapseProgramme .box.box-border .titre_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .sous_titre,
#formationCollapse div#collapseProgramme .box.box-border .titre_travaux_pratiques {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + .titre,
#formationCollapse div#collapseProgramme .box.box-border .titre + .titre {
  margin-top: 0.5rem;
}
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + p,
#formationCollapse div#collapseProgramme .box.box-border .titre + p {
  margin-top: 0.5em;
}
#formationCollapse--lp div#collapseProgramme .box.box-border p + .titre,
#formationCollapse div#collapseProgramme .box.box-border p + .titre {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
#formationCollapse--lp div#collapseProgramme .box.box-border p + p,
#formationCollapse div#collapseProgramme .box.box-border p + p {
  margin-top: 0.5em;
}
#formationCollapse--lp div#collapseProgramme .box.box-border p span,
#formationCollapse div#collapseProgramme .box.box-border p span {
  display: block;
}
#formationCollapse--lp div#collapseProgramme .box.box-border > .corps_contenu,
#formationCollapse--lp div#collapseProgramme .box.box-border > .corps_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border > .corps_contenu,
#formationCollapse div#collapseProgramme .box.box-border > .corps_travaux_pratiques {
  margin-top: 0rem;
}
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_contenu,
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .corps_contenu,
#formationCollapse div#collapseProgramme .box.box-border .corps_travaux_pratiques {
  margin-top: -0.5rem;
}
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + p .corps_contenu,
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + p .corps_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .titre + p .corps_contenu,
#formationCollapse div#collapseProgramme .box.box-border .titre + p .corps_travaux_pratiques {
  margin-top: 0;
}
#formationCollapse--lp div#collapseProgramme .box.box-border span.sous_titre,
#formationCollapse--lp div#collapseProgramme .box.box-border span.corps_contenu,
#formationCollapse--lp div#collapseProgramme .box.box-border span.corps_travaux_pratiques,
#formationCollapse--lp div#collapseProgramme .box.box-border span.titre_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border span.sous_titre,
#formationCollapse div#collapseProgramme .box.box-border span.corps_contenu,
#formationCollapse div#collapseProgramme .box.box-border span.corps_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border span.titre_travaux_pratiques {
  display: block;
}
#formationCollapse--lp div#collapseProgramme .box.box-border p:not(.sous_titre, .titre_travaux_pratiques),
#formationCollapse--lp div#collapseProgramme .box.box-border span:not(.sous_titre, .titre_travaux_pratiques),
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_contenu,
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border p:not(.sous_titre, .titre_travaux_pratiques),
#formationCollapse div#collapseProgramme .box.box-border span:not(.sous_titre, .titre_travaux_pratiques),
#formationCollapse div#collapseProgramme .box.box-border .corps_contenu,
#formationCollapse div#collapseProgramme .box.box-border .corps_travaux_pratiques {
  margin-bottom: 0.5rem;
}
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_contenu + p .sous_titre,
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_contenu + p .titre_travaux_pratiques,
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_travaux_pratiques + p .sous_titre,
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_travaux_pratiques + p .titre_travaux_pratiques,
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_contenu + .sous_titre,
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_contenu + .titre_travaux_pratiques,
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_travaux_pratiques + .sous_titre,
#formationCollapse--lp div#collapseProgramme .box.box-border .corps_travaux_pratiques + .titre_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .corps_contenu + p .sous_titre,
#formationCollapse div#collapseProgramme .box.box-border .corps_contenu + p .titre_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .corps_travaux_pratiques + p .sous_titre,
#formationCollapse div#collapseProgramme .box.box-border .corps_travaux_pratiques + p .titre_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .corps_contenu + .sous_titre,
#formationCollapse div#collapseProgramme .box.box-border .corps_contenu + .titre_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .corps_travaux_pratiques + .sous_titre,
#formationCollapse div#collapseProgramme .box.box-border .corps_travaux_pratiques + .titre_travaux_pratiques {
  margin-top: 0.5em !important;
}
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + p .sous_titre,
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + p .titre_travaux_pratiques,
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + span.sous_titre,
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + span.titre_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .titre + p .sous_titre,
#formationCollapse div#collapseProgramme .box.box-border .titre + p .titre_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .titre + span.sous_titre,
#formationCollapse div#collapseProgramme .box.box-border .titre + span.titre_travaux_pratiques {
  margin-top: 0.5rem !important;
}
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + p .corps_travaux_pratiques,
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + p .corps_contenu,
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + span.corps_travaux_pratiques,
#formationCollapse--lp div#collapseProgramme .box.box-border .titre + span.corps_contenu,
#formationCollapse div#collapseProgramme .box.box-border .titre + p .corps_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .titre + p .corps_contenu,
#formationCollapse div#collapseProgramme .box.box-border .titre + span.corps_travaux_pratiques,
#formationCollapse div#collapseProgramme .box.box-border .titre + span.corps_contenu {
  margin-top: 0.5rem !important;
}
#formationCollapse--lp div#collapseProgramme .box.box-border > .titre,
#formationCollapse div#collapseProgramme .box.box-border > .titre {
  margin-top: 0;
  margin-bottom: 1rem;
  margin-bottom: 0.5rem;
}
#formationCollapse--lp div#collapseProgramme .box.box-border > .titre ~ .titre,
#formationCollapse div#collapseProgramme .box.box-border > .titre ~ .titre {
  margin-top: 1rem;
}

#formationNavContainer {
  z-index: 99;
  position: fixed;
  bottom: 0;
  bottom: -100%;
  transition: bottom ease 0.5s;
}
#formationNavContainer #formationNav {
  background-color: white;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.2);
  height: 60px;
}
#formationNavContainer #formationNav a {
  transition: color ease 0.2s;
}
#formationNavContainer #formationNav a:hover,
#formationNavContainer #formationNav a:active,
#formationNavContainer #formationNav a:focus {
  color: #006BB5;
}

.nav-link.formation-link {
  text-decoration: none;
  background-color: transparent;
}

.nav-link.formation-link:hover,
.nav-link.formation-link:focus,
.nav-link.formation-link:active {
  color: #ffffff !important;
  background-color: #006BB5;
  transition: all 0.2s;
}

#view--lp .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 10;
}
#view--lp .owl-prev,
#view--lp .owl-next {
  margin-left: 0;
  background-color: white;
  padding: 8px 15px;
}
.row-booking-session {
  background-color: white;
}

.row-booking-session:hover,
.row-booking-session:focus,
.row-booking-session:active {
  color: #ffffff !important;
  background-color: #006BB5;
  transition: all 0.2s;
}
.row-booking-session:hover div,
.row-booking-session:focus div,
.row-booking-session:active div {
  color: white !important;
}
.row-booking-session:hover .btn-bleu,
.row-booking-session:focus .btn-bleu,
.row-booking-session:active .btn-bleu {
  color: #006BB5 !important;
  background-color: white;
  border-color: white;
}

/**-----------------------------------------------------
* Pages:
*   categories
*   filieres
*   formations
-----------------------------------------------------*/

/**-----------------------------------------------------
* ACCORDIONS
*   category
*   full_list
*   descriptionFormation
-----------------------------------------------------*/
/*
#full-list.accordion-list,
#filiere-list.accordion-list,
#categories-list.accordion-list,
#results-list.accordion-list{
*/
.accordion-list .content {
  margin-top: 40px;
}
.accordion-list .cards-list {
  flex-wrap: wrap;
  margin-top: 40px;
}
.accordion-list .cards-list .card-full {
  min-height: 410px;
}
.accordion-list .cards-list .card-full .card-header {
  position: relative;
  text-align: center;
  background-image: url("../../../../images/Logo-plb/logo-background-alpha-20.png");
  background-size: 90%;
  background-position: center center;
  background-repeat: no-repeat;
  height: 170px;
  line-height: 140px;
  color: #fff;
  padding: 0.2rem 20px;
  border-radius: 0;
}
.accordion-list .cards-list .card-full .card-header .card-title {
  display: inline-block;
  vertical-align: middle;
  border: none;
  padding-top: 15px;
  padding-bottom: 10px;
  margin: auto;
  height: auto;
}
.accordion-list .cards-list .card-full .card-header .duration {
  display: block;
  width: 100%;
  text-align: right;
  line-height: 1;
}
.accordion-list .cards-list .card-full .card-body {
  padding: 1.25rem;
}
.accordion-list .cards-list .card-full .card-body .description {
  font-style: italic;
}
.accordion-list .cards-list .card-full .card-body ul {
  margin-top: 0;
}

#results-list.accordion-list .cards-list {
  margin-top: 0;
}
#results-list.accordion-list .flag-status {
  padding: 0.375rem 0.75rem;
  line-height: 1.1;
  color: white;
  font-size: 0.8rem;
  height: 38px;
}

/**-----------------------------------------------------
*  ITEM TOP-FORMATION
-----------------------------------------------------*/

/**-----------------------------------------------------
*  ITEM DOMAINES FORMATION
-----------------------------------------------------*/

/**-----------------------------------------------------
* ACTUALITE
-----------------------------------------------------*/
/**-----------------------------------------------------
* "NOUS CONNAITRE" 
-----------------------------------------------------*/

/**-----------------------------------------------------
* "NOUS CONNAITRE" SMARTPHONE TEMPLATE
-----------------------------------------------------*/

/**-----------------------------------------------------
* COMMON FOOTER : INFO 
-----------------------------------------------------*/
#info {
  padding-bottom: 0;
}
#info .cards-list {
  flex-wrap: wrap;
}
#info .cards-list .col-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}
#info .cards-list .card-info {
  width: 100%;
  max-width: 280px;
  margin: auto;
  background-color: transparent;
  border: none;
  box-shadow: none;
  flex-grow: 1;
}
#info .cards-list .card-info .card-title {
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
  white-space: nowrap;
}
#info .cards-list .card-info .card-img-top {
  position: relative;
  width: 150px;
  height: 150px;
  margin: auto;
}
#info .cards-list .card-info .card-img-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#info .cards-list .card-info .card-body {
  padding-bottom: 0;
}
#info .cards-list .card-info .card-footer {
  background-color: transparent;
  border: none;
}
#info .cards-list .card-info .link-info {
  font-weight: 700;
  color: #484849;
}
#info .cards-list .card-info .link-info .icon-chevron-thin-lr {
  margin-left: 10px;
}

/**-----------------------------------------------------
* SECTION FORMATION CONTENT
-----------------------------------------------------*/

/**-----------------------------------------------------
* Avis des participants
-----------------------------------------------------*/

.view-container .avis_contenu {
  color: #515C6F;
}
.view-container .views-accordion .accordion-header a {
  text-decoration: underline;
}
.view-container .views-accordion .accordion-header i {
  margin-right: 10px;
}

/**-----------------------------------------------------
* SEARCH PAGE
-----------------------------------------------------*/
#search-results a:hover {
  text-decoration: none;
}
#search-results .btn-page {
  justify-content: center;
  align-items: center;
  min-width: 30px;
  padding: 0 10px;
  height: 30px;
  margin-right: 10px;
  border: 1px solid #d0d0d0;
  cursor: pointer;
}
#search-results .btn-page .icon-chevron-thin-rl,
#search-results .btn-page .icon-chevron-thin-lr {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 7.652 12.739%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22transparent%22 stroke=%22%23484849%22 stroke-width=%222px%22 d=%22M0,6.569,6.167,0,12,6.569%22 transform=%22translate(6.911 0.365) rotate(90)%22/%3E%3C/svg%3E");
}
#search-results .btn-page-current {
  cursor: auto;
  color: white;
  background-color: #e0e0e0;
  background-color: #006BB5;
}
#search-results .pagination-info-desktop {
  line-height: 1rem;
}

/**-----------------------------------------------------
* PRESENTATION
-----------------------------------------------------*/

/**-----------------------------------------------------
* MAIN FORMS
-----------------------------------------------------*/
/**-----------------------------------------------------
* DATE PICKER TABLE
-----------------------------------------------------*/
/* NOT USE ANYMORE
.bootstrap-datetimepicker-widget {
    width:auto !important;
    margin:0!important;
    padding:0!important;

    table{
        margin:0;
        padding:0;

        & tbody > tr > td,
        & tbody > tr > th,
        & tfoot > tr > td,
        & tfoot > tr > th,
        & thead > tr > td,
        & thead > tr > th {
            border: none;
            border-radius: 0;
            margin:0;
            padding:.575rem .5rem;
        }
        & thead tr th {
            color:white;
            background-color: color(greyDark);
        }
        & thead tr:first-child th {
            cursor: pointer;
            background-color: color(bleu);  

            &:hover {
                background: color(bleu);
            }
        }
        & td {
            &.active,
            &.active:hover,
            &.day:hover{
                background: color(bleu);
                color:white;
            }
        }
    }
}
*/
/**-----------------------------------------------------
*  ASIDE | TRANSLATE-ASIDE
-----------------------------------------------------*/
.aside {
  width: 350px;
  padding-right: 15px;
  padding-left: 15px;
}
.aside .form-check-over input[type=radio] {
  margin-left: -0.8rem;
}
.aside .form-check-over:hover {
  background-color: #006bb5;
  color: white;
}
.aside .scrollable {
  height: auto;
  max-height: 140px;
}
.aside .scrollable-xl {
  height: calc(100vh - (4rem + 70px + 40px + 25.6px)); /* top-menu + button */
}
.aside .scrollable,
.aside .scrollable-xl {
  overflow-y: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #006bb5 #f0f0f0;
}
.aside .scrollable::-webkit-scrollbar,
.aside .scrollable-xl::-webkit-scrollbar {
  width: 6px;
}
.aside .scrollable::-webkit-scrollbar-track,
.aside .scrollable-xl::-webkit-scrollbar-track {
  border-radius: 3px;
}
.aside .scrollable::-webkit-scrollbar-thumb,
.aside .scrollable-xl::-webkit-scrollbar-thumb {
  border-radius: 3px;
}
.aside iframe {
  width: 100%;
  height: 160px;
}
.aside .aside-btn {
  text-align: left;
  width: 100%;
}
.aside .aside-content-sub {
  max-width: 320px;
}
.aside .card {
  border: none;
  border-radius: 0;
}
.aside .card .card-body {
  padding: 30px;
}
.aside .card .card-body p {
  margin-bottom: 0;
}
.aside .location, .aside .card-price {
  font-weight: 700;
  font-size: 30px;
}
.aside .location {
  position: relative;
}
.aside .location .intra-popover {
  z-index: 99;
  position: absolute;
  display: none;
  top: calc(100% + 10px);
  left: 0;
  width: 200px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.325;
  color: #484849;
  padding: 20px;
  border: 1px solid #006BB5;
  background-color: white;
}
.aside .location .intra-popover::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #006BB5;
}
.aside .location:hover .intra-popover {
  display: block;
}
.aside .aside-footer strong {
  display: block;
}
.aside .aside-footer .contact {
  margin-top: 10px;
}
.aside .aside-footer .contact .icon-phone, .aside .aside-footer .contact span {
  display: inline-block;
}
.aside .aside-footer .contact .icon-phone {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 23 23%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22%23484849%22 stroke=%22stroke%22 d=%22M13.348,16.429l2.464-2.259a.754.754,0,0,1,.616-.205l.411.205,5.75,2.67c.411.205.411.411.411.821a5.206,5.206,0,0,1-1.643,3.7A5.883,5.883,0,0,1,17.045,23a12.513,12.513,0,0,1-5.75-1.437,26.921,26.921,0,0,1-5.75-4.107,34.978,34.978,0,0,1-3.08-4.518A28.386,28.386,0,0,1,.411,8.42,12.637,12.637,0,0,1,0,4.518a5.4,5.4,0,0,1,1.438-3.08A6.245,6.245,0,0,1,5.339,0a1.067,1.067,0,0,1,.821.411l3.08,5.75a.717.717,0,0,0,.205.411.754.754,0,0,1-.205.616L6.571,9.652a.917.917,0,0,0,0,1.027,19.611,19.611,0,0,0,2.464,3.286,20.735,20.735,0,0,0,3.286,2.67C12.732,16.839,13.143,16.839,13.348,16.429Z%22/%3E%3C/svg%3E");
  margin-right: 10px;
}
.aside .aside-footer .contact span {
  font-weight: 700;
}
.aside .aside-footer .aside-footer-link {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 10px 0;
}
.aside .aside-footer .aside-footer-link li {
  text-align: center;
  font-size: 12px;
  width: 80px;
}
.aside .aside-footer .aside-footer-link li a:hover {
  text-decoration: none;
}
.aside .aside-footer .aside-footer-link li i {
  display: block;
  margin: auto;
  margin-bottom: 10px;
}
.aside .aside-footer .aside-footer-link li .share,
.aside .aside-footer .aside-footer-link li .print,
.aside .aside-footer .aside-footer-link li .pdf-file {
  height: 24px;
  width: 32px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.aside .aside-footer .aside-footer-link li .share {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%22-6 -0.082 40 32%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22%23484849%22 d=%22M21.998,19.898c-1.501,0-2.817,0.511-3.83,1.351l-6.425-4.047c0.083-0.414,0.126-0.844,0.126-1.285c0-0.408-0.037-0.805-0.108-1.188l6.398-4.14c1.011,0.839,2.328,1.35,3.838,1.35c3.496,0,5.901-2.672,5.901-5.982C27.899,2.647,25.472,0,21.998,0c-3.477,0-5.969,2.736-5.969,5.969c0,0.412,0.041,0.816,0.118,1.207l-6.392,4.092c-0.997-0.82-2.295-1.309-3.787-1.309C2.492,9.959,0,12.695,0,15.929c0,3.234,2.471,5.969,5.968,5.969c1.475,0,2.754-0.477,3.742-1.275l6.428,4.092c-0.071,0.375-0.109,0.761-0.109,1.153c0,3.233,2.471,5.97,5.969,5.97c3.496,0,5.901-2.672,5.901-5.982C27.899,22.545,25.472,19.898,21.998,19.898z%22/%3E%3C/svg%3E");
}
.aside .aside-footer .aside-footer-link li .print {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%22-3.833 -0.118 40 32%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22%23484849%22 d=%22M27.895,11.834c0,0,0-6.832,0-7.219c0-0.388,0.129-0.407-0.249-0.785c-0.379-0.378-3.176-3.175-3.507-3.507C23.806-0.009,23.685,0,23.299,0C22.912,0,5.963,0,5.52,0C5.077,0,4.034,0.942,4.034,1.893s0.009,9.978,0.009,9.978C2.381,11.871,0,13.366,0,15.803c0,2.438,0,6.646,0,6.979s0.554,0.915,0.914,0.915c0.36,0,3.13,0,3.13,0s0,5.122,0,6.118c0,0.997,0.795,1.949,1.948,1.949s18.6,0,19.983,0c1.385,0,1.917-0.886,1.917-1.916c0-1.029,0-6.069,0-6.069s2.848,0,3.179,0c0.332,0,0.803-0.554,0.803-0.803s0-4.991,0-7.162S30.257,11.834,27.895,11.834z M23.87,27.711H7.975v-5.815H23.87V27.711zM23.87,13.865H7.975V4.006h11.964c0,0,0,2.77,0,3.102c0,0.333,0.554,0.887,1.052,0.887s2.879,0,2.879,0V13.865z M26.908,18.235c-0.842,0-1.438-0.658-1.438-1.437s0.602-1.438,1.438-1.438c0.838,0,1.422,0.638,1.422,1.435C28.33,17.592,27.75,18.235,26.908,18.235z%22/%3E%3C/svg%3E");
}
.aside .aside-footer .aside-footer-link li .pdf-file {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 384 512%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22%23484849%22 stroke=%22transparent%22 d=%22M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z%22%3E%3C/path%3E%3C/svg%3E");
}
.aside .aside-content .title {
  font-size: 20px;
}
.aside .aside-content .contact {
  margin-top: 10px;
}
.aside .aside-content .contact .icon-phone, .aside .aside-content .contact span {
  display: inline-block;
}
.aside .aside-content .contact .icon-phone {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 23 23%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22%23484849%22 stroke=%22stroke%22 d=%22M13.348,16.429l2.464-2.259a.754.754,0,0,1,.616-.205l.411.205,5.75,2.67c.411.205.411.411.411.821a5.206,5.206,0,0,1-1.643,3.7A5.883,5.883,0,0,1,17.045,23a12.513,12.513,0,0,1-5.75-1.437,26.921,26.921,0,0,1-5.75-4.107,34.978,34.978,0,0,1-3.08-4.518A28.386,28.386,0,0,1,.411,8.42,12.637,12.637,0,0,1,0,4.518a5.4,5.4,0,0,1,1.438-3.08A6.245,6.245,0,0,1,5.339,0a1.067,1.067,0,0,1,.821.411l3.08,5.75a.717.717,0,0,0,.205.411.754.754,0,0,1-.205.616L6.571,9.652a.917.917,0,0,0,0,1.027,19.611,19.611,0,0,0,2.464,3.286,20.735,20.735,0,0,0,3.286,2.67C12.732,16.839,13.143,16.839,13.348,16.429Z%22/%3E%3C/svg%3E");
  margin-right: 10px;
}
.aside .aside-content .contact span {
  font-weight: 700;
}

#formation-date-mobile {
  position: fixed;
  width: 100vw;
  left: 0;
  top: 70px;
  max-height: none;
  height: calc(100vh - 70px);
  background-color: white;
  padding: 15px 30px;
  z-index: 99;
}
#formation-date-mobile .scrollable {
  max-height: calc(100vh - (1.5rem + 30px + 38px + 38px + 38px + 70px));
  height: auto;
}

.aside-top-right {
  color: #5B5B5B;
}
.aside-top-right .aside-content {
  position: relative;
  border: 1px solid #E1E4E7;
  padding: 20px;
  box-shadow: 0.3rem 0.3rem 0.4rem -0.4rem rgba(0, 0, 0, 0.2);
  background-color: white;
}
.aside-top-right .aside-footer .contact {
  padding-bottom: 40px;
  border-bottom: 1px solid #d0d0d0;
}

section.height-zero {
  height: 0;
}

.aside-top-right {
  z-index: 9;
  display: inline-block;
  margin-top: 15px;
  margin-bottom: auto;
}

/**-----------------------------------------------------
* COMMON FOOTER : CHIFFRE
-----------------------------------------------------*/
.section-chiffre {
  text-align: center;
  color: #fff;
  flex-flow: row wrap;
  padding-top: 60px;
  padding-bottom: 0;
}
.section-chiffre .row > div {
  margin-bottom: 60px;
}
.section-chiffre p {
  color: #fff;
}
.section-chiffre .text-timer {
  display: block;
  max-width: 220px;
  margin: auto;
  margin-top: 10px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.225em;
}

/**-----------------------------------------------------
* COMMON FOOTER :  REFERENCES
-----------------------------------------------------*/
.section-reference {
  padding-top: 0;
}
.section-reference .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.section-reference .owl-carousel .owl-stage .img-center {
  width: auto;
  height: auto;
  max-height: 60px;
  max-width: 100%;
  margin: auto;
}

/**-----------------------------------------------------
* FOOTER
-----------------------------------------------------*/
footer {
  position: relative;
}
footer .title-section {
  font-weight: 700;
}
footer .title-section::after {
  background-color: #fff;
  margin-bottom: 50px;
}

#footer .col-brand {
  margin-top: 2em;
}
#footer .col-brand,
#footer .col-left,
#footer .col-centred {
  margin-bottom: 2em;
}
#footer address, #footer ul > li {
  font-weight: 300;
}
#footer address {
  margin-bottom: 20px;
}
#footer address strong, #footer address span {
  display: block;
  padding-bottom: 0.1em;
}
#footer ul > li {
  padding-bottom: 0.3em;
}
#footer a {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}
#footer .u-line {
  border-bottom: 1px solid #fff;
}

/**-----------------------------------------------------
* RECRUTEMENT
-----------------------------------------------------*/

/**-----------------------------------------------------
* STAR RATER
-----------------------------------------------------*/
.card-full .card-footer {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  border: none;
}
.card-full .card-price,
.card-full .card-location {
  font-weight: 700;
}

.card-stars {
  position: relative;
  display: flex;
  flex-flow: row wrap;
}
.card-stars .star-sprite {
  background: url("../../../../images/cst-star-grey-30.png") repeat-x;
  background-size: contain;
  overflow: hidden;
  text-indent: -999em;
}
.card-stars .star-sprite-rating {
  background: url("../../../../images/cst-star-yellow-30.png") repeat-x;
  background-size: contain;
  background-position: 0 100%;
  float: left;
  display: block;
}
.card-stars span {
  margin-left: 10px;
}

.star-rating-lp {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  height: 24px;
  width: 120px;
}

.stars-outer-lp {
  background: url("../../../../images/star-web.png") repeat-x;
  background-size: contain;
  height: 24px;
  width: 120px;
  overflow: hidden;
  text-indent: -999em;
}

.stars-inner-lp {
  background-color: #ffeb69;
  display: block;
  height: 100%;
  width: 0%;
  -webkit-mask-image: url("../../../../images/star-web.png");
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: contain;
  mask-image: url("../../../../images/star-web.png");
  mask-repeat: repeat-x;
  mask-size: contain;
}

/**-----------------------------------------------------
* POP UP - VIEWS
-----------------------------------------------------*/

/**-----------------------------------------------------
* OWL CAROUSEL
-----------------------------------------------------*/

/*
#full-list,
#filiere-list,
#categories-list {
    width:auto;
    padding: 0 spacing(formation);
    margin: 0 spacing(formation-neg);
}
*/

/**-----------------------------------------------------
* Page Search : filters elements/items;
-----------------------------------------------------*/

#filters .card-body {
  max-height: none;
}

/**-----------------------------------------------------
* Pages elements
-----------------------------------------------------*/
.pagination {
  margin-top: -8px;
  margin-bottom: 20px;
}
.pagination .owl-prev,
.pagination .owl-next {
  background-color: transparent;
  border: 1px solid #d0d0d0;
  margin-left: 15px;
  padding: 8px 20px;
}
.pagination .owl-prev .icon-chevron-thin-lr,
.pagination .owl-prev .icon-chevron-thin-rl,
.pagination .owl-next .icon-chevron-thin-lr,
.pagination .owl-next .icon-chevron-thin-rl {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 7.652 12.739%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22transparent%22 stroke=%22%23484849%22 stroke-width=%222px%22 d=%22M0,6.569,6.167,0,12,6.569%22 transform=%22translate(6.911 0.365) rotate(90)%22/%3E%3C/svg%3E");
}
.pagination .owl-prev.disabled .icon-chevron-thin-lr,
.pagination .owl-prev.disabled .icon-chevron-thin-rl,
.pagination .owl-next.disabled .icon-chevron-thin-lr,
.pagination .owl-next.disabled .icon-chevron-thin-rl {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 7.652 12.739%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22transparent%22 stroke=%22%23d0d0d0%22 stroke-width=%222px%22 d=%22M0,6.569,6.167,0,12,6.569%22 transform=%22translate(6.911 0.365) rotate(90)%22/%3E%3C/svg%3E");
}

.box {
  padding: 10px 20px;
  margin-bottom: 60px;
}

.box-border {
  padding: 10px 40px;
  border: 1px solid #E1E4E7;
}

.box-border {
  border: 1px solid #E5E5E5;
}

.paragraphe-title {
  margin-bottom: 1em;
  color: #111111;
}

.puce-title {
  position: relative;
  padding-left: 40px;
  line-height: 32px;
}
.puce-title i {
  position: absolute;
  left: 0;
  margin-right: -40px;
}
.puce-title .icon-chevron-thin-lr {
  line-height: 32px;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 7.652 12.739%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22transparent%22 stroke=%22white%22 stroke-width=%222px%22 d=%22M0,6.569,6.167,0,12,6.569%22 transform=%22translate(6.911 0.365) rotate(90)%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.puce-title::before {
  content: "";
  position: absolute;
  left: 0;
  line-height: 32px;
  width: 32px;
  height: 32px;
  top: 0;
  border-radius: 50%;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
}

.puce-chevron::before {
  background-size: 30%;
  background-color: #006BB5;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 7.652 12.739%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22transparent%22 stroke=%22white%22 stroke-width=%222px%22 d=%22M0,6.569,6.167,0,12,6.569%22 transform=%22translate(6.911 0.365) rotate(90)%22/%3E%3C/svg%3E");
}

/*----------------------------------------
* Alert icon + PDF icon
----------------------------------------*/

/**------------------------------------------------------
* Table-grid itemQtes
-------------------------------------------------------*/

/**------------------------------------------------------
* BACKOFFICE RULES
-------------------------------------------------------*/

.btn-programme-collapse .icon-chevron-thin {
  vertical-align: initial;
  margin-bottom: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio=%22xMidYMid meet%22 viewBox=%220 0 7.652 12.739%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath fill=%22transparent%22 stroke=%22%23111111%22 stroke-width=%222px%22 d=%22M0,6.569,6.167,0,12,6.569%22 transform=%22translate(6.911 0.365) rotate(90)%22/%3E%3C/svg%3E");
  margin-right: 1rem;
  width: 1.2rem;
  height: 0.75rem;
}

.btn-programme-collapse:not(.collapsed) .icon-chevron-thin {
  transform: rotate(90deg);
}

/**-----------------------------------------------------
* TOP MENUS  
-----------------------------------------------------**/
#top-header--lp,
#top-header {
  padding-bottom: 0;
}
#top-header--lp .contact .btn,
#top-header .contact .btn {
  margin-right: 2rem;
}
#top-header--lp .contact a .icon-phone,
#top-header .contact a .icon-phone {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}
#top-header--lp .contact a span,
#top-header .contact a span {
  display: inline-block;
  vertical-align: middle;
}

/**-------------------------------------------------------------------------------------------
* NAVIGATION MENU
* AND NAVIGATION SMARTPHONE (no #top-header but apply same style)  
-------------------------------------------------------------------------------------------**/

/**-------------------------------------------------------------------------------------------
* NAVIGATION MENU SMARTPHONE 
-------------------------------------------------------------------------------------------**/

/**-------------------------------------------------------------------------------------------
* NAVIGATION MENU DESKTOP 
-------------------------------------------------------------------------------------------**/

/**-------------------------------------------------------------------------------------------
* NAVIGATION MENU BURGER 
-------------------------------------------------------------------------------------------**/

/**-------------------------------------------------------------------------------------------
* JUMBOTRON
-------------------------------------------------------------------------------------------*/
/**-------------------------------------------------------------------------------------------
* HEADER / WRAPPER / SECTION / CONTAINER
* width, height, margin, padding
-------------------------------------------------------------------------------------------*/

/**-------------------------------------------------------------------------------------------
* SEARCHFORM NAVIGATION MENU
-------------------------------------------------------------------------------------------*/

/**-------------------------------------------------------------------------------------------
* SEARCHFORM JUMBOTRON CAROUSEL
-------------------------------------------------------------------------------------------*/

/**-----------------------------------------------------
* BREADCRUMB
-----------------------------------------------------*/
#breadcrumb nav {
  padding-right: 320px;
}

/**-------------------------------------------------------------------------------------------
* ACTUALITE
-------------------------------------------------------------------------------------------*/
/*
#actualite {
    article {
        margin-bottom: spacing(initial);

        .img-actu {
            display: inline-block;
            width: 38%;
            margin-right: spacing(initial);
        }
    }
    .btn-container {
        width:38%;
    }
}
*/
/**-------------------------------------------------------------------------------------------
* Tab "NOUS CONNAITRE"
-------------------------------------------------------------------------------------------*/

/**-------------------------------------------------------------------------------------------
* ASIDE
-------------------------------------------------------------------------------------------*/
.aside {
  margin-top: 3rem;
}

/**-------------------------------------------------------------------------------------------
* FOOTER
-------------------------------------------------------------------------------------------*/
#footer {
  padding-top: 40px;
  padding-bottom: 40px;
}
#footer .box-brand {
  margin-bottom: 0;
}

/**-------------------------------------------------------------------------------------------
* FONT SIZES
-------------------------------------------------------------------------------------------*/
.aside,
.box,
.text-content,
.duration,
.label,
.card-price,
.card-stars,
.card-location,
.card-body,
.link-info,
.card-text {
  font-size: 17px;
}

.paragraphe-title--lp-indicator {
  line-height: 1.2;
}

.text-timer {
  font-size: 18px;
}

.accordion-list .card-title {
  font-size: 20px;
}

#breadcrumb .breadcrumb {
  font-size: 15px;
}

.card-title {
  font-size: 18px;
}

.card-full .card-title {
  font-size: 19px;
}


p.paragraphe-title,
.paragraphe-title {
  font-size: 24px;
}

.paragraphe-title--lp-indicator {
  font-size: 14px;
  line-height: 1.2;
}

section .title-section {
  font-size: 35px;
}

#info .card-title {
  font-size: 26px;
}

/**
 * LP
 */
.excellence-head--lp {
  height: 45px;
}

.excellence-content--lp {
  height: 60px;
}

#formationCollapse--lp .media img {
  height: 90px;
}

.info-big {
  font-size: 40px;
}

/**-------------------------------------------------------------------------------------------
* ORDERING SECTIONS
-------------------------------------------------------------------------------------------*/
#menu-translate-container {
  order: 1;
}

#jumbotron {
  order: 2;
}

#breadcrumb {
  order: 3;
}


#top-formation,
#formation-content,
#financement,
#inscription,
#search-results,
#presentation {
  order: 4;
}

#nous-connaitre {
  order: 6;
}

.section-info {
  order: 11;
}

.section-chiffre {
  order: 12;
}

.section-reference {
  order: 13;
}

footer {
  order: 14;
}

/**-------------------------------------------------------------------------------------------
* 
*                                         RESPONSIVE
*
* -------------------------------------------------------------------------------------------
* @media (min-width: 1450px)        DESKTOP
* @media (max-width: 1449.98px)     DESKTOP
* @media (max-width: 1365.98px)     TABLETTE BIG LANDSCAPE
* @media (min-width: 1200px)        BOOTSTRAP COL-XL
* @media (max-width: 1023.98px)     TABLETTE BIG
* @media (max-width: 991.98px)      TABLETTE SMALL LANDSCAPE
* @media (max-width: 767.98px)      TABLETTE SMALL
* @media (max-width: 575.98px)      SMARTPHONE BIG / SMARTPHONE SMALL LANDSCAPE
* @media (max-width: 374.98px)      SMARTPHONE SMALL
-------------------------------------------------------------------------------------------*/
/**-------------------------------------------------------------------------------------------
*
*
* DESKTOP
*
*
-------------------------------------------------------------------------------------------*/
/*
@media (min-width: 768px) and (max-width: 1674px) {
    .block-order-1 {order:2}
    .block-order-2 {order:1}
}
@media (min-width: 576px) and (max-width: 655px) {
    .block-order-1 {order:2}
    .block-order-2 {order:1}
}
@media (max-width: 550px) {
    .block-order-1 {order:2}
    .block-order-2 {order:1}
}
*/
@media (min-width: 768px) and (max-width: 1309px) {
  .block-order-1 {
    order: 2;
  }
  .block-order-2 {
    order: 1;
  }
}
@media (min-width: 576px) and (max-width: 637px) {
  .block-order-1 {
    order: 2;
  }
  .block-order-2 {
    order: 1;
  }
}
@media (max-width: 534px) {
  .block-order-1 {
    order: 2;
  }
  .block-order-2 {
    order: 1;
  }
}
@media (min-width: 1450px) {
  /**
   * BOOTSRAP GRID
   */
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mr-xxl-auto {
    margin-right: auto !important;
  }
  .duree {
    width: auto;
    max-width: 85px !important;
  }
  .session {
    width: auto;
    max-width: 330px !important;
  }
  .niveau {
    width: auto;
    max-width: 130px !important;
  }
  .reference {
    width: auto;
    max-width: 130px !important;
  }
  #top-header--lp,
  #top-header,
  #header .contact .btn,
  .nav-link {
    font-size: 21px;
    line-height: 1.325em;
  }
  /*
      .aside {
          .box-calendrier {
              .icon-calendar {
                  height:56px;
                  width:39px;
              }
          }
          .card-title.recruitment {
              font-weight: normal;
              font-size:21px;
              line-height:1.325;
          }
      }
      //page title
      .card-section-title{
          .card-title{
              font-size:28px;
          }
      }
      // formation card title
      .accordion-list{
          .card-title{
              font-size:20px;
          }
      }
      .breadcrumb{
          font-size: 18px;
      }
      .card-price,
      .card-stars,
      #plbTabWide .card,
      .card-location {
          font-size:17px;
      }
      .card-title,
      .tab-title,
      #plbTab-smartphone button,
      #plbTab .nav a {
          font-size:25px;
          line-height: 1.2;
      }
      .card-title.recruitment {
          font-size:21px;
          line-height:1.325;
      }
      .paragraphe p,
      .paragraphe ul,
      .paragraphe ol {
          font-size:17px
      }

      #category .accordion-list .card-heading .card-header .btn-link,
      #category .accordion-list .content .cat-title a, 
      #descriptionFormation .accordion-list .content .cat-title a,
      p.paragraphe-title,
      .paragraphe-title{
          font-size:24px;
      }
      .paragraphe-sub-title{
          font-size:18px;
      }
      section {
          .title-section {
              font-size:45px;
          }
      }
      .section-two-col .title-section {
          font-size:35px;
      }

      #info .card-title {
          font-size:26px;
      }
  */
  .info-big,
  .title-big {
    font-size: 54px;
    line-height: 1em;
  }
  .title-medium {
    font-size: 36px;
    line-height: 1em;
  }
  footer .title-section {
    font-size: 25px;
  }
  .section-chiffre .text-timer {
    line-height: 1.2em;
  }
  /*
  #categories-list.accordion-list,
  #filiere-list.accordion-list,
  #full-list.accordion-list {
  */
  .accordion-list .cards-list .card-full .card-header {
    height: 200px;
    line-height: 170px;
  }
}
/**-------------------------------------------------------------------------------------------
*
*
* DESKTOP
*
*
-------------------------------------------------------------------------------------------*/
@media (max-width: 1449.98px) {
  #wrapper {
    padding-top: 119px;
  }
  #top-header--lp,
  #top-header,
  #header .contact .btn,
  .nav-link {
    font-size: 16px;
  }
  /*
  .aside {
      .box-calendrier {
          .icon-calendar {
              height:40px;
              width:28px;
          }
      }
      .card-title.recruitment {
          font-weight:normal;
          font-size:21px;
          line-height:1.325;
      }
  }
  // page title
  .card-section-title .card-title{
      font-size:25px;
  }
  // formation card title
  .accordion-list .card-title{
      font-size:18px;
  }
  .breadcrumb{
      font-size: 15px;
  }
  .card-price,
  .card-stars,
  #plbTabWide .card,
  .card-location {
      font-size:17px;
  }
  #plbTabWide .card,
  .card-title,
  .tab-title,
  #plbTab-smartphone button,
  #plbTab .nav a {
      font-size:19px;
  }

  .paragraphe p,
  .paragraphe ul,
  .paragraphe ol {
      font-size:17px
  }

  #category .accordion-list .card-heading .card-header .btn-link,
  #category .accordion-list .content .cat-title a, 
  #descriptionFormation .accordion-list .content .cat-title a,
  p.paragraphe-title,
  .paragraphe-title{
      font-size:24px;
  }
  .paragraphe-sub-title{
      font-size:18px;
  }

  section {
      .title-section {
          font-size:35px;
      }
  }
  .section-two-col .title-section {
      font-size:27px;
  }
  #info .card-title {
      font-size:26px;
  }
  */
  .title-big {
    font-size: 51px;
    line-height: 1em;
  }
  .title-medium {
    font-size: 40px;
    line-height: 1em;
  }
  
  .navbar-left img {
    height: 40px;
  }
  footer .title-section {
    font-size: 19px;
  }
  .cards-list .card-full .card-body {
    padding-top: 40px;
    padding-bottom: 0.25rem;
  }
  .cards-list .card-full .card-body ul {
    margin-top: 1.2rem;
  }
  .cards-list .card-full .card-title {
    height: 70px;
    padding-bottom: 20px;
  }
  .cards-list .card-info .card-title {
    margin-bottom: 1.5rem;
  }
  .cards-list .card-info .card-img-top {
    width: 120px;
    height: 120px;
  }
  .cards-list .card-info .card-img-top img {
    width: 76px;
    height: auto;
  }
  /*
  #category,
  #descriptionFormation{
      .accordion-list{
          .cards-list{
              .card-full{
                  .card-header{
                      //height:170px;
                      //line-height:140px;
                  }
              }
          }
      }
  }
  */
}
/**-------------------------------------------------------------------------------------------
*
*
* TABLETTE BIG LANDSCAPE
*
*
-------------------------------------------------------------------------------------------*/
@media (max-width: 1365.98px) {
  #wrapper {
    padding-top: 116px;
  }
  /**
  * General fonts sizes
  */
  #top-header--lp,
  #top-header,
  #header .contact .btn,
  .nav-link {
    font-size: 14px;
  }
  /*
      .aside {
          .box-calendrier {
              .card-body { // keep size like preview @media
                  font-size:16px;
                  line-height: 1.275em;
              }
              .card-title.recruitment {
                  font-size:21px;
                  line-height:1.325;
              }
          }
      }
      // page title
      .card-section-title .card-title{
          font-size:22px
      }
      // formation card title
      .accordion-list .card-title{
          font-size:16px
      }
      .breadcrumb{
          font-size: 12px;
      }
      .card-price,
      .card-stars,
      #plbTabWide .card,
      .card-location {
          font-size:15px;
      }
      .card-title,
      .tab-title,
      #plbTab-smartphone button,
      #plbTab .nav a {
          font-size:18px;
      }

      .paragraphe p,
      .paragraphe ul,
      .paragraphe ol {
          font-size:14px
      }
      #category .accordion-list .card-heading .card-header .btn-link,
      #category .accordion-list .content .cat-title a, 
      #descriptionFormation .accordion-list .content .cat-title a,
      p.paragraphe-title,
      .paragraphe-title{
          font-size:20px;
      }
      .paragraphe-sub-title{
          font-size:15px;
      }

      section {
          .title-section {
              font-size:32px;
          }
      }
      .section-two-col .title-section {
          font-size:25px;
      }

      #info .card-title {
          font-size:24px;
      }
  */
  .title-big {
    font-size: 46px;
    line-height: 1em;
  }
  .title-medium {
    font-size: 36px;
    line-height: 1em;
  }
  /**
  * End General fonts sizes
  */
  
  .navbar-left img {
    height: 37px;
  }
  /**
  * Tab "NOUS CONNAITRE"
  */
  /**
  * End Tab "NOUS CONNAITRE"
  */
  /**
  * Section footer
  */
  footer {
    font-size: 15px;
  }
  footer .title-section {
    font-size: 17px;
  }
  #footer {
    /*
    .img-certification{ 
        img { height:80px;}
    }
    */
  }
  /**
  * End Section footer
  */
}
@media (max-width: 1199.98px) {
  /**------------------------------------------------------
  * Table-grid itemQtes
  -------------------------------------------------------*/
}
/**-------------------------------------------------------------------------------------------
*
*
* MENU COMPACT MANAGEMENT
*
*
-------------------------------------------------------------------------------------------*/
/**-------------------------------------------------------------------------------------------
*
*
* TABLETTE BIG
*
*
-------------------------------------------------------------------------------------------*/
@media (max-width: 1023.98px) {
  .title-big {
    font-size: 34px;
    line-height: 1em;
  }
  .title-medium {
    font-size: 21px;
    line-height: 1em;
  }
  /* ARTICLE media-body */
  /* End ARTICLE media-body */
  /* Category + descriptionFormation*/
  /*
  #category,
  #descriptionFormation{
  }
  .accordion-list{
      .cards-list{
          .card-full{
              .card-header{
                  //height:150px;
                  //line-height:120px;
              }
          }
      }
  }
  */
  /* FOOTER */
}
/**-------------------------------------------------------------------------------------------
*
*
* TABLETTE SMALL LANDSCAPE
*
*
-------------------------------------------------------------------------------------------*/
@media (min-width: 992px) {
  #top-header--lp,
  #top-header {
    display: block;
  }
  /**
  * General fonts sizes
  */
  .aside,
  .box,
  .text-content,
  .duration,
  .label,
  .card-price,
  .card-stars,
  .card-location,
  .card-body,
  .link-info,
  .card-text,
  .btn-xs {
    font-size: 17px;
  }
  .text-timer {
    font-size: 18px;
  }
  .accordion-list .card-title {
    font-size: 20px;
  }
  #breadcrumb nav {
    padding-right: 320px;
  }
  #breadcrumb .breadcrumb {
    font-size: 15px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-full .card-title {
    font-size: 19px;
  }
  
  p.paragraphe-title,
  .paragraphe-title,
  .paragraphe-title--lp-indicator {
    font-size: 24px;
  }
  section .title-section {
    font-size: 35px;
  }
  #info .card-title {
    font-size: 26px;
  }
  .section-one-col {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .info-big {
    font-size: 60px;
  }
  .info-x-big {
    font-size: 86px;
  }
}
/**-------------------------------------------------------------------------------------------
*
*
* TABLETTE SMALL LANDSCAPE
*
*
-------------------------------------------------------------------------------------------*/
@media (max-width: 991.98px) {
  header {
    height: auto;
    min-height: 66px;
    max-height: 100vh;
  }
  #top-header {
    display: none;
  }
  #wrapper {
    padding-top: 66px;
  }
  
  .navbar-left img {
    height: 48px;
  }
  #top-header--lp .navbar-left img {
    height: 36px;
  }
  .small-display {
    display: block;
  }
  .desktop-display {
    display: none !important;
  }
  #jumbotron .title-big {
    margin-bottom: 0px;
  }
  #jumbotron .title-medium {
    margin-bottom: 30px;
  }
  #filters {
    z-index: 99;
    position: fixed;
    top: -100vh;
    left: 0;
    overflow-y: scroll;
    height: calc(100vh - 66px);
    transition: ease 0.2s all;
  }
  #filters .accordion-list {
    padding: 0 !important;
    margin: 0 !important;
  }
  #filters.show {
    top: 66px;
  }
  /*
  #input-cpf-distance {order: 2;}    
  #select-tri {order: 1;}
  */
  #footer .col-left address {
    line-height: 1.475em;
  }
  #footer .box {
    margin-bottom: 40px;
  }
  #footer .col-left {
    order: 1;
  }
  #footer .col-centred {
    order: 2;
  }
  /**
  * SearchForm
  */
  /* Demo 2 */
  /**
  * End SearchForm
  */
  /**
  * List accordion
  */
  /*
  #filiere-list.accordion-list, 
  #full-list.accordion-list {
  */
  /*
  #categories-list.accordion-list, 
  #filiere-list.accordion-list, 
  #full-list.accordion-list, 
  #results-list.accordion-list {
  */
  .accordion-list .cards-list .card-full {
    min-height: 0;
  }
  .accordion-list .cards-list .card-row .certification {
    width: auto;
    max-width: 100% !important;
  }
  .section-one-col {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/**-------------------------------------------------------------------------------------------
*
*
* NOT MOBILE
*
*
-------------------------------------------------------------------------------------------*/
@media (min-width: 768px) {
  #formationCollapse div[id^=heading] a {
    cursor: default;
  }
  aside {
    margin-top: 0;
  }
  .no-border-md {
    border: none !important;
  }
  .border-md-right {
    border-right: 1px solid #dee2e6 !important;
  }
  #formationCollapse--lp .media img,
  .excellence-content--lp {
    height: 115px;
  }
  .row-booking-session {
    border-top: 1px solid grey;
  }
  .row-booking-session:last-child {
    border-bottom: 1px solid grey;
  }
  .section-one-col {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .info-x-big {
    font-size: 60px;
  }
}
/**-------------------------------------------------------------------------------------------
*
*
* TABLETTE SMALL
*
*
-------------------------------------------------------------------------------------------*/
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
  .aside,
  .box,
  .text-content,
  .duration,
  .label,
  .card-price,
  .card-stars,
  .card-location,
  .card-body,
  .link-info,
  .card-text,
  .btn-xs {
    font-size: 14px;
  }
  .accordion-list .card-title {
    font-size: 14px;
  }
  header {
    padding: 0 20px;
  }
  #jumbotron {
    background-position: center left;
  }
  #jumbotron .title-big {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 0.85714286;
    margin-bottom: 0px;
  }
  #jumbotron .title-medium {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.26315789;
    margin-bottom: 0;
  }
  #introduce-filet {
    position: absolute;
    bottom: 38px;
  }
  .accordion-list .cards-list .card-full .card-header {
    height: auto;
    line-height: calc(100% + 40px);
  }
  #footer .col-left {
    order: 1;
  }
  #footer .col-centred {
    order: 2;
  }
  #jumbotron {
    order: 1;
  }
  #financement,
  #inscription,
  #presentation,
  #formation-content {
    order: 3;
  }
  #jumbotron.header-formation {
    background-position: center center;
    background-size: 90%;
  }
  .aside {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  #menu-translate-container {
    order: 2;
    height: auto;
    padding-top: 40px;
    padding-bottom: 0;
    background-color: white;
  }
  #menu-translate-container .aside {
    margin-top: 0;
  }
  #menu-translate-container .aside-content {
    padding: 0;
    border: none;
    box-shadow: none;
  }
  #formation #breadcrumb {
    display: none;
  }
  .section-one-col {
    padding-top: 0;
    padding-bottom: 0;
  }
  .row-booking-session {
    border-top: 1px solid grey;
  }
  .info-big {
    font-size: 40px;
  }
}
/**-------------------------------------------------------------------------------------------
*
*
* SMARTPHONE BIG
* SMARTPHONE LANDSCAPE
*
-------------------------------------------------------------------------------------------*/
@media (max-width: 575.98px) {
  #top-header--lp,
  #top-header,
  .nav-link,
  .text-content,
  .duration,
  .label,
  .card-stars,
  .card-body,
  .link-info,
  .card-text,
  .text-timer {
    font-size: 18px;
    line-height: 1.425em;
  }
  .breadcrumb {
    font-size: 15px;
  }
  .card-price,
  .card-stars,
  .card-location {
    font-size: 21px;
    font-size: 16px;
  }
  .card-title {
    font-size: 25px;
  }
  
  p.paragraphe-title,
  .paragraphe-title {
    font-size: 24px;
  }
  .paragraphe-title--lp-indicator {
    font-size: 14px;
  }
  section .title-section {
    font-size: 28px;
  }
  #info .card-title {
    font-size: 35px;
  }
  .title-big {
    font-size: 30px;
    line-height: 1em;
  }
  .title-medium {
    font-size: 20px;
    line-height: 1em;
  }
  a, button, .nav-link,
  a:focus, button:focus, .nav-link:focus {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
  }
  .site-container {
    min-width: 100%;
    padding: 0 35px;
  }
  header {
    padding: 0 10px;
  }
  .cards-list .card-full .card-body {
    padding-top: 50px;
    padding-bottom: 0.25rem;
  }
  .cards-list .card-full .card-body ul {
    margin-top: 1.2rem;
  }
  .cards-list .card-full .card-title {
    height: 90px;
    padding-bottom: 20px;
  }
  .cards-list .card-info {
    margin: auto;
    text-align: center;
    background-color: transparent;
    border: none;
    box-shadow: none;
  }
  .cards-list .card-info .card-title {
    height: auto;
  }
  .cards-list .card-info .card-img-top {
    width: 150px;
    height: 150px;
    margin: auto;
  }
  .cards-list .card-info .card-footer {
    background-color: transparent;
    border: none;
  }
  .cards-list .card-info .link-info {
    font-weight: 700;
    color: #333;
  }
  footer {
    font-size: 21px;
  }
  footer .title-section {
    font-size: 25px;
  }
  #footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .site-container {
    padding: 0 20px;
  }
  #footer .row {
    margin-right: -20px;
    margin-left: -20px;
  }
  #footer .box {
    padding: 10px 0;
  }
  #footer .box-brand {
    margin-bottom: 40px;
  }
  #footer .box-brand img {
    width: 240px;
    height: auto;
  }
}
/**-------------------------------------------------------------------------------------------
*
*
* SMARTPHONE SMALL
*
*
-------------------------------------------------------------------------------------------*/
@media (max-width: 420px) {
  #formation-content {
    padding-bottom: 0;
  }
  #formationCollapse {
    margin-left: -35px;
    margin-right: -35px;
  }
  #formationCollapse div[id^=heading] {
    border: none;
    border-bottom: 1px solid grey;
    padding: 10px 20px;
    padding: 10px 35px;
  }
  #formationCollapse div[id^=heading] .paragraphe-title {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 35px;
    padding-right: 35px;
  }
  #formationCollapse div[id^=heading]:first-child {
    border-top: 1px solid grey;
  }
  #formationCollapse div[id^=collapse] {
    margin: 0;
    padding: 0 20px;
    border-bottom: 1px solid grey;
  }
  #formationCollapse div[id^=collapse] .box-border {
    border: none;
    padding: 20px;
    padding-bottom: 60px;
  }
  #formationCollapse div[id^=collapse] .box {
    margin-bottom: 0;
  }
  #formationCollapse--lp {
    margin-left: auto;
    margin-right: auto;
  }
  #formationCollapse--lp div[id^=lp--heading] {
    border: none;
    padding: 10px 0;
  }
  #formationCollapse--lp div[id^=lp--heading] {
    padding: 10px 0;
  }
  #formationCollapse--lp div[id^=collapse] {
    margin: 0;
    padding: 0;
  }
  #formationCollapse--lp div[id^=collapse] .box-border {
    border: none;
    padding-bottom: 60px;
  }
  #formationCollapse--lp div[id^=collapse] .box {
    margin-bottom: 0;
  }
  #view {
    padding: 60px 20px;
    padding: 60px 0;
  }
}
@media (max-width: 374.98px) {
  .cards-list .card-full .card-stars {
    order: 2;
  }
  .aside .aside-btn {
    width: 100%;
  }
  footer .site-container {
    padding: 0 10px;
  }
}
/**-------------------------------------------------------------------------------------------
*
*
* SMARTPHONE LANDSCAPE
*
*
-------------------------------------------------------------------------------------------*/
@media (max-height: 419.98px) {
  #jumbotron .title-big {
    margin-top: 10px;
    margin-bottom: 0px;
  }
}
/**----------------------------------------------
* TEST GRID CONTAINER SIZE FIXED
-----------------------------------------------
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { }


// Large devices (desktops, 992px and up)
@media (min-width: 992px) { 
    .container {
        width:960px !important;
        margin:auto !important;
    }
}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1360px) { 
    .container {
        width:1280px !important;
        margin:auto !important;
    }
}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1900px) { 
    .container {
        width:1600px !important;
        margin:auto !important;
    }
}
*/