:root{
    --gold:#d3a149;
    --grey: #626262;
    --light-grey:#e6e6e6;
    --ultra-light-grey:#f7f7f7;
    --light-gold:#F6ECDB;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}



body{
    font-family: Arial;
    color: var(--grey);
}

h1,h2,h3,h4,h5,h6{
    font-family: Arial;
    font-weight: bold;
}

a{
    color: var(--gold);
}

.content ul{
    padding: 0;
}

.content ul li{
    list-style-type: none;
    color: var(--grey);
}

.content ul li:before{
    content: " ";
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    color: var(--gold);
    display: inline-block;
    margin-right: 10px;
}

.content h2{
    font-size: 24px;
    margin-bottom: 20px;
}

.content span{
    color: var(--gold);
    line-height: 32px;
    margin-bottom: 20px;
    display: block;
}

.btn-primary{
    background: var(--gold);
    border: 0;
    border-radius: 20px;
    padding: 9px 21px 11px;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: Arial;
font-weight :bold;
    text-transform: uppercase;
}

.btn-secondary{
    background: white;
    border: 0;
    border-radius: 20px;
    padding: 9px 21px 11px;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: Arial;
font-weight :bold;
    color: var(--gold);
    text-transform: uppercase;
}

.btn-third{
    text-decoration: none;
    text-transform: uppercase;
    color: var(--grey);
    border: 1px solid var(--gold);
    padding: 5px 7px;
    margin: 0 5px;
    font-size: 15px;
    border-radius: 0;
    text-transform: uppercase;
}

.btn-fourth{
    background: var(--grey);
    border: 0;
    border-radius: 20px;
    padding: 9px 21px 11px;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: Arial;
    text-transform: uppercase;
    color: white;
}

.btn-fourth:hover{
    color: white;
}

.btn-primary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
}

.btn-video{
    background: var(--gold);
    border: 0;
    border-radius: 20px;
    padding: 9px 21px 11px;
    font-size: 17px;
    letter-spacing: 1px;
    font-family: Arial;
    text-transform: uppercase;
    color: white;
}

.btn-video:hover{
    color: white;
}

.btn-third:focus{
    box-shadow: none;
}

.btn-third.active{
    background: var(--gold);
    color: white;
}


header{
    box-shadow: 0px 0px 24px rgb(0,0,0,0.1);
}

header #top-bar{
    transition: all 0.3s;
}

header.fixed-header{
    position: fixed;
    width: 100%;
    z-index: 999;
    animation: slideInDown;
    animation-duration: 0.5s;
}

header.fixed-header #top-bar{
    /*display: none !important;*/
}

#top-bar{
    height: 60px;
    background: var(--gold);
    color: white;
    font-size: 15px;
	line-height:1.7 !important;
}

#top-bar span{
    display: inline-flex;
    vertical-align: middle;
    margin-right: 20px;
    align-items: center;
}

#top-bar a{
    color: white;
    text-decoration: none;
}

#top-bar span i{
    font-size: 17px;
    margin-right: 10px;
}

#top-bar #top-socials a{
    font-size: 14px;
    margin-left: 10px;
	margin-top:10px;
}

#top-menu{
    background: white;
}

#top-menu .container{
    height: 113px;
}

#top-menu nav ul{
    padding: 0;
    margin: 0;
}

#top-menu nav ul li{
    display: inline-block;
    margin-left: 27px;
    position: relative;
}

#top-menu nav ul li a:not(.btn){
    color: var(--grey);
    text-decoration: none;
    font-size: 15px;
    position: relative;
    display: block;
    height: 30px;
}

#top-menu nav ul li i{
    color: var(--grey);
    cursor: pointer;
}

#top-menu nav ul li i:hover{
    color: var(--gold);
}

#top-menu nav ul li:hover a:not(.btn){
    color: var(--gold);
}

#top-menu nav ul li:hover a:after{
    content: " ";
    display: block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-left: -3px;
    bottom: 0;
}

#top-menu nav ul li:after{
    content: " ";
    display: block;
    height: 20px;
    width: 100%;
    position: absolute;
}

#top-menu nav ul ul{
    position: absolute;
    background: white;
    width: 200px;
    background: var(--gold);
    left: 50%;
    margin-left: -100px;
    top: 45px;
    visibility: hidden;
    z-index: 9;
}

