/*------------------------------------------------------------------
[ Table of contents ]
1. Core Styles
2. Typography
3. Header
4. Menu
5. About
6. candidats
7. Portfolio
8. votes_head
9. Contact
10. Footer
11. Media queries
------------------------------------------------------------------ */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,900|Open+Sans:300,400,600,700');

@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900');

*::selection {
background:#fff;
color:#1e1b1a;
}

*::-moz-selection {
background:#fff;
color:#1e1b1a;
}

*::-webkit-selection {
background:#fff;
color:#1e1b1a;
}

#acces_votes {
    margin: 0 auto;
    width: 150px;
    color: #FFF;
    font-size: 18px;
    background-color: #d3422a;
    padding: 15px;
    border-radius: 10px;
}

#acces_votes:hover {
    margin: 0 auto;
    width: 150px;
    color: #d3422a;
    font-size: 18px;
    background-color: #FFF;
    border: 1px solid #d3422a;
    padding: 15px;
    border-radius: 10px;
}

  .box{
   
    text-align:center;
    padding:15px;
    
  }

  .center-boxes div{
     margin:0 -4% 0 4%;
  }


/* 1. Core Styles */
.wrapper {
    position: relative;
}

.section {
    padding: 100px 0;
}

.section .h2-wrap {
    display: block;
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.section .h2-wrap .letter {
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    font-size: 250px;
    color:#f7f7f7;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
}



.section .h2-wrap h2 {
    display: inline-block;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1270px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
}

h3 {
    text-transform: uppercase;
}

h4 {
    color: #d3422a;
    text-transform: uppercase;
    font-weight: 600;
}

h6 {
    color: #d3422a;
    text-transform: uppercase;
    font-size: 14px !important;
}



@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}

/* 2. Typography */
p {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Rubik", sans-serif;
}

h1 {
    font-size: 65px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
}

h3 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}

h4 {
    font-size: 26px;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 12px;
}

h5 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: bold;
}

h6 {
    font-size: 18px;
    font-weight: 400 !important;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Typography media queries */
@media (max-width: 991px) {
    h1, .h1 {
        font-size: 54px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    h1, .h1 {
        font-size: 40px;
    }

}

@media (max-width: 550px) {
    h1, .h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 26px;
    }

}

@media (max-width: 380px) {
    h1, .h1 {
        font-size: 32px;
    }
}

/* 3. Header */
.header {
    width: 100%;
    height: 100vh;
    min-height: 450px;
    -webkit-background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #fff;
}

.header h4 {
    min-height: 46px;
    display: inline;
}

.header .typed-cursor {
    font-size: 30px;
}

#logo_cover {
    margin: 50px;
}



@-webkit-keyframes down-bounce {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    30% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
    50% {
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
    }
    70% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
}

@keyframes down-bounce {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    30% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
    50% {
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
    }
    70% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
}

.down-bounce {
    -webkit-animation: down-bounce 4s infinite;
    animation: down-bounce 4s infinite;
}

.arrow-wrap {
    padding: 0;
    left: 50%;
    margin: 100px 0 0 0px;
}

.arrow {
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 2rem;
    display: block;
    text-align: center;
    text-decoration: none;
}

.arrow:hover, .arrow:focus {
    text-decoration: none;
    color: #d3422a;
}

em {
    font-style: italic;
}

a {
 text-decoration: none;
 color: black; 
}

/* 4. Menu */
.nav {
    position: fixed;
    opacity: 0;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 60px;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    padding-top: 12px;
}

.nav.fixed {
    background-color: #1e1b1a;
    padding-top: 0;
    opacity: 1;
}

.nav .nav-flex {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nav .logo {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav .logo a {
    font-size: 32px;
    color: #EEFFFC;
    font-family: "Open Sans", sans-serif;
}

.nav .menu-icon-wrap {
    background: #1e1b1a;
    width: 35px;
    height: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
    right: 15px;
    top: 15px;
    z-index: 200;
    display: none;
}

.nav .menu-icon-wrap .menu-icon {
    cursor: pointer;
}

.nav .menu-icon-wrap .menu-icon .line {
    width: 25px;
    height: 2px;
    background-color: #ecf0f1;
    display: block;
    margin: 4px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.nav .menu-icon-wrap .menu-icon.active .line:nth-child(2) {
    opacity: 0;
}

.nav .menu-icon-wrap .menu-icon.active .line:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}

.nav .menu-icon-wrap .menu-icon.active .line:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
}

.nav .menu, .nav .menu2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav .menu li, nav .menu2 li {
    margin-right: 25px;
}

.nav .menu li:last-child, .nav .menu2 li:last-child  {
    margin-right: 0;
}

.nav .menu li a, .nav .menu2 li a  {
    color: #EEFFFC;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.nav .menu li a:hover, .nav .menu2 li a:hover {
    border-bottom: 1px solid #d3422a;
}

.selected {
   border-bottom: 1px solid #d3422a !important;
}

/* 5. About */

#about {
    background-color: #FFF;
}

