:root {
    --primary: #2a588d;
    --secondary: #00a1e1;
    --light: #f1f7fd;
    --dark: #181d38;
}

body {
    font-family: 'Abel', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

object {
    pointer-events: none;
}

.navbar-dark .navbar-nav .nav-link{
color: #fff;}


.plogo {
    font-size:14px!important;
}
/*custom font*/

@import url(https://fonts.googleapis.com/css?family=Merriweather+Sans);
.breadcrumb {
    /*centering*/
    display: block;
    width: 100%;
    overflow: hidden;
   
    /*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
    counter-reset: flag;
    margin: 0;
    background: #00a1e1;
}

.breadcrumb a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 12px;
    line-height: 36px;
    color: white;
    /*need more margin on the left of links to accomodate the numbers*/
    padding: 0 10px 0 60px;
    background: #666;
    background: linear-gradient(#666, #333);
    position: relative;
}


/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/

.breadcrumb a:first-child {
    padding-left: 46px;
    
    /*to match with the parent's radius*/
}

.breadcrumb a:first-child:before {
    left: 14px;
}

.breadcrumb a:last-child {
    border-radius: 0 5px 5px 0;
    /*this was to prevent glitches on hover*/
    padding-right: 20px;
}


/*hover/active styles*/

.breadcrumb a.active,
.breadcrumb a:hover {
    background: #333;
    background: linear-gradient(#333, #000);
}

.breadcrumb a.active:after,
.breadcrumb a:hover:after {
    background: #333;
    background: linear-gradient(135deg, #333, #000);
}


/*adding the arrows for the breadcrumbs using rotated pseudo elements*/

.breadcrumb a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -18px;
    /*half of square's length*/
    /*same dimension as the line-height of .breadcrumb a */
    width: 36px;
    height: 36px;
    /*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
    transform: scale(0.707) rotate(45deg);
    /*we need to prevent the arrows from getting buried under the next link*/
    z-index: 1;
    /*background same as links but the gradient will be rotated to compensate with the transform applied*/
    background: #666;
    background: linear-gradient(135deg, #666, #333);
    /*stylish arrow design using box shadow*/
    box-shadow: 2px -2px 0 2px rgba(0, 0, 0, 0.4), 3px -3px 0 2px rgba(255, 255, 255, 0.1);
    /*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
    border-radius: 0 5px 0 50px;
}


/*we dont need an arrow after the last link*/

.breadcrumb a:last-child:after {
    content: none;
}


/*we will use the :before element to show numbers*/

.breadcrumb a:before {
    content: counter(flag);
    counter-increment: flag;
    /*some styles now*/
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 8px 0;
    position: absolute;
    text-align: center;
    top: 0;
    left: 30px;
    background: #444;
    background: linear-gradient(#444, #222);
    font-weight: bold;
}

.flat a,
.flat a:after {
    background: white;
    color: black;
    transition: all 0.5s;
}

.flat a:before {
    background: white;
    box-shadow: 0 0 0 1px #ccc;
    color: #000;
}

.flat a.active {
    color: #fff;
}

.flat a:hover,
.flat a.active,
.flat a:hover:after,
.flat a.active:after {
    background: #00a1e1;
}

.btn-ritma {
    color: #fff!important;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-ritma:hover {
    color: #fff!important;
    background-color: var(--primary);
    border-color: var(--primary);
}

.divider-blue {
    width: 10%;
    background: #005595;
    margin: auto;
    height: 4px;
}

#Top-v2 {
    background: #71737b;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

#Top-v2 a {
    color: #fff;
    text-decoration: none;
    margin-left: 1em
}

.fa-resize-stack {
    font-size: 0.9em;
}

.fa-circle {
    color: #00a1e1
}

.align-text-right {
    text-align: right
}

#Menu-v2 {
    background: #2a588d;
}

#Menu-v2 a {
    font-size: 14px;
    padding: 15px 10px;
    letter-spacing: 0.1em;
}

.navbar-default {
    background: none;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0px;
}

.navbar-brand {
    padding: 0px!important;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
    text-transform: uppercase;
    text-shadow: none
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    color: #fff;
 background-color: #00a1e1;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    color: #fff;
    background-color: #00a1e1;
}

.navbar-default .navbar-nav>.last a {
    background: #00a1e1;
    color: #fff;
}

.navbar-default .navbar-nav>.last a:hover {
    background: #fff;
    color: #00a1e1;
}

.has-submenu {
    color: white !important;
}

.dropdown-item {
    padding: 5px!important;
}

#Logo-v2 {
    position: absolute;
    z-index: 5;
    width: 220px;
    background: rgb(255, 255, 255);
    top: -45px;
}

#Logo-v2 img {
    width: 100%;
    background-color: white;
    padding: 1px 8px;
}

#Banner-v2 {
    position: relative;
    width: 100;
}

#Inscription-v2 {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

a.btn-bleu,
.l_imp li:last-child a {
    color: #fff!important;
    background-color: #00a1e1;
    border-color: #00a1e1;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    margin-top: 10px;
}

.l_imp li:last-child a:hover {
    background: var(--primary);
}

button.btn-bleu,
.alert.alert-warning,
.alert.alert-info {
    color: #000;
    border-radius: 0;
    font-family: 'Arya', sans-serif;
    font-size: 1.2em !important;
    padding: 1.5em;
    background: #e9eaea;
    text-decoration: none;
    text-align: center;
}

button.btn-bleu a {
    border: none;
    font-family: 'Arya', sans-serif;
    font-size: 1.2em !important;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    font-weight: normal;
}

button.btn-bleu a:hover,
button.btn-bleu:hover,
.l_imp li:nth-child(9) a:hover {
    background: #2a588d;
    color: #fff;
    text-decoration: none
}

.alert-info p {
    color: #000;
    margin-top: 0;
}

a.mr-2 {
    margin-right: 0.5em;
}

.mt-4 {
    margin-top: 0
}

.py-3 {
    padding-top: 25px;
    padding-bottom: 25px;
}

hr {
    border-top: 2px solid #00a1e1;
    box-shadow: none;
    height: 2px
}

.contenu_page2 h1,
h2 {
    font-family: 'Arya', sans-serif;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: #005595;
    font-size: 40px;
    font-weight: 600;
}

.contenu_page h1,
h2 {
    font-family: 'Arya', sans-serif;
    font-size: 1.6em;
    /*background: url(/v2/border-bleu.png) bottom left no-repeat;*/
    padding-bottom: 15px;
    color: #005595;
    position: relative;
    text-transform: uppercase;
}

h3 {
    font-family: 'Arya', sans-serif;
    font-size: 1.6em;
    padding-bottom: 15px;
    color: #005595;
    position: relative;
    /* text-transform: uppercase;*/
}

h4 {
    font-family: 'Arya', sans-serif;
    font-size: 1.4em;
    color: #005595;
    text-transform: none;
}

.bg-light {
    background-color: var(--light)!important;
}


/*h1{font-family: "justusb",serif; font-size:1.4em; text-transform:uppercase; margin:0 0 1em 0; color:#005595}
	h2{font-family: "justusb",serif; font-size:1.3em; text-transform:none; margin:0 0 1em 0; color:#005595}
	h3{font-family: "justusb",serif; font-size:1.2em; text-transform:none; margin:1em 0; color:#005595}
	h4{font-family: "justusb",serif; font-size:1.2em; text-transform:none; margin:1em 0; color:#005595}
	h5{font-family: "justusb",serif; font-size:0.9em; text-transform:none; margin:1em 0; color:#005595}
	h6{font-family: "justusb",serif; font-size:1em; text-transform:none; margin:1em 0; color:#005595}*/

p,
td {
    font-size: 16px;
    margin: 1em 0;
    line-height: 28px;
    color: #333
}

li {
    font-size: 16px;
    color: #333;
    list-style-type: disc;
}

a {
    color: #005595;
    text-decoration: none;
}

a:hover {
    color: #000;
}

.slogan p {
    font-size: 1.5em;
}

.navbar li{
list-style-type: none;
}



#Association-v2 {
    box-shadow: inset 0 -8px 4px 4px rgb(255, 255, 255), inset 0 2px 8px 0px rgba(50, 50, 50, 0.30);
}

.equalheight .row {
    display: table;
}

.equalheight [class*="col-"] {
    float: none;
    display: table-cell;
}

#Nouvelle-v2 {
    background: #fff;
    z-index: 5;
    border: 4px solid #f9f8f5;
    text-align: center;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
    padding: 50px 10px;
}