#top-menu nav ul ul:before{
    border-right : 10px solid transparent;
    border-bottom : 10px solid var(--gold);
    border-left : 10px solid transparent;
    content: " ";
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
}

#top-menu nav ul ul li{
    padding: 0;
    margin: 0;
    display: block;
}

#top-menu nav ul ul li a{
    display: block !important;
    padding: 10px;
    height: auto !important;
    text-align: center;
    color: white !important;
    border-bottom: 1px solid white;
}

#top-menu nav ul ul li:last-child a{
    border-bottom: 0;
}

#top-menu nav ul ul ul{
    position: absolute;
    width: 200px;
    background: var(--gold);
    left: 100%;
    top: 0;
    margin-left: 0;
    background: white;
    visibility: hidden;
    border: 1px solid var(--gold);
}

#top-menu nav ul ul ul:before{
    display: none;
}

#top-menu nav ul ul ul li{
    border-bottom: 1px solid var(--gold);
}

#top-menu nav ul ul ul li:last-child{
    border-bottom: 0;
}

#top-menu nav ul ul ul li a{
    color: var(--gold) !important;
}

#top-menu nav ul li:hover li a:after{
    display: none !important;
}

#top-menu nav ul li:hover > ul{
    visibility: visible;
}

#banner-home{
    background: url(../images/banner-home.jpg) no-repeat center;
    background-size: cover;
}

#content-banner{
    height: 700px;
    position: relative;
}

#content-banner a:not(.btn-video){
    position: absolute;
    left: 50%;
    margin-left: -77px;
    bottom: -19px;
}


.auto-menu ul{
    margin: 0;
    padding: 0;
}

.auto-menu ul li{
    list-style-type: none !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid var(--light-grey) !important;
	line-height:30px !important;
}

.auto-menu ul li a{
    color: var(--gold);
    text-decoration: none;
    font-size: 18px !important;
    padding-left: 10px;
    display: block;
    border-left: 3px solid var(--gold) !important;
	line-height:30px !important;
}

.auto-menu ul li:last-child{
    border-bottom: 0;
}


.auto-menu ul li::before {
    content: none !important;
}

.auto-menu a::before {
    content: none !important;
}

.auto-menu ul li {
  list-style-type: none; /* Removes bullet points from list items */
}

.title-container{
    position: relative;
    padding-bottom: 50px;
}

.title-container h1,
.title-container h2{
    font-size: 31px;
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: none;
    color: #d3a149;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.title-container h1:after,
.title-container h2:after{
    content: " ";
    background: var(--light-grey);
    width: 44px;
    height: 4px;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}



.title-container .title-text-bg{
    font-family: Arial;
font-weight :bold;
    color: var(--ultra-light-grey);
    font-size: 100px;
    position: absolute;
    top: -15px;
    line-height: 88px;
    z-index: 1;
}

#intervention h2{
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
}

.intervention h2{
    font-size: 18px !important;
    margin-bottom: 30px !important;
}

#intervention p{
    color: var(--grey);
}

#intervention hr{
    width: 44px;
    height: 4px;
    background: var(--grey);
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

#intervention ul{
    margin: 0;
    padding: 0;
    text-align: center;
}

#intervention ul li{
    list-style-type: none;
    display: inline-flex;
    vertical-align: top;
    margin-bottom: 15px;
}

#intervention ul li a{
    text-decoration: none;
    text-transform: uppercase;
    color: var(--grey);
    border: 1px solid var(--gold);
    padding: 5px 7px;
    margin: 0 5px;
    font-size: 15px;
}

.interventions-section{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    scroll-margin-top:150px;
}

.interventions-section .container,
#doctors .container,
#top-banner .container{
    position: relative;
    z-index: 2;
}

.interventions-section h2{
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 60px;
}

.interventions-section h3{
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 25px;
}

.interventions-section p{
    font-size: 16px;
    margin-bottom: 30px;
}

.interventions-section-gold:before,
.interventions-section-grey:before{
    content: " ";
    opacity: 0.8;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.interventions-section-gold{
    background-image: url(../images/intervention-bg-1.jpg);
    color: white;

}

.interventions-section-gold:before {
    background: var(--gold);
}

.interventions-section-white{
    color: var(--grey);
    background: white;
    background-image: none !important;
}

.interventions-section-white h2,
.interventions-section-grey h2{
    color: var(--gold);
}

.interventions-section-grey{
    background-image: url(../images/intervention-bg-1.jpg);
    color: var(--grey);
}

.interventions-section-grey:before {
    background: var(--light-grey);
    opacity: 0.9;
}

#doctors{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    background-image: url(../images/cabinet-bg.jpg);
    color: white;
}