#about img {
    width: 100px;
    margin-bottom: -100px;
}

#about .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#about .text-block {
    margin: 100px 0 0 0;
    padding: 50px 50px 0 50px;
}

#about h2, #candidats h2, #ambassadeur h2 {
    color: #d3422a
}



.ligne {
           background : transparent;
           border-color : #d3422a;
           border-width : 0 0 6px;
           border-style : solid;
           width: 50px;
           position: absolute;
           margin-left: 50%;
           left: -25px;
           z-index: 1 !important;
}

/* 5 bis. Témoignages */

#categories {

}

#categories h3 {
    font-size: 14px !important;
}

#categories h6 {
    color: #000 !important;
    font-weight: normal !important;
}

#categories p {
    padding: 0 30px 0 30px;
}


/* 6. candidats */

#filtre {
    margin: 0px 0 30px 5px;
}

#filtre ul {
    position: relative;
    margin: 0 auto;
    width: 440px;
}

#reservation {
    -webkit-animation: 5s ease 0s normal forwards 1 fadein;
    animation: 5s ease 0s normal forwards 1 fadein;
    cursor: pointer;
    font-size: 16px !important;
    color: #FFF !important;
}

#reservation:hover {
    border-bottom: 1px solid #d3422a;
}

@keyframes fadein{
    0% { opacity:0; }
    66% { opacity:0; }
    100% { opacity:1; }
}

@-webkit-keyframes fadein{
    0% { opacity:0; }
    66% { opacity:0; }
    100% { opacity:1; }
}

#categorie li, #reservation {
    font: 12px "Rubik", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px;
    float: left;
    color: #d3422a;

}

#categorie li a{
    color: #d3422a;
    display: block;
}

#categorie li a:hover {
    border-bottom: 1px solid #d3422a;
}

#cat2, #cat3, #cat4, #cat5 {
    display: none;
}

.stars_icon {
    
    margin-bottom: 20px;
}

.circle_cat {
    display: none;
    position: absolute;
}

#candidats h3, #candidats h6 {
    color: #000 !important;
}

#candidats h3 {
    font-size: 22px !important;
}

#candidats h6 {
    font-weight: normal !important;

}

#candidats {
    margin-top: -150px;
    background: #FFF;
    text-align: center;
}



#candidats .service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

#candidats .service-item .round {
    width: 130px;
    height: 130px;
    background: #127EAC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

#candidats .service-item .round span {
    color: #EEFFFC;
    font-size: 45px;
}

#candidats .service-item h6, #candidats .service-item p {
    color: #0C0C0C;
    max-width: 100%;
}

/* Votes */

#votes {
    background: #FFF;
}

#votes_texte {
    margin-top: -50px;
}



#votes_head .letter, #contact_head .letter {
    opacity: 0.2 !important;
}

#votes_head h2, #contact_head h2 {
    color: #d3422a;
}


.baseline {
    text-align: center;
    font-weight: 300 !important;
    text-align: center;
    position: relative;
}

.baseline h6 {
    color: #000;
}

#qualifio_insert_place_794170 {
    margin: 0 auto;
    text-align: center;
}

/* Partenaires */

#partenaires {
    width: 300px;
    position: relative;
    background: #FFF !important;
    margin: 0 auto;
    margin-bottom: 50px;
}

#partenaires_logo li {
    float: left;
    margin-right: 15px;
}

#partenaires_verviers {
    width: 580px;
    position: relative;
    background: #FFF !important;
    margin: 0 auto;
    margin-bottom: 50px;
}


/* 7. Portfolio */
#portfolio .filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-bottom: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#portfolio .filters .filter {
    display: block;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    margin: 0 10px;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 0;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
}

#portfolio .filters .filter.active {
    border-bottom: 1px solid #127EAC;
    color: #127EAC;
}

#portfolio .filters .filter:hover {
    border-bottom: 1px solid #127EAC;
}

#portfolio .portfolio-grid {
    margin-top: 80px;
}

#portfolio .portfolio-item {
    margin-bottom: 20px;
    padding: 0;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    display: block;
}

#portfolio .portfolio-item .img-wrap {
    overflow: hidden;
    position: relative;
    display: block;
}