#Nouvelle-v2 a {
    color: #00a1e1;
    font-weight: bold
}

#Nouvelle-v2 a:hover {
    color: #333;
    text-decoration: none
}

#Nouvelle-v2 p {
    padding-left: 1.5em;
    padding-right: 1.5em;
}

#Infolettre-v2 {
    background: #2a588d;
}


#NosPartenaires-v2 {
    background: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 20px;
}

#Footer-v2 {
    background: #e9eaea;
    border-top: 10px solid #2a588d;
    padding-bottom: 30px;
    padding-top: 30px;
    margin-top: 20px;
}

#Footer-v2 h3 {
    font-size: 1.5em;
    color: #2a588d;
}

#Footer-v2 li,
#Footer-v2 li a,
#Footer-v2 p {
list-style-type: none;
    color: #71737b;
    font-size: 1em
}

#Footer-v2 li a:hover {
    color: #00a1e1;
}

#Copyright-v2 {
    background: #fff;
    padding-bottom: 1em;
    padding-top: 1em;
}


/* Carousel */

.Carousel-Wrap {
    padding-top: 30px;
    padding-bottom: 30px;
}

.Carousel-Placeholder {
    position: relative;
    margin: 0 30px;
}

.owl-prev {
    position: absolute;
    top: 50%;
    left: -30px;
    margin: -20px 0 0 0;
    display: block !important;
    width: 15px;
}

.owl-next {
    position: absolute;
    top: 50%;
    right: -30px;
    margin: -20px 0 0 0;
    display: block !important;
    width: 15px;
}

.owl-prev i,
.owl-next i {
    color: #00a1e1;
}

.owl-prev i:hover,
.owl-next i:hover {
    color: #000;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block !important;
}

.owl-prev i,
.owl-next i {
    font-size: 2em;
}

.mt-sm-4 {
    margin-top: 30px;
}

.mt-sm-slogan {
    margin-top: 30px;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%!important;
}

@media only screen and (max-width: 1106px) {
    #Logo-v2 {
        width: 118px;
       
    }
}

@media only screen and (min-width: 992px) {
    .mt-sm-4 {
        margin-top: 0;
    }
    .mt-sm-slogan {
        margin-top: 1em;
    }
    .mt-4 {
        margin-top: 30px
    }
    
}

@media only screen and (max-width: 991px) {
 
    #Logo-v2 {
        width: 107px;
        position:static !important;
    }
}
@media only screen and (max-width: 767px) {
    #Logo-v2 {
        width: 107px;
        position:static !important;
    }
  
    #Nouvelle-v2,
    #InfolettreBox {
        position: relative
    }
    #Quisommenous-v2 {
        padding-bottom: 30px;
    }
    #Infolettre-v2 {
        padding-top: 30px;
        padding-bottom: 30px
    }
    #Infolettre-v2 {
        margin-top: 0;
    }
    .d-block-xs {
        padding-top: 30px
    }
    .d-none-xs {
        display: none;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #ddd;
    }
    .navbar-default .navbar-toggle:focus .icon-bar,
    .navbar-default .navbar-toggle:hover .icon-bar {
        background-color: #333;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #333;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #fff;
        background-color: #00a1e1;
    }
    .col-xs-nogutter {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}



#banner_header {
    width: 100%;
    height: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
}

#banner_header h1{
    color: #fff;
font-size: 3vw;
}


#header-assoc {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}
    
    
    #header-assoc h1{
    padding: 15px 50px;
    width: fit-content;
    background-image: url('/medias/img/background-white.png');
        background-size: cover;
    background-repeat: no-repeat;
    margin: auto;
    color: var(--primary);
        font-size: 3vw;
        
    }





.page_header img {
    width: 100%;
}

nav.bcrumbs li {
    display: inline-block;
    color: #c5c5c5;
    font-size: 1rem;
    padding: 12px 0 8px;
}

nav.bcrumbs li a {
    color: #c5c5c5;
}

nav.bcrumbs li.active a,
nav.bcrumbs li.active span {
    color: #969696;
}

.dropdown-menu li a {
    font-size: 14px!important;
}

.dropdown-menu li br {
    display: none;
}

.page_header {
    position: relative;
    padding: 0px!important;
}

.page_header h1 {
    position: absolute;
    color: white; 
    top: 28%;
    font-size: 3vw;
    max-width: 50%;
  
    font-family: 'Abel', sans-serif;
    
    padding: 20px 25px 20px 100px;
    /* width: 50%;
    left: 0px; */
    left: 0px;
}




/*.page_header h1 span {
    font-size: 6rem;
}*/

.ass_color_2 h1 {
    top: 30%;
    padding: 20px 4px 20px 15px;
    background-image: none!important;
    color: #fff;
    width: inherit;
    display: block;
}

.b_right_contact {
    border: 4px solid #f9f8f5;
    margin: 25px 0 35px;
}

.right_contact {
    border: 1px solid #eeeeee;
    padding: 15px;
}

.right_contact h3 {
    border-bottom: 2px solid #eeeeee;
    color: #396293;
}