#doctors:before{
    content: " ";
    opacity: 0.8;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--gold);
}

.page-template-template-home #doctors:before{
    background: var(--light-grey);
}

.page-template-template-home #doctors h2{
    color: var(--gold);
}

.page-template-template-home #doctors .container > p{
    color: var(--grey);
}

#doctors h2{
    text-align: center;
}

#doctors span{
    text-align: center;
    display: block;
    font-size: 20px;
}

#doctors p{
    text-align: center;
}

.doctor-infos{
    background: white;
    border-radius: 0 0 7px 7px;
    text-align: center;
}

.doctor-picture{
    display: block;
    border-radius: 7px 7px 0 0;
    overflow: hidden;
}

.doctor-picture img{
    width: 100%;
    height: auto;
    filter: grayscale(100%);
}

.doctor-infos a{
    color: var(--gold);
    text-decoration: none;
    font-size: 20px;
}

.doctor-infos span{
    color: var(--grey);
    font-size: 15px !important;
}

.doctor-infos p{
    font-size: 16px;
    color: var(--bs-gray-dark);
    margin-top: 10px;
}

.doctor-picture:hover img,
.post-image:hover img,
#news article .col-3 a:hover img{
    transform: scale(1.2);
    transition: all 0.3s;
}

.post-image{
    border-radius: 7px 7px 0 0;
    display: block;
    overflow: hidden;
}

.post-image img{
    width: 100%;
    height: auto;
    filter: grayscale(100%);
}

.post-summary{
    color: white;
    background: var(--gold);
    border-radius: 0 0 7px 7px;
}

.post-summary a{
    color: white;
    text-decoration: none;
}

.post-summary h3{
    font-size: 16px;
}

.post-summary span,
article .col-9 span{
    font-size: 13px;
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
}

#news article .col-3 a{
    overflow: hidden;
    display: block;
    border-radius: 7px;

}

#news article .col-3 img{
    width: 100%;
    height: auto;
    filter: grayscale(100%);
}

#news article .col-9 h3 a{
    color: var(--grey);
    font-size: 16px;
    text-decoration: none;
}

#news article .col-9 h3 a{
    text-decoration: none;
}

article .col-9{
    color: var(--gold);
}

#footer{
    background: var(--ultra-light-grey);
}

#footer-infos a{
    display: block;
    margin-bottom: 10px;
    color: var(--bs-gray-dark);
    text-decoration: none;
    font-size: 14px;
}

#footer-infos a i{
    color: var(--gold);
    margin-right: 10px;
}


.footer-title{
    display: block;
    font-family: Arial;
font-weight :bold;
    margin-bottom: 20px;
    font-size: 20px;
}

#footer-hours table{
    color: var(--gold);
}

#footer-hours table tr td:nth-child(2){
    font-family: Arial;
font-weight :bold;
}

#footer-hours table tr td:nth-child(3){
    text-align: right;
}

.social-summary{
    margin-bottom: 20px;
}

.social-summary img{
    border-radius: 50%;
    width: 100%;
    height: auto;
}

.social-summary div{
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.social-summary span{
    display: block;
    color: var(--bs-gray-dark);
    font-size: 16px;
    margin-bottom: 10px;
}

#copyright{
    height: 88px;
    color: var(--grey);
}

#copyright a{
    color: var(--bs-gray-dark);
    text-decoration: none;
}

#bottom-socials a{
    color: var(--gold);
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
}

#top-banner{
    background: url(../images/cabinet-bg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    color: white;
}

#top-banner .container{
    height: 300px;
}

#top-banner:before{
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: black;
    opacity: 0.3;
}

#breadcrumb ol{
    margin-bottom: 0;
}

#breadcrumb{
    border-bottom: 1px solid var(--light-grey);
}

#breadcrumb li{
    color: var(--gold);
    font-size: 14px;
}

#breadcrumb a{
    color: var(--grey);
    text-decoration: none;
}

#breadcrumb .breadcrumb-item+.breadcrumb-item::before{
    content: ">";
    color: var(--grey);
    padding: 0 12px;
}

#breadcrumb .breadcrumb-item+.breadcrumb-item{
    padding: 0;
}

#content p{
    color: var(--grey);
    font-size: 16px;
}