#portfolio .portfolio-item .img-wrap img {
    display: block;
    min-width: 100%;
    width: 100% !important;
    position: relative;
    max-width: 100.5%;
    height: auto;
    -webkit-transition: opacity .5s, -webkit-transform 0.5s;
    transition: opacity .5s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, opacity .5s;
    transition: transform 0.5s, opacity .5s;
    transition: transform 0.5s, opacity .5s, -webkit-transform 0.5s;
    -webkit-backface-visibility: hidden;
}

#portfolio .portfolio-item .img-wrap .preview {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    padding: 10px;
    text-align: center;
}

#portfolio .portfolio-item .img-wrap .preview:hover {
    opacity: 1;
}

#portfolio .portfolio-item .img-wrap:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* 8. votes_head  */
#votes_head {
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

#votes_head .ligne {
    border-color : #d3422a;

}

#votes_head .votes_head-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#votes_head .votes_head-flex a {
    border: 2px solid #EEFFFC;
    border-radius: 50%;
    margin: 50px 15px;
    height: 75px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 75px;
    position: relative;
}

#votes_head .votes_head-flex a span {
    font-size: 32px;
    color: #EEFFFC;
}

/* 9. Contact */
#contact .container {
    padding-top: 50px;
}

#contact .form {
    font-family: "Open Sans", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#contact .form input {
    padding: 10px 15px;
    line-height: 24px;
    margin-bottom: 15px;
    border: 2px solid #3C8DAF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#contact .form textarea {
    padding: 15px;
    height: 180px;
    resize: none;
    margin-bottom: 15px;
    border: none;
    border: 2px solid #3C8DAF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#contact .form button[type="submit"] {
    max-width: 140px;
    display: block;
    border: 2px solid #3C8DAF;
    height: 40px;
    cursor: pointer;
    background: #3C8DAF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    color: #EEFFFC;
    font-weight: 600;
}

#contact .form button[type="submit"]:hover {
    border: 1px solid #127EAC;
    background: #127EAC;
    color: #EEFFFC;
}

#contact #map {
    width: 100%;
    height: 418px;
    border: 2px solid #3C8DAF;
}

/* 10. Footer */
.footer {
    width: 100%;
}

.footer a {
    color: #EEFFFC;
}

.footer .top {
    padding: 35px 0;
    background: #191919;
    color: #EEFFFC;
}

.footer .top h5 {
    margin-bottom: 20px;
}

.footer .top .fa {
    margin-right: 6px;
}

.footer .blog-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer .blog-post .img-wrap {
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: relative;
    margin-right: 15px;
}

.footer .blog-post .img-wrap img {
    width: 100%;
    height: auto;
    min-height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.footer .blog-post .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer .blog-post .info h6 {
    text-transform: none;
    font-size: 18px;
    margin-bottom: 0;
}

.footer .blog-post .info a {
    color: #EEFFFC;
}

.footer .blog-post .info p {
    margin: 0;
}

.footer .bot {
    background: #0C0C0C;
}

.footer .bot .copy {
    color: #EEFFFC;
    font-size: 14px;
    padding: 20px 0;
}

.footer .bot .copy a {
    color: #127EAC;
}

.footer .text-widget p {
    max-width: 86%;
}

/* 11. Media queries */
@media (max-width: 991px) {
    .nav .nav-flex {
        padding: 0px 25px;
    }

    #about .img-block img {
        display: block;
        margin: 0 auto;
    }

    #contact .form {
        margin-bottom: 100px;
    }

    .footer .widget {
        margin-bottom: 30px;
    }

    .footer .widget p {
        max-width: 100%;
    }

    #votes_head .votes_head-flex a {
        margin: 10px;
    }
}

@media (max-width: 767px) {
    .header, #votes_head {
        background-attachment: scroll;
    }

    .nav {
        padding-top: 0;
        background-color: #1e1b1a;
    }

    .nav .container {
        padding: 0;
    }

    .nav .nav-flex {
        padding: 0px;
    }

    .nav .logo a {
        font-size: 26px;
        margin-left: 20px;
    }

    .nav .menu-icon-wrap {
        display: block;
        margin-right: 20px;
    }

    .nav .menu, .nav .menu2 {
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 100%;
        background: #1e1b1a;
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        height: auto;
        padding: 20px 15px;
    }

    .nav .menu li, .nav .menu2 li {
        line-height: 2;
    }

    #about .text-block {
        padding: 5px;
        margin-top: 35px;
    }
}