.right_contact p {
    font-size: 1.3rem;
    font-weight: bold;
}

.text_sugg {
    font-size: 2rem;
    margin: 45px 0 25px 0;
}

.form_inp {
    margin: 0 0 20px;
}

.form_inp input[type=text],
.form_inp input[type=email],
.form_inp textarea,
.form_inp input[type=phone],
.form_inp input[type=date] {
    width: 100%;
    background: #FFF;
    border: 1px solid #bababa;
    border-radius: 3px;
    padding: 10px;
    color: #999;
    font-weight: bold;
}

.form_inp input::placeholder,
.form_inp textarea::placeholder {
    color: #333;
    font-weight: bold;
}

.form_inp textarea {
    height: 175px;
}

.form_sub {
    text-align: right;
}

.envoyer {
    background: #00a1e1;
    color: white;
    border: none;
    font-size: 20px;
    padding: 10px 50px;
    font-weight: bold;
    margin-top: 30px;
}

.infoletter {
    background: #00a1e1;
    text-align: center;
    color: white;
    padding: 15px 0 55px;
    text-transform: uppercase;
}

.infoletter p {
    color: #FFF;
    font-size: 1.5rem;
}

.infoletter h3 {
    color: #FFF;
    font-size: 3rem;
    margin: 25px 0;
}

.button_dark {
    background: #2a588d;
    color: white;
    border-radius: 3px;
    padding: 8px 25px;
    font-weight: bold;
    font-size: 2rem;
}

.infoletter .button_dark {
    color: white !important;
}

#Footer-v2 {
    margin-top: 0;
}

.menu_ritma li {
    list-style: none !important;
}

.contenu_page,
.contenu_page2 {
    background: #f9f8f5;
    padding: 55px 0;
    color: #000000;
}

.contenu_page a,
.contenu_page2 a {
    color: #2a588d;
    font-size: 1.1em;
    line-height: 150%;
}

.contenu_page li a,
.contenu_page2 li a {
    font-size: 1em;
}

.contenu_page ul,
.contenu_page2 ul {
    margin: 0 0 0 20px;
}

.contenu_page li,
.contenu_page2 li {
    /* list-style: disclosure-closed;*/
    color: #71737b;
    font-size: 1.1em;
    line-height: 150%;
}


/*.contenu_page h1 {
    font-family: "justusb",serif;
    font-size: 1.4em;
    text-transform: uppercase;
    margin: 0 0 1em 0;
    color: #333333;
}*/

.formation-box {
    padding: 1em;
    margin-top: 1em;
    border: 1px solid #eeeeee;
    border-radius: 0;
    background-color: #FFF;
}

.babillard-date {
    display: inline-block;
    padding: 6px 5px;
    color: #666666;
}

.sidebar-blog h3 {
    padding: 6px 0px;
}

.blog-widget-title {
    position: relative
}

.blog-widget-title h3:after {
    content: '';
    background-color: #2a588d;
    width: 26px;
    height: 1px;
    left: 0;
    bottom: 0;
    position: absolute;
}

.babillard-box .col-md-12 {
    position: relative;
    /*margin: 20px 0px;*/
    /*width: 31%;*/
    /*float: left;*/
    /*margin-right: 20px;
    margin-bottom: 20px;*/
    height: 100%;
    margin-bottom: 50px;
    /*margin: 1%;*/
}

.babillard-img {
    margin: 0px;
    padding: 0px;
    width: 10%;
    text-align: center;
    width: 100%;
}

.babillard-img img {
    width: 100%;
}

.babillard-category {
    display: inline-block;
    margin-bottom: 0px;
    padding: 6px 5px;
    border-radius: 20px;
    font-size: 13px;
    line-height: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #666666;
}

.babillard-desc {
    margin: 0;
    padding: 15px 0px;
}

.babillard-desc.padd75 {
    padding-top: 75px;
}

.babillard-desc h4 {
    margin: 0px;
    padding: 0px;
    font-weight: bold;
    color: #000;
    font-size: 1em;
    font-family: "amble", sans-serif;
    font-size: 0.9em;
    display: inline-block;
}

.babillard-desc h3 {
    margin: 0;
    padding-bottom: 15px;
    font-size: 17px;
    min-height: 55px;
}

.babillard-desc-long h4 {
    margin: 0px;
    padding: 0px;
    font-weight: bold;
    color: #000;
    font-size: 1em;
    font-family: "amble", sans-serif;
    font-size: 0.9em
}

.babillard-desc-long h3 {
    margin-top: 0;
    font-size: 1.1em;
}

.babillard-desc a {
    display: block;
    margin-top: 15px;
    text-align: center;
    padding: 15px 25px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-width: 0px;
    background: #2a588d;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.babillard-desc p {
    margin: 0;
}

.babillard-link {
    text-align: right;
    text-transform: uppercase;
    padding: 0 15px 15px;
}

h4.date_babi {
    background: #2a588d;
    width: 55px;
    height: 55px;
    color: #FFF;
    text-align: center;
    border-radius: 50%;
    text-transform: uppercase;
    margin: 0;
    padding: 5px;
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 10px;
}

h4.date_babi span {
    display: block;
    line-height: 0.9;
    font-weight: bold;
}

h4.date_babi span:nth-child(1) {}

h4.date_babi span:nth-child(2) {
    font-size: 17px;
    line-height: 0.9;
}

h4.date_babi span:nth-child(3) {
    font-size: 12px;
}

.pagination li {
    list-style: none!important;
}

.pagination {
   /* margin: 0!important;*/
   margin-top: 10px;
}

.btn-blue {
    color: white!important;
    background: #005595;
    margin: 2px;
}

