:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: hsl(27, 98%, 54%);
    --yellow: #d08948;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #d1d2d4;
    --gray-dark: #706F6F;
    --primary: #d08948;
    --secondary: #020202;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #000000;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  }

  html, body {
    font-family: 'Open Sans', sans-serif;
  }

  a {
	color: var(--yellow);
	text-decoration: none;
	background-color: transparent;
}

.uppercase { text-transform: uppercase; }

.mt1 { margin-top: 1rem; }
.mt2 { margin-top: 2rem; }

.textWrapLeft {
    float:left;
    margin: 1rem;
}
/* Head */
.logo img {
    max-width: 8rem;
}
/* Head Home */
.home .logo img {
    max-width: 100%;
    padding: 1rem;
}
.whatwedo {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    padding: 0 4rem;
}

/* loading */

body#home .inner { display: none; }

body#home.pg-loaded .inner { display: block; }

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #343a40;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
  }
  .lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
  }
  .lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
  }
  @keyframes lds-facebook {
    0% {
      top: 8px;
      height: 64px;
    }
    50%, 100% {
      top: 24px;
      height: 32px;
    }
  }


/*** Menu ***/
/* Contenant */
/* .navbar {
	padding: 0;
}
.home .navbar {
	padding: .5rem 1rem;
} */
.navbar-nav { 
    margin-left: 4rem;
}
.home .navbar-nav { 
    margin-left: 0;
}
.navbar-nav .nav-item{
    padding-right: 2rem;
}
.home .navbar-nav .nav-item{
    padding-right: 4rem;
}
.navbar-nav .nav-item:last-of-type {
    padding-right: 0;
}
/* Link */
.navbar-light .navbar-nav .nav-link {
    color: var(--yellow);
    font-family: tekomedium, sans-serif;
    font-size: 1.5rem;
    padding:0;
    line-height: 1.8em;
    text-transform: uppercase;
}
.home .navbar-light .navbar-nav .nav-link {
    font-size: 2rem;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: var(--dark);
}
/* Dropdown */
.dropdown-toggle::after {
    display: none;
}
.dropdown-menu {
	border: 0;
    border-radius: O;
    font-size: 1.3rem;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
	position: absolute;
	z-index: 9999;
}
.dropdown-item {
    color: var(--dark);
    font-family: tekomedium, sans-serif;
    text-transform: uppercase;
    text-align: left;
    border-top: .5px solid var(--dark);
}
.dropdown-item:last-child{
    border-bottom: .5px solid var(--dark);
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--yellow);
	text-decoration: none;
	background-color: var(--white);
}

/*** End Menu ***/

/*** Footer ***/
.footer { 
    background-color: var(--gray-dark);
    padding-top: 3rem;
    margin-top: 1rem; 
    padding-bottom: 1rem;
}
.footer-block {
    padding-left: 15px;
    color: var(--white); }
    @media(max-width:767px){
        .footer-block {
            padding-left: 0;
        }
    }
.footer-block:first-of-type {
    padding-left: 30px;
    text-align: center; }
    @media(max-width:767px){
        .footer-block:first-of-type {
            padding-left: 0;
        }
    }

.footer-block p {
    text-align: left;
}
.footer-block p a {
    color: var(--white);
}
.footer-block p a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer h4 {
    text-align: left;
    color: var(--white);
    font-family: tekoregular, sans-serif;
    font-size: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.25rem solid var(--white);
}
.reseaux h4 {
    margin-bottom: 0.75rem;
}
.credits {
    margin-top: 3rem;
    text-align: center;
}
.credits p{
    font-size: .8rem;
    color: var(--white);
}
.credits a{
    color: var(--white);
}
.credits img {
    width: 12rem;
    padding:1rem;
}
/*** End Footer ***/

/*** Breadcrumb ***/
.breadcrumb {
	background-color: var(--white);
    border-radius: 0;
    margin-bottom: 0; }
    @media(max-width:767px){ .breadcrumb {

    }
}
@media(max-width:767px){
    .breadcrumb-item:first-child {
        display: none;
    }
    .breadcrumb-item:nth-child(2)::before {
        display: none;
    }
    .breadcrumb-item:last-child {
        display: none;
    }
}
.breadcrumb a {
    color: var(--dark);
    font-family: 'Open Sans', sans-serif;  }
    @media(max-width:767px){ .breadcrumb a {
        
    }
}
.breadcrumb a:hover {
	color: var(--dark);
}


/*** End Breadcrumb ***/