@media (max-width: 1160px) {
    #jacques {
        width: 500px !important;
        margin-bottom: -100px !important;
    }

    #jacques_text {
        margin-top: -10px !important;
       margin-bottom: -50px !important;
    }

    
   
}

@media (max-width: 1000px) {
    #jacques {
        width: 400px !important;
        margin-bottom: -50px !important;
    }

    #jacques_text {
        margin-top: -10px !important;
        margin-bottom: -70px !important;
    }

     #candidats .service-item {
       margin-bottom: 20px;   
    }

    .center-boxes div:last-child {
        margin-bottom: 20px;
     
    }

    
   
}

@media (max-width: 730px) {
    #jacques {
        width: 400px !important;
         margin-bottom: 0px !important;
    }

    #jacques_text {
        margin-top: -10px !important;
        margin-bottom: -70px !important;
    }

      
    
   
}

@media (max-width: 500px) {
    #jacques {
        width: 200px !important;
         margin-bottom: 0px !important;
    }

    #jacques_text {
        margin-top: -10px !important;
        margin-bottom: -70px !important;
    }

    #jacques_text p, #categories p {
        font-size: 12px !important;
    }

    #categories p {
    padding: 0px !important;
    margin-bottom: 50px; 
}

    #jacques_text h4 {
        font-size: 22px !important;
    }

    #jacques_text h6, #categories h6 {
       font-size: 12px !important;
    }

    .rel-wrp h4 {
        font-size: 22px !important;
        padding: 10px;
    }

    #categories img {
        width: 100px !important;
    }

    #categories h3 {
        font-size: 22px !important;
    }

    #filtre ul {
        width: 235px !important;
    }
  
    #filtre ul li:nth-child(4){
        clear: left;
        padding-left: 25px;
    }

    #filtre ul li a:hover {
        border: none;
        color: #FFF;
    }

    .circle_cat {
        width: 90px !important;
        margin-right: -50px;
    }

    .stars_icon {
        width: 120px !important;
    }

  

    .center-boxes {
        margin-left: -30px; 
    }

    
    #partenaires_verviers {
        margin-left: -50px;
    }

    #partenaires_verviers #partenaires_logo li:first-child img {
        width: 100px;
    }

     #partenaires_verviers #partenaires_logo li:nth-child(2) img {
        width: 100px;
        margin-top: -5px;
    }


    #partenaires_verviers #partenaires_logo li:nth-child(3)  img {
        width: 100px;
    }



    #contact .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (orientation: landscape) {
    #logo_cover {max-height: 70%; margin-top: 100px; }
}

.col-xs-5th-1, .col-xs-5th-2, .col-xs-5th-3, .col-xs-5th-4 {
  float: left;
}

.col-xs-5th-5 {
  float: left;
  width: 100%;
}

.col-xs-5th-4 {
  width: 80%;
}

.col-xs-5th-3 {
  width: 60%;
}

.col-xs-5th-2 {
  width: 40%;
}

.col-xs-5th-1 {
  width: 20%;
}

.col-xs-5th-pull-5 {
  right: 100%;
}

.col-xs-5th-pull-4 {
  right: 80%;
}

.col-xs-5th-pull-3 {
  right: 60%;
}

.col-xs-5th-pull-2 {
  right: 40%;
}

.col-xs-5th-pull-1 {
  right: 20%;
}

.col-xs-5th-pull-0 {
  right: auto;
}

.col-xs-5th-push-5 {
  left: 100%;
}

.col-xs-5th-push-4 {
  left: 80%;
}

.col-xs-5th-push-3 {
  left: 60%;
}

.col-xs-5th-push-2 {
  left: 40%;
}

.col-xs-5th-push-1 {
  left: 20%;
}

.col-xs-5th-push-0 {
  left: auto;
}

.col-xs-5th-offset-5 {
  margin-left: 100%;
}

.col-xs-5th-offset-4 {
  margin-left: 80%;
}

.col-xs-5th-offset-3 {
  margin-left: 60%;
}

.col-xs-5th-offset-2 {
  margin-left: 40%;
}

.col-xs-5th-offset-1 {
  margin-left: 20%;
}