.btn-default {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    /*font-size: 14px;*/
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    /*white-space: nowrap; */
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    border-color: #ccc;
    text-shadow: 0 1px 0 #fff;
    background-image: -webkit-linear-gradient(top, #fff 0, #e0e0e0 100%);
    background-image: -o-linear-gradient(top, #fff 0, #e0e0e0 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
    background-image: linear-gradient(to bottom, #fff 0, #e0e0e0 100%);
}

a.btn.btn-ritma-kine,
a.btn.btn-ritma-med,
a.btn.btn-ritma-metiers,
a.btn.btn-ritma-osteo,
a.btn.btn-ritma-masso,
a.btn.btn-ritma-naturo,
a.btn-bleu4 {
    display: flex;
    float: left;
    padding: 1.5em 0.5em;
    color: #fff;
    border-radius: 0;
    /* width: 23%; */
    /* margin: 0 1%;*/
    margin-left: 1%;
    text-align: center;
    white-space: normal;
    height: 150px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 25px;
    text-transform: uppercase;
    line-height: 1.1;
}

.btn.btn-ritma-kine,
.btn.btn-ritma-med,
.btn.btn-ritma-metiers,
.btn.btn-ritma-osteo,
.btn.btn-ritma-masso,
.btn.btn-ritma-naturo,
.btn.btn-ritma-masso-kine-ortho {
    float: left;
    border-radius: 0;
    /* width: 23%; */
    /* margin: 0 1%;*/
    /*margin-left: 1%;*/
    white-space: normal;
    /*height: 190px;*/
    background: inherit;
    transition: transform .2s;
}

.btn.btn-ritma-kine:hover,
.btn.btn-ritma-med:hover,
.btn.btn-ritma-metiers:hover,
.btn.btn-ritma-osteo:hover,
.btn.btn-ritma-masso:hover:hover,
.btn.btn-ritma-naturo:hover {
    transform: scale(1.05);
}

a.btn-bleu4 {
    background: #00a1e1;
}

.btn.btn-ritma-kine a,
.btn.btn-ritma-med a,
.btn.btn-ritma-metiers a,
.btn.btn-ritma-osteo a,
.btn.btn-ritma-masso a,
.btn.btn-ritma-naturo a,
.btn.btn-ritma-masso-kine-ortho a {
    padding: 2.5em 0.5em 0;
    color: #fff;
    display: block;
    font-weight: bold;
    font-size: 25px;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
    width: 100%;
    height: 150px;
}

.btn.btn-ritma-kine:nth-child(2) a {
    /* padding: 2em 0.5em 0; */
    padding: 2.5em 0.5em 0;
}

.btn.btn-ritma-kine span,
.btn.btn-ritma-med span,
.btn.btn-ritma-metiers span,
.btn.btn-ritma-osteo span,
.btn.btn-ritma-masso span,
.btn.btn-ritma-naturo span {
    font-weight: bold;
    text-align: center;
    width: 100%;
    display: block;
    margin: 15px 0 0;
    color: #000;
    font-size: 1.6rem;
}

a.btn.btn-ritma-kine,
.btn.btn-ritma-kine a {
    background: url(/medias/img/masso-kine-overlay.jpg) no-repeat;
    background-size: cover;
    /*background: rgba(175, 188, 92, 1);*/
}

a.btn.btn-ritma-metiers {
    background: url(/v2/ritma.jpg) no-repeat;
    background-size: cover;
    /*background: rgba(175, 188, 92, 1);*/
}

a.btn.btn-ritma-osteo {
    background: url(/v2/osteo.jpg) no-repeat;
    background-size: cover;
    /*background: rgba(274, 174, 146, 1);*/
}

a.btn.btn-ritma-masso {
    background: url(/v2/masso.jpg) no-repeat;
    background-size: cover;
    /*background: rgba(175, 188, 92, 1);*/
}

a.btn.btn-ritma-naturo {
    background: url(/v2/naturo.jpg) no-repeat;
    background-size: cover;
    /*background: rgba(228, 168, 87, 1);*/
}

.a.btn.btn-ritma-kine,
.btn.btn-ritma-kine a {
    background: url(/v2/masso.jpg) no-repeat;
    /*background: url(/medias/img/masso-kine-overlay.jpg) no-repeat;*/
    background-size: cover;
    /*background: rgba(175, 188, 92, 1);*/
}

.a.btn.btn-ritma-masso--kine-ortho,
.btn.btn-ritma-masso-kine-ortho a {
    /*background: url(/v2/masso.jpg) no-repeat;*/
    background: url(/medias/img/masso-kine-overlay.jpg) no-repeat;
    background-size: cover;
    /* background: rgba(175, 188, 92, 1);*/
}

.a.btn.btn-ritma-metiers {
    background: url(/v2/ritma.jpg) no-repeat;
    background-size: cover;
    
}

.a.btn.btn-ritma-osteo {
    background: url(/v2/osteo.jpg) no-repeat;
    background-size: cover;
    /* background: #f7b192 !important; */
   
}

.color-osteo {
    color: #f7b192 !important;
}

.color-kinesio {
    color: #4d531d !important;
}


.a.btn.btn-ritma-masso {
    background: url(/v2/masso.jpg) no-repeat;
    background-size: cover;
    /* background: #a9b240; */
}

.color-masso {
    color: #a9b240 !important;
}

.a.btn.btn-ritma-naturo {
    background: url(/v2/naturo.jpg) no-repeat;
    background-size: cover;
    /* background: #e5bb4c; */
}

.color-naturo {
    color: #e5bb4c !important;
}

.a.btn.btn-ritma-med {
    background: url(/v2/medecine.jpg) no-repeat;
    background-size: cover;
    background-color: #a676ad !important;
}

.color-med {
    color: #a676ad !important;
}

.color-p-med {
    /* color: #27588D !important;*/
    color: #a9b240 !important;
}

.a.btn.btn-ritma-p-med {
    /*background: url(/v2/medecine.jpg) no-repeat;*/
    background-size: cover;
    color: #a9b240 !important;
    /*  background-color: #27588D !important; */
}


.color-metiers {
    color: #2a588c !important;
}

.page_header.ass_color_208 h1 {
    background: none;
    color: white;
    top: 35%;
    padding: 20px 4px 20px 15px;
}


/*.page_header.ass_color_5 h1,
.page_header.ass_color_224 h1,
.page_header.ass_color_208 h1 {
    /*background-color: rgba(175, 188, 92, 0.5);*/


/*background-color: rgba(255, 255, 255, 0.5);*/

top: 50%;

}
.page_header.ass_color_6 h1 {
    /*background-color: rgba(175, 188, 92, 0.5);*/
    /* background-color: rgba(255, 255, 255, 0.5);*/
    
    top: 50%;
}
.page_header.ass_color_4 h1 {
    /*background-color: rgba(274, 174, 146, 0.5);*/
    /*background-color: rgba(255, 255, 255, 0.5);
     background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));*/
    
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 400px, rgba(255, 255, 255, 0) 800px);
    background-size: 800px 100%;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    top: auto;
    bottom: 2%;
    left: 25%;
}
@media screen and (min-width: 1400px) {
    text-align: center;
}
.page_header.ass_color_2 h1 {
    /*background-color: rgba(175, 188, 92, 0.5);*/
    /*background-color: rgba(255, 255, 255, 0.5);
    
    top: 50%;*/
}
.page_header.ass_color_3 h1 {
    /*background-color: rgba(228, 168, 87, 0.5);*/
    /* background-color: rgba(255, 255, 255, 0.5);*/
    
    background: none;
    top: 40%;
    color: #fff;
    padding: 20px 4px 20px 15px;
    width: inherit;
}
.page_header.ass_color_118 h1 {
    /*background-color: rgba(165, 117, 162, 0.5);*/
    /* background-color: rgba(255, 255, 255, 0.5);*/
    
    top: 50%;
}
*/ .bcrumbs li br {
    display: none;
}
header#page_header {
    position: fixed; 
    width: 100%;
    z-index: 1002;
}
.all_page {
    padding: 95px 0 0;
}
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background: #52BFEA;
    color: #FFF;
    font-weight: bold;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}