#content img{
    box-shadow: 60px 59px 0px 0px var(--light-grey);
}

#content img{
    display: block;
    margin-bottom: 60px;
}

#doctor-content p{
    color: var(--grey);
    font-size: 16px;
}

#doctor-content h3{
    font-size: 24px;
    margin-bottom: 25px;
}

#doctor-content span{
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

#doctor-content hr{
    height: 3px;
    background: var(--gold);
    opacity: 1;
    margin-top: 40px;
    margin-bottom: 40px;
}

.accordion-button{
    background: var(--ultra-light-grey);
    color: var(--gold);
    font-family: Arial;
font-weight :bold;
}

.accordion-button:not(.collapsed){
    background: var(--gold);
    box-shadow: none;
    color: white;
    font-family: Arial;
font-weight :bold;
}

.accordion-item{
    border: 0;
    margin-bottom: 20px;
}

.accordion-button:focus{
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after{
    background-image: url(../images/chevron.svg);
}

.accordion-item p,
.accordion-item ul li{
    color: var(--grey);
    margin-bottom: 5px;
}

#portfolio img{
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 25px;
    cursor: pointer;
}

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

#portfolio h2,
#portfolio h3{
    text-align: center;
    font-size: 19px;
    cursor: pointer;
}

#portfolio p{
    text-align: center;
    color: var(--grey);
    font-size: 13px;
    cursor: pointer;
}

#blog article img{
    width: 100%;
    height: auto;
}

#blog article h2{
    font-size: 25px;
    scroll-margin-top: 113px;
}

#blog article h2 a{
    text-decoration: none;
    color: black;
}

#blog article .metas,
#blog article .metas a{
    color: var(--gold);
    text-decoration: none;
}

#blog article .metas span{
    display: inline-block;
    margin-right: 25px;
    font-size: 12px;
    font-family: Arial;
font-weight :bold;
}

#blog article .metas i{
    margin-right: 10px;
    font-size: 14px;
}

#blog article p{
    color: var(--grey);
}

.pagination li{
    margin-right: 10px;
    font-size: 12px;
    font-family: Arial;
font-weight :bold;

}

.pagination li a{
    border: 0;
    border-radius: 50% !important;
    background: var(--light-grey);
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
}

.page-item.active .page-link{
    border: 0;
    border-radius: 50% !important;
    background: var(--gold);
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.page-link:hover{
    color: var(--gold);
}

.sidebar{
    background: var(--ultra-light-grey);
}

.sidebar h2,
.sidebar .h2{
    font-size: 17px;
    text-transform: uppercase;
    font-family: Arial;
font-weight :bold;
}

.widget-silo ul,
.widget-intervention ul{
    margin: 0;
    padding: 0;
}

.widget-silo ul li,
.widget-intervention ul li{
    list-style-type: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-grey);
}

.widget-silo ul li a,
.widget-intervention ul li a{
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    padding-left: 10px;
    display: block;
    border-left: 3px solid var(--gold);
}

.widget-silo ul li:last-child,
.widget-intervention ul li:last-child{
    border-bottom: 0;
}

.widget-silo ul li.title_lvl3 a,.widget-silo ul li.title_lvl4 a{
    color: black;
}

.widget-silo ul li.title_lvl4 a{
    color: var(--grey);
}

.widget-intervention ul li a{
    border: 0;
    padding: 0;
}

.widget-intervention ul li a:before{
    content: " ";
    display: inline-block;
    margin-right: 10px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.widget-articles h3{
    font-size: 16px;
    color: black;
}

.metas span,
.metas span a{
    color: var(--grey) !important;
    font-weight: normal !important;
}

#contact-infos{
    text-align: center;
}

#contact-infos i{
    font-size: 40px;
    color: var(--gold);
}

#contact-infos span{
    display: block;
    text-align: center;
    color: var(--gold);
    font-size: 20px;
    margin: 20px 0;
    
}

#contact-infos a{
    color: var(--gold);
    text-decoration: none;
}

#map iframe{
    height: 460px;
    width: 100%;
}

#contact-form .h2{
    font-family: Arial;
font-weight :bold;
    
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea{
    border-radius: 0;
    box-shadow: 0px 1px 0px 0px var(--light-grey);
    height: 50px;
    color: var(--grey);
}

#contact-form textarea{
    height: 150px;
}

#contact-form ::placeholder {
    color: var(--grey);
    opacity: 1;
}