.col-xs-5th-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .col-sm-5th-1, .col-sm-5th-2, .col-sm-5th-3, .col-sm-5th-4 {
    float: left;
  }

  .col-sm-5th-5 {
    float: left;
    width: 100%;
  }

  .col-sm-5th-4 {
    width: 80%;
  }

  .col-sm-5th-3 {
    width: 60%;
  }

  .col-sm-5th-2 {
    width: 40%;
  }

  .col-sm-5th-1 {
    width: 20%;
  }

  .col-sm-5th-pull-5 {
    right: 100%;
  }

  .col-sm-5th-pull-4 {
    right: 80%;
  }

  .col-sm-5th-pull-3 {
    right: 60%;
  }

  .col-sm-5th-pull-2 {
    right: 40%;
  }

  .col-sm-5th-pull-1 {
    right: 20%;
  }

  .col-sm-5th-pull-0 {
    right: auto;
  }

  .col-sm-5th-push-5 {
    left: 100%;
  }

  .col-sm-5th-push-4 {
    left: 80%;
  }

  .col-sm-5th-push-3 {
    left: 60%;
  }

  .col-sm-5th-push-2 {
    left: 40%;
  }

  .col-sm-5th-push-1 {
    left: 20%;
  }

  .col-sm-5th-push-0 {
    left: auto;
  }

  .col-sm-5th-offset-5 {
    margin-left: 100%;
  }

  .col-sm-5th-offset-4 {
    margin-left: 80%;
  }

  .col-sm-5th-offset-3 {
    margin-left: 60%;
  }

  .col-sm-5th-offset-2 {
    margin-left: 40%;
  }

  .col-sm-5th-offset-1 {
    margin-left: 20%;
  }

  .col-sm-5th-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-5th-1, .col-md-5th-2, .col-md-5th-3, .col-md-5th-4 {
    float: left;
  }

  .col-md-5th-5 {
    float: left;
    width: 100%;
  }

  .col-md-5th-4 {
    width: 80%;
  }

  .col-md-5th-3 {
    width: 60%;
  }

  .col-md-5th-2 {
    width: 40%;
  }

  .col-md-5th-1 {
    width: 20%;
  }

  .col-md-5th-pull-5 {
    right: 100%;
  }

  .col-md-5th-pull-4 {
    right: 80%;
  }

  .col-md-5th-pull-3 {
    right: 60%;
  }

  .col-md-5th-pull-2 {
    right: 40%;
  }

  .col-md-5th-pull-1 {
    right: 20%;
  }

  .col-md-5th-pull-0 {
    right: auto;
  }

  .col-md-5th-push-5 {
    left: 100%;
  }

  .col-md-5th-push-4 {
    left: 80%;
  }

  .col-md-5th-push-3 {
    left: 60%;
  }

  .col-md-5th-push-2 {
    left: 40%;
  }

  .col-md-5th-push-1 {
    left: 20%;
  }

  .col-md-5th-push-0 {
    left: auto;
  }

  .col-md-5th-offset-5 {
    margin-left: 100%;
  }

  .col-md-5th-offset-4 {
    margin-left: 80%;
  }

  .col-md-5th-offset-3 {
    margin-left: 60%;
  }

  .col-md-5th-offset-2 {
    margin-left: 40%;
  }

  .col-md-5th-offset-1 {
    margin-left: 20%;
  }

  .col-md-5th-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-5th-1, .col-lg-5th-2, .col-lg-5th-3, .col-lg-5th-4 {
    float: left;
  }

  .col-lg-5th-5 {
    float: left;
    width: 100%;
  }

  .col-lg-5th-4 {
    width: 80%;
  }

  .col-lg-5th-3 {
    width: 60%;
  }

  .col-lg-5th-2 {
    width: 40%;
  }

  .col-lg-5th-1 {
    width: 20%;
  }

  .col-lg-5th-pull-5 {
    right: 100%;
  }

  .col-lg-5th-pull-4 {
    right: 80%;
  }

  .col-lg-5th-pull-3 {
    right: 60%;
  }

  .col-lg-5th-pull-2 {
    right: 40%;
  }

  .col-lg-5th-pull-1 {
    right: 20%;
  }

  .col-lg-5th-pull-0 {
    right: auto;
  }

  .col-lg-5th-push-5 {
    left: 100%;
  }

  .col-lg-5th-push-4 {
    left: 80%;
  }

  .col-lg-5th-push-3 {
    left: 60%;
  }

  .col-lg-5th-push-2 {
    left: 40%;
  }

  .col-lg-5th-push-1 {
    left: 20%;
  }

  .col-lg-5th-push-0 {
    left: auto;
  }

  .col-lg-5th-offset-5 {
    margin-left: 100%;
  }

  .col-lg-5th-offset-4 {
    margin-left: 80%;
  }

  .col-lg-5th-offset-3 {
    margin-left: 60%;
  }

  .col-lg-5th-offset-2 {
    margin-left: 40%;
  }

  .col-lg-5th-offset-1 {
    margin-left: 20%;
  }

  .col-lg-5th-offset-0 {
    margin-left: 0%;
  }
}