#back-to-top:hover {
    background: #2A588D;
}
#back-to-top.show {
    opacity: 1;
}
.alert.alert-default {
    color: #000;
    //background-color: #2a588d;
    border-color: none;
    text-shadow: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 0;
}
.bloc_lienu:hover {
    text-decoration: none;
    color: #2a588d;
}
.bloc_blue {
    display: flex;
    height: 160px;
    color: #FFF;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF;
    margin: 10px 0 0;
    padding: 0 10px;
}
.bloc_lienu span {
    color: black;
    font-size: 16px;
    text-align: center;
    width: 100%;
    display: block;
    margin: 10px 0;
    text-decoration: underline;
}
.bloc_blue2 {
    display: flex;
    height: 160px;
    color: #FFF;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFF;
    margin: 10px 0 0;
    padding: 0 10px;
}
h4 {
    font-family: 'Arya', sans-serif;
    font-size: 1.1em;
    text-transform: none;
}
.title-liens {
    text-align: center;
    padding-top: 40px;
}
.faq_bloc .faq_q {
    background: #e8e7e5;
    padding: 15px;
    margin: 10px 0 0 0;
    cursor: pointer;
    position: relative;
}
.faq_bloc .faq_q.open {
    background: #d8d7d4;
}
.faq_bloc .faq_q:after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 12px;
    font-size: 2rem;
    font-weight: bold;
}
.faq_bloc .faq_q.open:after {
    content: "_";
    top: 3px;
}
.faq_bloc .faq_r {
    display: none;
    padding: 15px;
}
.bloc_tags a {
    font-family: 'Arya', sans-serif;
    display: inline-block;
    padding: 0.5em 1.5em;
    background: #00a1e1;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    margin: 5px 10px;
}
.bloc_tags a:hover {
    background: #2A588D;
    text-decoration: none;
}
.bloc_tags span {
    font-family: 'Arya', sans-serif;
    display: inline-block;
    padding: 0.5em 1.5em;
    background: #2A588D;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    margin: 5px 10px;
}
.marge1 {
    margin: 0 25px;
}
h5 {
    font-family: 'Abel', sans-serif;
    font-size: 1em;
    text-transform: none;
    margin: 1em 0;
    color: #005595;
}
.clic_ade {
    background: #2a588d;
    text-align: center;
    color: white;
    padding: 15px 0;
    text-transform: uppercase;
}
.clic_ade p {
    color: #FFF;
    font-size: 1.5rem;
}
.clic_ade a.btn-bleu {
    display: inline-block;
}
a.btn-bleu:hover {
    color: white !important;
    border: 1px solid white;
    background-color: #3d5d90;
}
.assocdesc p {
    color: #000;
}
.assocblock {
    display: block;
}
.assocbtn {
    text-decoration: none;
}
.assocbtn:hover {
    text-decoration: none;
}
.assocbtn div.color1 {
    margin-top: 20px;
    height: auto;
    text-align: center;
    width: 100%;
    background-color: #b2be40;
    /* padding: 50px 0px; */
    /* padding: 30% 0px !important; */
    
    transition: 2s;
    padding: 20px;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.assocbtn div h3.white {
    color: white;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}
.assocbtn div.color2 {
    margin-top: 20px;
    height: auto;
    width: 100%;
    background-color: #dceb6a;
    /* padding: 50px 0px; */
    /* padding: 25% 0px !important; */
    
    transition: 2s;
    padding: 20px;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.assocbtn div h3.green {
    color: white;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}

/*.assocbtn div:hover{
	background: url(/v2/osteo.jpg) no-repeat;
    background-size: cover;
    transition: 2s;
}*/
.assocbtn div:hover .green {
    color: white;
}
.title-assoc-desc {
    background: #2a588d;
    color: #fff!important;
    padding: 15px 10px;
    text-align: center;
}
.contenu_page2 h1 {
    color: #b0bf3e;
    font-size: 40px;
    font-weight: 600;
    max-width: 75%;
    margin: 0 auto 0;
    text-align: center;
}
.link-underline {
    text-decoration: underline !important;
}
#Infolettre-v2 .row .col-xs-12 .container-fluid {
    padding-left: 0px;
}
#Infolettre-v2 .row .col-xs-12 .container-fluid .row .col-xs-12:first-child {
    height: 450px;
}
#sidebar li a.active {
    color: var(--secondary);
    font-weight: bold;
}

/*Sidebar Public */
.sidebarbtn div.color2 {
    margin-top: 20px;
    height: auto;
    width: 100%;
    background-color: #2a588d;
    padding: 50px 50px;
    transition: 2s;
}
.sidebarbtn div.color1 {
    margin-top: 20px;
    height: auto;
    width: 100%;
    background-color: #00a1e1;
    padding: 50px 50px;
    transition: 2s;
}
.siderbarblock {
    display: block;
}
.sidebarbtn {
    text-decoration: none;
}
.sidebarbtn:hover {
    text-decoration: none;
}
.sidebarbtn div h3.white {
    color: white;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}

/*Vertical Menu - Code de déontologie*/
.vertical-menu {
    max-width: 100%;
}
.vertical-menu a {
    background-color: #eee;
    color: black;
    display: block;
    padding: 12px;
    text-decoration: none;
}
.vertical-menu a:hover {
    background-color: #ccc;
}
.vertical-menu a.active {
    background-color: #00a1e1;
    color: white;
}
.accordion-button {
    border: 2px solid #005595;
}
.accordion-item {
    background: transparent;
}
.background-blue {
    background: #00a1e1;
    color: #fff;
}
.background-blue p {
    color: #fff;
}
.modal-body p,
.modal-body li {
    font-size: 14px;
}
.modal-body h3 {
    padding-bottom: 0px;
}