#contact-form :-ms-input-placeholder {
    color: var(--grey);
    opacity: 1;
}

#contact-form ::-ms-input-placeholder {
    color: var(--grey);
    opacity: 1;

}

#copyright{
    font-size: 13px;
}

.intervention-sidebar{
    background: none;
}

#intervention-avant-apres h2,
#tarif-intervention h2{
    font-size: 24px;
    text-transform: uppercase;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gold);
}

#prendre-rendez-vous{
    border: 1px solid var(--gold);
    scroll-margin-top: 150px;
}

#prendre-rendez-vous{
    background: var(--light-gold);
}

#prendre-rendez-vous h2{
    color: var(--gold);
    font-size: 20px;
    text-transform: uppercase;
}

#prendre-rendez-vous p{
    color: var(--gold)
}

#tarif-intervention .table>:not(caption)>*>*{
    box-shadow: none;
}

#tarif-intervention thead tr{
    background: var(--gold);
    color: white;
}

#tarif-intervention th,
#tarif-intervention td{
    font-weight: normal;
    border-right: 1px solid white;
    text-align: center;
}

#tarif-intervention tr{
    background: var(--ultra-light-grey);
}

#tarif-intervention tr:nth-child(2n){
    background: var(--light-grey);
}

.table>:not(caption)>*>*{
    border-bottom: 1px solid white;
    padding: 1rem;
}

#search{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(211, 161, 73,0.9);
    z-index: 999;
}

#search form{
    width: 360px;
    display: flex;
    justify-content: space-between;
}

#search input[type="search"]{
    border: 0;
    border-radius: 0;
    display: inline-block;
    width: calc(100% - 160px);
    background: none;
    border-bottom: 3px solid white;
    color: white;
    padding-left: 0;
}

#search input[type="search"]:focus{
    box-shadow: none;
}

#search .fa-times{
    position: absolute;
    right: 30px;
    top: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    display: flex;
}

#search ::placeholder {
    color: white;
    opacity: 1;
}

#search :-ms-input-placeholder {
    color: white;
    opacity: 1;
}

#search ::-ms-input-placeholder {
    color: white;
    opacity: 1;

}

#top-menu nav{
    display: inline-block;
}

#top-menu a.btn{
    margin-left: 20px;
}

.has-sub-menu > i{
    display: none;
}

#top-menu .fa-bars{
    display: none;
}

#top-menu .fa-search{
    margin-left: 30px;
    cursor: pointer;
}

#top-menu .fal.fa-times{
    display: none;
}

h2{
    scroll-margin-top: 150px;
}

.single-intervention .content h3{
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
    scroll-margin-top: 150px;
}

.single-intervention .content h4{
    font-size: 17px;
    color: black;
    margin-bottom: 15px;
    scroll-margin-top: 150px;

}

.single-intervention .content ul li{
    color: black;
}

.sidebar article a{
    color: black;
    text-decoration: none;
}

.wpcf7-not-valid{
    border: 2px solid #dc3232 !important;
}

.wpcf7-not-valid-tip{
    display: none;
}

.float-doctolib{
    display:inline-block;
    text-align:center;
    background-color:#0596DE;
    color:#ffffff;
    font-size:14px;
    overflow:hidden;
    height:40px;
    border-bottom-right-radius:none;
    border-bottom-left-radius:none;
    position:fixed;
    bottom:10px;
    right:10px;
    z-index:1000;
    border-radius: 20px;
    line-height:40px;
    text-decoration: none;
    padding: 0 20px;
}

.float-doctolib:hover{
    color: white;
}

.interventions-section a:not(.btn),
.interventions-section a:not(.btn) h2{
    text-decoration: none;
    transition: all 0.3s;
}

.interventions-section-gold a:not(.btn),
.interventions-section-gold a:not(.btn) h2{
    color: white !important;
}

.interventions-section a:not(.btn):hover,
.interventions-section a:not(.btn):hover h2{
    color: var(--grey) !important;
}

footer{
    padding-bottom: 50px;
}

.interventions-section picture{
    width: 250px;
    height: auto;
    display: block;
}

#blog article h3{
    font-size: 21px;
}

.widget-silo ul li a.bold,
.widget-intervention ul li a.bold{
    font-family: Arial;
font-weight :bold;
}

#breadcrumb .container{
    height: 18px;
}

article img{
    max-width: 100%;
    width: auto !important;
    height: auto !important;
}