/* Rubrique */
h2 { 
    text-align: center;
    padding-bottom: 2rem;
    padding-top: 0.75rem;
    margin-top: 2rem;
    border-top: 0.25rem solid var(--dark);
    font-family: tekomedium, sans-serif;
    font-weight:normal;
    font-size: 3rem;
    text-transform: uppercase;
}
.rubrique img  {
    width:100%;
    padding:0;
}
.rubrique .article_first {
    margin-bottom: 1rem;
} 

.rubrique h3 a {
    width:100%;
    padding-top: 0.25rem;
    color: var(--yellow);
    font-family: tekomedium, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.rubrique h3 a {
    width:100%;
    padding-top: 0.25rem;
    color: var(--yellow);
    font-family: tekomedium, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}
.article {
    padding-top: 1rem;
    width: 100%;
    height: 100%;
}
.article_container {
    padding-bottom: 1rem;
}
.article_container:hover {
    background-color: var(--gray);
}

/*** Article lire ***/
@media(max-width:767px){
    .article-lire {
        padding:0;
    }
}
.rubrique_title {
    padding:     1rem;
}
.article-lire img{
    max-width: 100%;
}
.article-lire h3 {
    text-align: left;
    color: var(--yellow);
    font-family: tekomedium, sans-serif;
    text-transform: uppercase;
    padding-top: 1rem;
}
.article-lire .description {
    /* column-count: 2;
    column-gap: 2rem; */
    text-align: justify;
}
/* @media(max-width:767px){
    .article-lire .description {
        column-count: 1;
        column-gap: auto;
    }
} */
/*** End Article lire ***/

/** Treebiblio **/
.treebiblio .titre, .treebiblio .date, .treebiblio .taille, .treebiblio .options {
    align-self: center;
}
.treebiblio .list-group-item {
	border: 0 solid rgba(0,0,0,.125);
}
.treebiblio h4 {
    font-family: tekomedium, sans-serif;  
    font-size: 2rem;
    color: var(--yellow);
    border-top: 0.1rem solid var(--yellow);
    cursor: pointer;
    padding:0.25rem 0;
    margin-bottom: 0;
}
.treebiblio:last-of-type {
    border-bottom: 0.1rem solid var(--yellow);
}
.treebiblio h5 {
    font-family: tekomedium, sans-serif;  
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
    cursor: pointer;
}
.treebiblio p {
    margin-bottom: 0;
}
.documents {
    font-size: 1.2rem;
    line-height: 1.5rem;
}
/* Custom modal content styling */

.custom-modal-container {
    max-width: 500px;
    padding: 0;
    margin: 20px 0;
    border-radius: .3em;
    box-shadow: 0 0.1em 0.4em rgba(0,0,0,.3);
  }
  
  .custom-modal-title {
    font-weight: 700;
    padding: 1em;
    font-family: tekomedium, sans-serif;
    text-transform: uppercase;
  }
  
  .custom-modal-body {
    max-height: calc(100vh - 230px);
    min-height: 50px;
    padding: 0 1.5em 1.5em 1.5em;
    overflow-y: auto;
  }
  
  .custom-modal-footer {
    padding: 1.5em;
    text-align: right;
  }


/** form **/
    .form-control {
        display: block;
        color: var(--dark);
        border: 0.5px solid var(--dark);
        border-radius: 0;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }
    .form-control:focus {
        color: var(--gray-dark);
        background-color: #fff;
        border-color: var(--yellow);
        outline: 0;
        box-shadow: 0 0 0 .2rem rgba(255, 255, 255, 1);
    }
    label {
        color: var(--dark);
        font-size: 1.4rem;
        font-family: tekomedium, sans-serif;
    }
    .has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
        color: #cc071e;
    }
    
/** forms **/


/** Contact **/
.contact h3 {
    color: var(--yellow);
    font-size: 1.5rem;
    font-family: tekomedium, sans-serif;
    border:0;
}



/*--------------------------------------------------
    [Back To Top Theme Button]
----------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  z-index: 9;
  width: 40px;
  height: 40px;
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 3;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--yellow);
  border-radius: 3px;
  visibility: hidden;
  opacity: 0;
  padding: 5px;
  -webkit-transform: translate3d(0, 50px, 0);
  -moz-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.back-to-top:hover {
  color: #fff;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.back-to-top:focus, .back-to-top:hover {
  text-decoration: none;
}

/* The Button Becomes Visible */
.back-to-top.back-to-top-is-visible {
  visibility: visible;
  opacity: .6;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.back-to-top.back-to-top-is-visible:hover {
  opacity: 1;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* If the user keeps scrolling down, the button is out of focus and becomes less visible */
.back-to-top.back-to-top-fade-out {
  opacity: .4;
}

.back-to-top.back-to-top-fade-out:hover {
  opacity: 1;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}