/*Sidebar zone membres*/
aside,
main {
    height: 100vh;
    min-height: 580px;
}
@media screen and (max-width:980px) {
    aside {
       /* position: relative!important; */
        
    }
    /*
    aside .toggle {
        position: relative!important;
    }*/
}
aside {
    width: inherit;
    left: 0;
    z-index: 1001;
    position: fixed;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    background: linear-gradient(to right, rgba(241, 244, 237, 1) 0%, rgba(221, 223, 227, 1) 100%);
    border-left: 10px solid #2a588d;
    -webkit-transition: 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1), 1s -webkit-transform cubic-bezier(0.23, 1, 0.32, 1);
}
.show-sidebar aside {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
aside .toggle {
    padding-left: 10px;
    padding-top: 20px;
    position: absolute;
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}
.show-sidebar aside .toggle .burger:before,
.show-sidebar aside .toggle .burger span,
.show-sidebar aside .toggle .burger:after {
    background: #000;
}
.show-sidebar aside {
    -webkit-box-shadow: 10px 0 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 10px 0 30px 0 rgba(0, 0, 0, 0.1);
}
aside .side-inner {
    height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
aside .side-inner .profile {
    padding-top: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background: #2a588d;
    padding-bottom: 30px;
    border-bottom: 1px solid #efefef;
}
aside .side-inner .profile img {
    width: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
}
aside .side-inner .profile .name {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
}
aside .side-inner .profile .country {
    font-size: 14px;
    color: #cfcfcf;
}
aside .side-inner .counter {
    margin-bottom: 30px;
    padding-top: 30px;
    border-bottom: 1px solid #efefef;
    text-align: center;
}
aside .side-inner .counter div .number {
    display: block;
    font-size: 20px;
    color: #000;
}
aside .side-inner .counter div .number-label {
    color: #cfcfcf;
}
aside .side-inner .nav-menu ul,
aside .side-inner .nav-menu ul li {
    padding: 0;
    margin: 0px;
    list-style: none;
}
aside .side-inner .nav-menu ul li a {
    display: block;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #000;
    position: relative;
    -webkit-transition: .3s padding-left ease;
    -o-transition: .3s padding-left ease;
    transition: .3s padding-left ease;
}
aside .side-inner .nav-menu ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0px;
    background-color: #00a1e1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s opacity ease, .3s visibility ease, .3s width ease;
    -o-transition: .3s opacity ease, .3s visibility ease, .3s width ease;
    transition: .3s opacity ease, .3s visibility ease, .3s width ease;
}
aside .side-inner .nav-menu ul li a:active,
aside .side-inner .nav-menu ul li a:focus,
aside .side-inner .nav-menu ul li a:hover {
    outline: none;
}
aside .side-inner .nav-menu ul li a:hover {
    background: #fcfcfc;
    color: #000;
}
aside .side-inner .nav-menu ul li a:hover:before {
    width: 4px;
    opacity: 1;
    visibility: visible;
}
aside .side-inner .nav-menu ul li.active a {
    background: #fcfcfc;
    color: #000;
}
.active-side {
    background: #fcfcfc;
    color: #000;
}
.active-side:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px !important;
    background-color: #00a1e1;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transition: .3s opacity ease, .3s visibility ease, .3s width ease;
    -o-transition: .3s opacity ease, .3s visibility ease, .3s width ease;
    transition: .3s opacity ease, .3s visibility ease, .3s width ease;
    width: 4px;
    opacity: 1;
    visibility: visible;
}
aside .side-inner .nav-menu ul li.active a:before {
    opacity: 1;
    visibility: visible;
    width: 4px;
}
main {
    width: calc(100%);
}
main .post-entry {
    margin-bottom: 30px;
}
main .post-entry .custom-thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    margin-right: 30px;
}
main .post-content h3 {
    font-size: 18px;
}
main .post-content .post-meta {
    font-size: 15px;
    color: #ccc;
}

/* Burger */
.burger {
    width: 28px;
    height: 32px;
    cursor: pointer;
    position: relative;
    z-index: 99;
    float: left
}
.burger:before,
.burger span,
.burger:after {
    width: 100%;
    height: 2px;
    display: block;
    background: #000;
    border-radius: 2px;
    position: absolute;
    opacity: 1;
}
.burger:before,
.burger:after {
    -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
    content: "";
}
.burger:before {
    top: 4px;
}
.burger span {
    top: 15px;
}
.burger:after {
    top: 26px;
}

/* Hover */
.burger:hover:before {
    top: 7px;
}
.burger:hover:after {
    top: 23px;
}

/* Click */
.burger.active span {
    opacity: 0;
}
.burger.active:before,
.burger.active:after {
    top: 40%;
}
.burger.active:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=5);
    /*for IE*/
}
.burger.active:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=-5);
    /*for IE*/
}
.burger:focus {
    outline: none;
}

/*******/
.zone-membres-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    min-height: 65px;
    height: auto;
    padding: 0;
    box-shadow: 0 10px 30px 0 rgb(82 63 105 / 5%);
}
.align-items-stretch {
    align-items: stretch!important;
}
.profile-data {
    color: #fff;
}

/*Pagination*/
.pagination-outer {
    text-align: center;
}
.pagination2 {
    font-family: 'Ubuntu', sans-serif;
    display: inline-flex;
}
.pagination2 li a.page-link {
    color: #fff;
    background-color: #71737b;
    font-size: 23px;
    font-weight: 600;
    line-height: 27.5px;
    height: 40px;
    width: 40px;
    margin: 0 5px;
    border-radius: 50%;
    border: none;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 85% 0%, 75% 25%, 100% 15%, 100% 100%, 0 100%);
}
.pagination2 li.active a.page-link,
.pagination2 li a.page-link:hover,
.pagination2 li.active a.page-link:hover {
    color: #fff;
    background-color: transparent;
    text-shadow: 0 0 2px #4b6584;
}
.pagination2 li a.page-link:before {
    content: '';
    background-color: #00a1e1;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    transform: rotate(180deg) scale(0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
    clip-path: polygon(0 0, 85% 0%, 75% 25%, 100% 15%, 100% 100%, 0 100%);
}
.pagination2 li.active a.page-link:before,
.pagination2 li a.page-link:hover:before {
    transform: rotate(0) scale(1);
}
.pagination2 li {
    list-style: none !important;
}
.pagination2 ul {
    list-style: none !important;
}
@media only screen and (max-width: 480px) {
    .pagination2 {
        display: block;
    }
    
    .pagination2 li {
        display: inline-block;
        margin: 0 0 5px;
        list-style: none !important;
    }
    
    .pagination2 ul {
        list-style: none !important;
    }
}

/*Pagination datatable*/
.pagination .page-item.active .page-link {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.pagination .page-link {
    color: var(--primary);
}

/*** Formations ***/
.course-item {
    box-shadow: 0.707px 0.707px 7px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 30px;
}
.course-item a {
    color: #000;
}
.info {
    background: var(--secondary);
}
.info a {
    display: block;
    color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}
.section-bg {
    background-color: var(--light);
}
.section-title {
    text-align: center;
    padding-bottom: 30px;
}
.section-title h3 {
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}
.section-title h2::before,
.section-title h3::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.section-title h2::after,
.section-title h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #1977cc;
    bottom: 0;
    left: calc(50% - 20px);
}
.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Association
--------------------------------------------------------------*/
.associations .icon-box {
    text-align: center;
    /* border: 1px solid #d5e1ed; */
    /*padding: 80px 20px;*/
    
    width: 100%;
    transition: all ease-in-out 0.3s;
}
.associations .item {
    text-align: center;
    border: 1px solid #d5e1ed;
    min-height: 180px;
    /* min-width: 26.633% !important;
    /* max-width: 150px;
     width: 100%;
    /*margin: 4px;*/
    
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: all ease-in-out 0.3s;
}
.associations h4 {
    font-weight: 700;
    margin: 0px;
    color: white !important;
    /*font-size: 24px;*/
}
.associations .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    border: 1px solid #d5e1ed;
    /*padding: 80px 20px;*/
    
    width: 100%;
    transition: all ease-in-out 0.3s;
}
.services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}
.services .icon-box .icon i {
    color: #fff;
    font-size: 28px;
}
.services .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #badaf7;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}
.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    /*font-size: 24px;*/
}
.services .icon-box h4 a {
    color: var(--primary);
}
.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}
.services .icon-box:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.services .icon-box:hover .icon {
    background: #fff;
}
.services .icon-box:hover .icon i {
    color: #1977cc;
}
.services .icon-box:hover .icon::before {
    background: var(--secondary);
}
.services .icon-box:hover h5 a,
.services .icon-box:hover h4 a,
.services .icon-box:hover p,
.services .icon-box:hover span {
    color: #fff!important;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments {
    overflow: hidden;
}
.departments .nav-tabs {
    border: 0;
}
.departments .nav-item {
    list-style: none;
}
.departments .nav-link {
    border: 0;
    padding: 12px 15px 12px 5px;
    transition: 0.3s;
    color: var(--primary);
    border-radius: 0;
    border-right: 2px solid #ebf1f6;
    font-weight: 600;
    font-size: 16px;
}
.departments .nav-link:hover {
    color: var(--secondary);
}
.departments .nav-link.active {
    color: var(--secondary);
    border-color: var(--secondary);
    ;
}
.nav-tabs .nav-link.active {
    background-color: var(--light) !important;
}
.departments .tab-pane.active {
    -webkit-animation: fadeIn 0.5s ease-out;
    animation: fadeIn 0.5s ease-out;
}
.departments .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}
.departments .details p {
    /*color: #777777; */
}
.departments .nav-tabs li {
    /* margin-bottom: 25px !important;*/
    /*padding: 10px !important;*/
    
    min-height: 3vh !important;
    /*text-align: right !important;*/
}
.departments .details p:last-child {
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .departments .nav-link {
        border: 0;
        padding: 15px;
    }
    
    .departments .nav-link.active {
        /*color: #fff;
        background: #1977cc; */
    }
}
.list-unstyled li {
    list-style: none !important;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}
.faq .faq-list ul {
    padding: 0;
    list-style: none;
}
.faq .faq-list li+li {
    margin-top: 15px;
}
.faq .faq-list li {
    padding: 20px;
    background: var(--light);
    border-radius: 4px;
    position: relative;
    list-style: none !important;
    /*list-style: none !important; */
}
.faq .faq-list a {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    display: block;
    padding-right: 20px;
}
.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #76b5ee;
}
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}
.faq .faq-list p {
    padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
    display: none;
}
.faq .faq-list a.collapsed {
    color: #343a40;
}
.faq .faq-list a.collapsed:hover {
    color: var(--primary);
}
.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
    display: none;
}
@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Blocs avec icônes
--------------------------------------------------------------*/
.counts {
    /*background: var(--light);*/
    
    padding: 70px 0 60px;
}
.counts img {
    max-width: 70%!important;
    color: white !important;
}
.counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: #fff;
}
.counts .count-box-massotherapie {
    height: 100% !important;
}
.counts .count-box-osteopathie {
    min-height: 190px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.counts .count-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}
.counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: var(--primary);
}
.counts .count-box p {
    padding: 0;
    margin: 0;
    font-size: 15px;
}

/* partenaire image */
.partenaire-image img {
    width: 120px !important;
    max-width: none !important;
}

.table-responsive {
    /*display: inline-block; */
    width: 100%;
    overflow-x: auto;
    padding-bottom: 19px;
    padding-left: 2px;
    padding-right: 2px;
}

.dataTables_length, .dataTables_filter {
    margin-top: 15px;
}

@media only screen and (min-width: 150px) and (max-width: 282px) { 
    .h1, h1 {
        font-size: calc(0.8rem + 1.5vw);
    }
    h3{
        font-size: 1em;
    }
    .contenu_page h1, h2 {
        
        font-size: 1em;
    }
    .departments .details h3 {
        font-size: 19px;
    }

    #hero h1 {
        font-size: 18px !important;
        line-height: 32px;
        margin-top: 25vh !important;
    
    }

    
#header-assoc h1 {
    padding: 15px 50px;
    width: fit-content;
    background-image: url(/medias/img/background-white.png);
    /* background-size: cover; */
    background-repeat: no-repeat;
    background-size: 800px !important;
    margin: auto;
    color: var(--primary);
    font-size: 6vw;
}
#header-assoc {
    width: 100%;
    height: 25vh !important;
     background-size:none !important ; 
    background-repeat: no-repeat;
    background-position: center bottom;
}



}

@media only screen and (max-width: 576px) and (min-width: 283px){ 
    .h1, h1 {
        font-size: calc(1.0rem + 1.5vw);
    }
    h3{
        font-size: 1.1em;
    }

    .contenu_page h1, h2 {
        
        font-size: 1.2em;
    }
    .departments .details h3 {
        font-size: 20px;
    }

    

#hero {
    margin-bottom: 0;
    height: 40vh !important;
    background: url(/v2/slider.jpg) top center;
    background-repeat: no-repeat !important;
   /*background-size: 880px !important;*/
}



#hero h1 {
    font-size: 18px !important;
    line-height: 32px;
    margin-top: 20vh !important;

}


#hero a {
	font-size: 13px!important;
}

#header-assoc a{
	font-size: 13px!important;
}

.show-elements-top{
    display: none !important;
}

#header-assoc h1 {
    padding: 15px 50px;
    width: fit-content;
    background-image: url(/medias/img/background-white.png);
    /* background-size: cover; */
    background-repeat: no-repeat;
    
    margin: auto;
    color: var(--primary);
    font-size: 6vw;
}
#header-assoc {
    width: 100%;
    height: 40vh !important;
     background-size:none !important ; 
    background-repeat: no-repeat;
    background-position: center bottom;
}

.show-elements-top-left{
    float: left!important;
}
.margin-left-mobile{
    margin-left: 0 !important
}


}


@media only screen and (min-width: 576px) and (max-width: 768px) { 

    .h1, h1 {
        font-size: calc(1.1rem + 1.5vw);
    }
    h3{
        font-size: 1.5em;
    }

    .contenu_page h1, h2 {
        
        font-size: 1.3em;
    }
    .departments .details h3 {
        font-size: 22px;
    }
    .show-elements-nav
    {
        display:inline !important;

    }
    .show-elements-top{
        display: none !important;
    }
    .show-elements-top-left{
        float: left!important;
    }
    .margin-left-mobile{
        margin-left: 0 !important
    }

    #header-assoc h1 {
        padding: 15px 50px;
        width: fit-content;
        background-image: url(/medias/img/background-white.png);
        /* background-size: cover; */
        background-repeat: no-repeat;
       
        margin: auto;
        color: var(--primary);
        font-size: 6vw;
    }
    #header-assoc {
        width: 100%;
        height: 45vh !important;
         background-size:none !important ; 
        background-repeat: no-repeat;
        background-position: center bottom;
    }

    aside {
        /* position: relative!important; */
      
    }

}


@media only screen and (max-width: 991px) { 

    .show-elements-nav
    {
        display:inline !important;

    }
    .show-elements-top{
        display: none !important;
    }
    .show-elements-top-left{
        float: left!important;
    }


 }


@media only screen and (min-width: 1200px) { 

   
    
 }



 	/* Small Devices, Tablets */
	@media only screen and (min-width : 768px)
    {
        .sidebar-assoc{
            padding-left: 50px;
        }
    
        .course-item-width{
            margin:auto;max-width:60% !important;
        }
        
    }

    @media screen and (max-width : 767px)
    {
        .assocdesc section{
            padding: 30 0;
           /* padding-left:calc(var(--bs-gutter-x) * .5);*/

        }
        .section-padding-0{
            padding-top: 0 !important;
        }
        
        section {
            /* padding: 60px 0; */
            overflow: hidden;
        }
        .sidebar-assoc{
            /*padding-left: 0px; */
            padding-left:calc(var(--bs-gutter-x) * .5);
            margin-top: 50px;
        }
        .page_header h1{
            font-size: 5vw !important;
            left: 25%!important;
            top: auto;
            bottom: 0%;
            text-align: center;
            width: 80%;
            background-image: url(/medias/img/background-blue.png);
            padding: 10px 25px;
            background-size: cover;
            background-position: center;
                }
        .all_page {
            padding: 85px 0 0;
        }


       /*   div.dataTables_wrapper div.dataTables_paginate ul.pagination li {
            display: inline !important;
            
        }
        
        div.dataTables_wrapper div.dataTables_paginate ul.pagination {
            text-align: center;
            margin: 0;
            padding: 0;
            
        }

        div.dataTables_wrapper div.dataTables_paginate {
          margin: 0 !important;
          white-space:pre-wrap !important; 
          text-align: center !important;
        }  */
        /* pagination data table */
        .pagination {
            display: flex;
            padding-left: 0;
            list-style: none;
            /*flex-flow:column  nowrap !important;*/
            margin-top: 10px !important;
        }
   /* side bar */
        aside {
         position: relative!important; 
            
        }
        .burger {
            width: 0px !important;
        }
        .sidebar-zone-membres-row{
            padding-left: 0px !important;
            padding-right: 0px !important;
        }

        aside .toggle {
             padding-left: 0px;
        }


        /* side bar */
        .all_page {
            padding: 0px 0 0;
        }

        header#page_header {
             position: static !important; 
         
        }
      
        aside .side-inner{
            overflow-y:hidden !important; 
            height: 100% !important;
            
        }
        .show-sidebar aside{
            height: 100% !important;
        }
        .side-bottom{
            margin-bottom:30px !important;
        }

        .justify-content-btn{
            display: flex;
            justify-content: center !important;
        }

     
        .course-item-width{
            margin:auto;max-width:100% !important;
        }


        div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child {
            padding-left: 0;
            padding-right: 0;
        }
        
    }






    @media screen and (max-width : 576px)
    {
        .border-right-div{
            border-right: 0px solid !important;
        }
    }

    @media screen and (max-width : 980px)
    {
        aside{
          /*  width: 100% !important;*/
        }
       

    }

    @media screen and (max-width : 336px)
    {
        div.dataTables_wrapper div.dataTables_filter label{
             white-space:pre-wrap !important;
           /* display: inline !important; */
            
        }

        div.dataTables_wrapper div.dataTables_filter input{
            /* display: inline !important; */
        }
    }

    @media screen and (max-width : 476px)
    {
        .nowrap-info{
            White-space:  pre-wrap !important;
        
        }
    }


 .show-elements-nav{
    display: none ;
}

.show-elements-top{
    display:inline;
}
.child li {
         list-style-type:none ! important;
}

.recus-actions {
    padding-bottom: 1em;
}

tr.sDetails td.sDetails {background: url('/img/icons/details_close.png') no-repeat center center;}
.sDetails{min-width: 15px;}

.text-justify {
    text-align: justify;
    text-justify: inter-word;

}
.justify-content-btn{
    display: flex;
    justify-content: start;
}
.border-right-div{
    border-right: 1px solid;
}

/* DATA table */

.dtr-data{
    white-space: normal!important;
}

.nowrap-info{
    White-space: nowrap;

}
.select2-selection__rendered { white-space: normal !important; word-break: break-all !important; }
.select2-container--bootstrap-5 .select2-selection {height: auto !important;}


.paginate_button {
    padding: 0.6rem 0.8rem !important;
    position: relative !important; 
     display:inline !important; 
   
     text-decoration: none; 
     background-color: #fff; 
     border: 1px solid #dee2e6;
     transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
     color: #6c757d;
    /*pointer-events: none;*/
    background-color: #fff;
    border-color: #dee2e6;
    cursor: pointer;
}


.paginate_button[active="true"] {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
    pointer-events: none;
}
/* .paginate_button:last-child{
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
} */

/* .paginate_numbers .paginate_button:first-child{ border-radius:0px !important; }

.paginate_numbers .paginate_button:first-child {
    border-radius: 0px;
  
} */


/* .paginate_numbers .paginate_button {
    border-radius: 0px !important;
} */
/* .paginate_button:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}
.paginate_button:last-child {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
 
} */

div.dataTables_wrapper div.dataTables_paginate {
    margin: 14px 0px !important;
   
}


.paginate_numbers .paginate_button.page-item.paginate_number{

}

 .paginate_button.page-item.undefined:first-child{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
 
}

.paginate_button.page-item.undefined:last-child {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
}

a.paginate_button.page-item.undefined:hover{
    color: #6c757d !important;
}

ul.pagination2{
    padding-left: 0 !important;
}

.form-control-calander {
    background-color:white !important;
	border-radius: .25rem !important;
	border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    
}


.form-control-file {
    background-color:white !important;
	border-radius: 0 !important;
/* 	border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important; */
    
}
.form-control-label {
	border-radius: .25rem !important;
	border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    
}