body {
    font-size: 1em;
    font-family: 'Barlow', sans-serif;
    color: #3F3F3F;
}

#scrollTop {
    position: fixed;
    top: 50%;
    right: 0;
    cursor: pointer;
    z-index: 9999;
}

#navSticky {
    max-width: 1180px;
    margin: 0 auto;
}

@media screen and (max-width: 1199.98px) {
    #navSticky {
        padding: 0;
    }
}

.sticky-nav {
    position: fixed;
    width: 100%;
    max-width: 100% !important;
    top: 0;
    right: 0;
    z-index: 999999;
    margin: 0 auto !important;
    box-shadow: 0 2px 4px #00000015;
    background: rgba(255, 255, 255, .9);
    padding: 0 15vw;
    transition: background .6s;
}

.logo-on-scroll {
    width: 75%;
    height: 100%;
    transition: all .3s;
}

@media screen and (max-width: 1500px) {
    .sticky-nav {
        padding: 0 6vw;
    }
}

.no-underline {
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}

.no-underline:hover {
    text-decoration: underline;
}

a {
    color: #214B54;
    outline: 0;
}

h1 {
    font-size: 3.4375em;
}

h2 {
    font-size: 1.8em;
    font-weight: bold;
}

h3 {
    font-size: 1.5em;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #F47C0C;
}

.btn-outline-white {
    background-color: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
}

.navbar-top {
    color: #fff;
    font-size: .8em;
    background-color: #214B54;
    display: flex;
}

.navbar-top span {
    display: block;
    padding: .5rem 1rem;
    font-size: 1.1em;
    color: #fff;
}

.navbar-top a > span:hover {
    text-decoration: underline;
}

.nav {
    margin: 20px 0;
    height: max-content;
}

@media screen and (max-width: 1199.98px) {
    .nav {
        margin: 0;
        height: 100%;
        overflow-x: hidden;
    }

    .nav-link {
        color: #fff;
        font-size: 2rem;
        font-weight: 300 !important;
        padding: .6rem 0 .6rem 2rem !important;
        transition: all .1s;
        width: 82vw;
    }

    .nav-link:focus, .nav-link:hover {
        color: #fff !important;
        text-decoration: none !important;
    }

    #accessibility-font-plus {
        font-size: 2em !important;
    }

    #accessibility-font-minus {
        font-size: 1.25em !important;
    }
}

.nav-link {
    font-weight: 500;
    padding: 0;
    text-decoration: none;
    line-height: 2rem;
    height: max-content;
}

.nav-link:hover {
    color: #688991;
    text-decoration: underline;
}

.text-dark {
    color: #3F3F3F !important;
}

.text-black {
    color: #000 !important;
}

.text-white {
    color: #fff;
}

.text-blue-dark {
    color: #214B54;
}

.border-gray {
    border-color: #e1e1e1;
}

.color-blue {
    color: #4C97A4;
}

.color-orange {
    color: #F47C0C !important;
}

.background-white-light {
    background-color: #FAFAFA;
}

.background-grey {
    background: #EBECF4;
}

.background-dark-grey {
    background: #566D73;
}

.background-black {
    background: #aaaa;
}

.background-color-blue {
    background-color: #4C97A4;
}

.background-blue {
    color: #fff;
    background-color: rgba(78, 155, 168, .7);
}

.background-blue a {
    color: #fff;
}

.background-blue a.btn {
    color: #000;
}

.background-blue-light {
    color: #fff;
    background-color: rgba(102, 178, 193, .7);
}

.background-turquoise {
    background-color: #66B2C1;
    color: #fff;
}

.background-turquoise-lighter {
    background: #7CB3BC;
}

.background-turquoise-darker {
    background: #81C0CC;
}

.background-blue-lighter {
    background: #8DBCC5;
    color: #fff;
}

.background-contact {
    color: #fff;
    background: #6CA9B4;
}

.background-blue-extra-light {
    color: #fff;
    background-color: #9DCED7;
}

.background-blue-dark-light {
    color: #fff;
    background-color: #ADCFD5;
}

.background-blue-dark {
    color: #fff;
    background-color: #5D7C82;
}

.background-blue-darkest {
    color: #fff;
    background-color: #214B54;
}

.background-orange {
    color: #fff !important;
    background-color: #FF8E1D !important;
}

.bg-orange-light {
    background: #F8AB64 !important;
    color: #fff !important;
}

.btn-primary {
    color: #000;
    background-color: #FAFAFA;
    border: none;
}

.btn-white, .btn-black {
    position: relative;
    overflow: hidden;
    padding: 1rem 1.5rem;
    text-align: center;
    height: max-content;
    width: 100%;
    border-radius: 5px;
    align-self: center;
    transition: all .2s;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-white {
    color: #fff;
}

.btn-black {
    color: #000;
    background-color: #fff;
}

.btn-white::after, .btn-black::after {
    content: "";
    background-image: url("../images/icons/arrow-right-solid.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
    position: absolute;
    right: 0%;
    top: 52%;
    transform: translateY(-50%);
    opacity: 0;
}

.btn-black::after {
    background-position-x: left;
}

.btn-white::after {
    background-position-x: right;
}

.btn-white:hover, .btn-black:hover {
    padding-right: 2rem;
    transition: all .2s;
    text-decoration: none;
}

.btn-white:hover::after, .btn-black:hover::after {
    right: 4%;
    opacity: .8;
    transition: all .2s;
}

.welcome {
    z-index: 0;
    background-image: url("../images/clinique/facade_clinique.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.overlay-blue-filter {
    background: rgba(78, 155, 168, .7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mw-mc {
    max-width: max-content;
}

.mh-mc {
    max-height: max-content;
}

.h-mc {
    height: max-content;
}

.max-h-inh {
    max-height: inherit;
}

.min-h-inh {
    min-height: inherit;
}

.breadcrumb {
    background: none;
}

.breadcrumb a {
    color: #FF8E1D;
}

.box-shadow-1 {
    box-shadow: 3px 3px 8px #555;
}

/* bottom + right only */
.box-shadow-2 {
    box-shadow: 3px 3px 3px #555;
}

.box-shadow-bottom {
    box-shadow: 0 3px 3px 0 #555;
}

.shadow-bottom-right {
    box-shadow: 5px 10px 50px rgba(43, 74, 81, 0.4);
}

.shadow-bottom-right-light {
    box-shadow: 5px 10px 50px rgba(224, 224, 224, 0.4);
}

.another-blue {
    background: #4C97A4;
}

.badge-primary {
    background-color: #4C97A4;
}

.badge-pill {
    padding: .5rem .7rem;
    margin: .5rem .2rem .2rem 0;
    height: 1.8rem;
}

/*/// CARRES ///*/
@media screen and (min-width: 1620px) {
    .home-squares::after {
        background: rgba(102, 178, 193, 0.8);
        width: 112px;
        height: 96px;
        bottom: 2vw;
        right: -8vw;
    }

    .subheader-squares::after {
        background: #4C97A4;
        width: 71px;
        height: 60px;
        top: 2vw;
        right: -9vw;
        border-radius: 20px 0;
    }

    .indicator-square::after {
        background: #F8AB64;
        width: 111px;
        height: 97px;
        right: -5vw;
        bottom: 0;
        margin: .5rem;
    }
}

.playstore-width {
    width: 270px;
}

#recrutement_cv, #recrutement_motivationletter {
    background-color: #8DBCC5;
    display: flex;
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    color: black;
}

.playstore-marginleft1 {
    margin-left: 75px;
}

.playstore-marginleft2 {
    margin-left: 30px;
}

.hublo-square {
    position: relative;
    z-index: 0 !important;
    border-radius: 40px 0;
    text-decoration: none;
}

.hublo-square::after {
    content: "";
    display: block;
    position: absolute;
    width: 400px;
    height: 210px;
    left: -9%;
    bottom: -15%;
    background: transparent !important;
    border-radius: 40px 0;
    border: 3px solid #81C0CC;
    z-index: 1;
}

.intro-square-content {
    position: relative;
    z-index: 999 !important;
    border-radius: 40px 0;
    text-decoration: none;
}

.intro-square-content-3 {
    position: relative;
    z-index: 999 !important;
    border-radius: 25px 0;
    text-decoration: none;
}

.intro-square-content-recrutement {
    right: 30px;
}

.intro-square-content-recrutement-link {
    right: 30px;
    white-space: nowrap;
}

.intro-square-content-playstore {
    display: flex;
    padding: 10px !important;
}

.intro-square::before {
    content: "";
    display: block;
    position: absolute;
    width: 154px;
    height: 114px;
    left: -4%;
    bottom: 4%;
    background: #9DCED7;
    border-radius: 40px 0;
    z-index: 1;
}

.intro-square-content-hublo::before {
    content: "";
    display: block;
    position: absolute;
    width: 170px;
    height: 45px;
    left: -4%;
    bottom: 4%;
    background: #9DCED7;
    border-radius: 40px 0;
    z-index: 1;
}

.gray-square {
    width: 85px;
    height: 72px;
    position: absolute;
    background: #F4F4F4;
    border-radius: 20px 0;
}

@media screen and (max-width: 1200px) {
    .hublo-square::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: -3%;
        bottom: -15%;
        background: white;
        border-radius: 40px 0;
        border: 3px solid #81C0CC;
        z-index: 1;
    }

    .img-hublo {
        width: 90% !important;
    }
}

@media screen and (min-width: 1200px) {
    .home-squares, .home-square-2, .subheader-squares, .indicator-square, .postuler-square, .clinique-subheader-square, .clinique-subheader-square-2, .history-square, .team-square, .team-square-2, .team-square-3, .specialty-square {
        position: relative;
        z-index: 999;
    }

    .playstore-width {
        width: 260px;
    }

    .home-squares::before, .home-squares::after, .home-square-2::after, .postuler-square::after, .subheader-squares::before, .subheader-squares::after, .hublo-square::after, .indicator-square::after, .clinique-subheader-square::before, .clinique-subheader-square-2::before, .history-square::after, .team-square::after, .team-square-2::after, .team-square-3::after, .specialty-square::after {
        content: "";
        display: block;
        position: absolute;
        border-radius: 40px 0;
        z-index: 1;
    }

    .home-squares::before {
        background: #BADEEB;
        width: 73px;
        height: 62px;
        top: 2vw;
        left: -3vw;
        border-radius: 20px 0;
    }

    .home-square-2::after {
        background: #4C97A4;
        width: 146px;
        height: 127px;
        left: 13vw;
        bottom: -6vw;
    }

    .subheader-squares::before {
        background: #BADEEB;
        width: 111px;
        height: 94px;
        top: -2vw;
        left: -10vw;
    }

    .postuler-square::after {
        background: #4C97A4;
        border-radius: 20px 0px;
        width: 70px;
        height: 60px;
        bottom: -7vw;
        left: 70vw;
    }

    .clinique-subheader-square::before {
        background: #BADEEB;
        width: 111px;
        height: 94px;
        bottom: -3vw;
        left: -11vw;
    }

    .clinique-subheader-square-2::before {
        background: #BADEEB;
        width: 111px;
        height: 94px;
        bottom: 19vw;
        left: -14vw;
    }

    .history-square::after {
        width: 71px;
        height: 60px;
        background: #F47C0C;
        border-radius: 20px 0;
        right: 0;
        bottom: 0;
    }

    .team-square::after {
        width: 111px;
        height: 97px;
        background: #4C97A4;
        top: 1vw;
        right: -6vw;
    }

    .team-square-2::after {
        width: 145px;
        height: 125px;
        background: #4C97A4;
        top: -2vw;
        right: 10vw;
    }

    .team-square-3::after {
        width: 111px;
        height: 97px;
        background: #F8AB64;
        top: 1vw;
        right: -6vw;
    }

    .specialty-square::after {
        width: 111px;
        height: 97px;
        background: #F8AB64;
        top: 1vw;
        right: -6vw;
    }

    .specialty-square-left::after {
        width: 63px;
        height: 55px;
        background: #F8AB64;
        right: 0;
        border-radius: 20px 0px;
        left: 0;
        top: 0;
    }

    .bloc-parcours-soins-square {
        position: absolute;
        background: #9DCED7;
        border-radius: 40px 0px;
        width: 154px;
        height: 114px;
        z-index: 1;
        right: -2rem;
        bottom: 1rem;
    }
}

/*RGPD*/
#rgpd {
    height: 50px;
    background: #fff;
    position: fixed;
    bottom: 0;
    z-index: 9999999;
    transition: all .5s;
}

#consent {
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 4px;
    padding: .3rem 1rem;
}

/**
 * Global
 */
#burgerBarsBase {
    min-height: 35px;
    max-height: 35px;
    min-width: 50px;
    max-width: 50px;
    width: 50px;
    position: relative;
    overflow: hidden;
}

.menu-bar {
    min-height: 2px;
    max-height: 2px;
    height: 2px;
    min-width: 50px;
    width: 50px;
    max-width: 50px;
    background: #214B54;
    border-radius: 2px;
    display: block;
    position: absolute;
}

#menuText {
    bottom: 0;
    left: 0;
    position: absolute;
    transform-origin: center;
    transition: all .1s;
}

.menu-text-fade-out {
    font-size: 0px !important;
    font-weight: bold;
    filter: blur(5px);
}

#line1, #line2 {
    stroke-dashoffset: 50;
    stroke-dasharray: 50;
    filter: blur(3px);
}

.cross-reveal {
    stroke-dashoffset: 0 !important;
    stroke-width: 2px !important;
    filter: blur(0) !important;
    transition: all .3s;
}

.cross-rotate {
    transform: rotate(180deg);
    transition: all .3s;
}

#menuBar1 {
    top: 0;
}

#menuBar2 {
    top: 30%;
}

.close-icon {
    min-width: 35px !important;
    width: 35px !important;
    max-width: 35px !important;
}

.letter-spaced {
    letter-spacing: .3rem;
    font-size: 12px;
}

#menu-hamburger-btn {
    display: none;
    cursor: pointer;
    overflow: hidden;
}

#menu-top-right {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

#menu-top-right a {
    color: #000;
    font-size: 0.8em;
    line-height: 1.2em;
}

.menu-top-right-icons {
    background-image: url("../images/global/menu-top-right-icons.png");
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
}

#menu-tr-icon-1 {
    background-position: -10px -10px;
}

#menu-tr-icon-2 {
    background-position: -60px -10px;
}

#menu-tr-icon-3 {
    background-position: -110px -10px;
}

#menu-tr-icon-4 {
    background-position: -160px -10px;
}

.line-height-custom {
    line-height: 1.5em;
}

.line-height-custom-covid {
    line-height: 200%;
}

.w-90 {
    width: 90%;
}

.font-13 {
    font-size: 0.8125em;
}

.font-14 {
    font-size: .875em;
}

.font-16 {
    font-size: 1em;
}

.font-18 {
    font-size: 1.125em;
}

.font-20 {
    font-size: 1.25em;
}

.font-36 {
    font-size: 2.25em;
}

.font-48 {
    font-size: 3em;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.container-custom {
    max-width: 1350px;
}

@media screen and (max-width: 1400px) {
    .hublo-square::after {
        content: "";
        display: block;
        position: absolute;
        width: 320px;
        height: 165px;
        left: 0%;
        bottom: -15%;
        background: transparent !important;
        border-radius: 40px 0;
        border: 3px solid #81C0CC;
        z-index: 1;
    }

    .img-hublo {
        width: 100%;
        padding-left: 25px;
    }
}

@media screen and (max-width: 1200px) {
    .hublo-square::after {
        content: "";
        display: block;
        position: absolute;
        width: 102%;
        height: 135%;
        left: 0%;
        bottom: -15%;
        background: transparent !important;
        border-radius: 40px 0;
        border: 3px solid #81C0CC;
        z-index: 1;
    }

}

@media screen and (max-width: 750px) {
    .hublo-square::after {
        content: "";
        display: block;
        position: absolute;
        width: 91%;
        height: 130%;
        left: 2%;
        bottom: -13%;
        background: transparent !important;
        border-radius: 40px 0;
        border: 3px solid #81C0CC;
        z-index: 1;
    }

    .img-hublo {
        width: 85%;
        padding-left: 25px;
    }

}

@media screen and (min-width: 1200px) {
    .col-xl-20 {
        width: 20%;
        padding: .65rem
    }
}

img {
    width: max-content;
    height: max-content;
}

#accessibility-font-minus {
    font-weight: 600;
    font-size: 0.6875em;
    line-height: .6875em;
    max-width: max-content;
    align-self: center;
}

#accessibility-font-plus {
    font-weight: 600;
    font-size: 1.125em;
    line-height: 1.125em;
    max-width: max-content;
}

/**
 * Footer
 */
.footer-2-contact-icons {
    background-image: url("../images/global/footer2-contact-icons.png");
    min-height: 30px;
    max-height: 30px;
    min-width: 30px;
    max-width: 30px;
}

#footer2-contact-icon-1, #contactPageContactIcon1, #homepageContactIcon1 {
    background-position: -10px -10px;
}

#footer2-contact-icon-2, #contactPageContactIcon2, #homepageContactIcon2 {
    background-position: -60px -10px;
}

#footer2-contact-icon-3, #contactPageContactIcon3, #homepageContactIcon3 {
    background-position: -110px -10px;
}

@media screen and (min-width: 576px) {
    .footer-contact-border {
        border-right: 1px solid #fff;
    }
}

#footerContact a {
    text-decoration: none;
}

#footerContact a:hover {
    text-decoration: underline;
}

#footer-1 img {
    margin: .25rem;
}

#footer-1 a {
    color: #4C97A4;
    font-weight: bold;
}

#footer-1 h3 {
    font-size: 1.25em;
    font-weight: bold;
    color: #656565;
}

#footer-2 a {
    color: #fff;
}

#footer-2 a.btn {
    color: #000;
}

#footer-3 {
    text-align: center;
    font-size: 0.8em;
}

#footer-3 p {
    margin: 5px 0;
}

#footer-3 a {
    color: #fff;
}

.border-right-custom::after {
    content: "";
    display: block;
    position: absolute;
    right: .5vw;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 1px;
    height: 53%;
    background-color: black;
}

.coordonnees {
    position: relative;;
}

.coordonnees::after {
    content: "";
    display: block;
    width: 1px;
    height: 90%;
    right: 12px;
    background: #fff;
    position: absolute;
}

.border-radius-tl-br {
    border-radius: 40px 0;
}

.border-radius-tl-br-min {
    border-radius: 20px 0;
}

.border-radius-br {
    border-bottom-right-radius: 110px;
}

.border-radius-tl {
    border-top-left-radius: 110px;
}

.border-radius-tl-min {
    border-top-left-radius: 40px;
}

.border-radius-tr {
    border-top-right-radius: 110px;
}

.border-radius-table {
    border-radius: 0 30px 30px 30px;
    overflow: hidden;
    height: max-content;
}

@media screen and (max-width: 1199.98px) {
    .no-border-lg {
        border-radius: 0 !important;
    }
}

@media screen and (max-width: 991.98px) {
    .no-border-md {
        border-radius: 0 !important;
    }
}

@media screen and (max-width: 767.98px) {
    .no-border-sm {
        border-radius: 0 !important;
    }
}

/**
 * Homepage
 */
.homepage-welcome {
    color: #fff;
    background-image: url("../images/clinique/facade_clinique.jpg");
    background-image: image-set(url("../images/clinique/facade_clinique.webp") type("image/webp"), url("../images/clinique/facade_clinique.jpg") type("image/jpeg"));
    min-height: 36.5vw;
    background-size: cover;
    position: relative;
}

.homepage-welcome-block-right {
    font-size: 0.9em;
    border-radius: 40px 0;
    padding: 3rem;
}

.homepage-welcome-block-right a {
    text-decoration: none;
}

.homepage-welcome-block-right a > p:hover {
    text-decoration: underline;
}

.homepage-welcome-block-right .contact-informations-block-2 {
    padding: 0;
}

.homepage-welcome-block-right .contact-informations-block-1-container {
    width: 100%;
    padding-right: 5px;
}

.homepage-welcome-block-right .contact-informations-block-2 {
    padding: 0;
}

.homepage-intro-icons {
    background-image: url("../images/accueil/homepage-intro-icons.png");
    width: 70px;
    height: 70px;
}

#preAdmiIcon {
    background-position: -10px -10px;
}

#suiviAmbuIcon {
    background-position: -190px -10px;
}

#rdvAnesthIcon {
    background-position: -100px -10px;
}

#homepage-parcours-soin h3 {
    text-align: center;
}

#homepage-parcours-soin {
    text-align: center;
    z-index: 999;
    position: relative;
}

.parcours-soin-icon {
    background: url("../images/accueil/parcours-soins-min/css_sprites.png");
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

#iconSoin1 {
    background-position: -10px -100px;
}

#iconSoin2 {
    background-position: -10px -10px;
}

#iconSoin3 {
    background-position: -100px -10px;
}

#iconSoin4 {
    background-position: -100px -100px;
}

#homepage-parcours-soin img {
    display: block;
    margin: 0 auto;
}

.parcours-soin {
    height: 280px;
    padding: 2rem 1rem;
    margin: 0 auto;
    line-height: 1.1875em;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    border-radius: 50px 0;
}

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

    .parcours-soin {
        max-width: 280px;
    }

    #parcoursSoin1::after, #parcoursSoin2::after, #parcoursSoin3::after {
        content: "";
        width: 30px;
        height: 30px;
        border-bottom: 1px solid black;
        border-right: 1px solid black;
        position: absolute;
        right: -2.2rem;
        top: 40%;
        transform: rotate(-45deg)
    }

    .indicator-container {
        max-width: 200px;
    }

    .engagements, .accompagnement {
        min-width: 500px;
    }

    .valeurs, .alentours-clinique {
        min-width: 600px;
    }
}

@media screen and (max-width: 767.98px) {
    .border-right-custom::after {
        display: none;
    }
}

.parcours-soins-container {
    position: relative;
}

.bloc-parcours-soins {
    position: relative;
    z-index: 50;
}

.overlap-bg-gray {
    height: 412px;
    background: #FAFAFA;
    width: 100%;
    position: absolute;
    bottom: -20px;
}

.engagements {
    background-image: url("../images/clinique/engagement-min.png");
    background-image: image-set(url("../images/clinique/engagement-min.webp") type("image/webp"), url("../images/clinique/engagement-min.png") type("image/png"));
    /*background-image: url("../images/global/Dirigeants.jpg");*/
    background-size: cover;
}

.engagements-icons {
    background-image: url("../images/accueil/engagement-min/engagements-icons.png");
    margin: 0 auto;
}

#engagements-icon-1 {
    background-position: -10px -10px;
    height: 70px;
    width: 70px;
}

#engagements-icon-2 {
    background-position: -200px -10px;
    height: 80px;
    width: 80px;
}

#engagements-icon-3 {
    background-position: -300px -10px;
    height: 90px;
    width: 90px;
}

#engagements-icon-4 {
    background-position: -100px -10px;
    height: 80px;
    width: 80px;
}

.accompagnement {
    background-image: url("../images/accueil/Clinique_photo_profil.jpg");
    background-size: cover;
    background-position: bottom;
    min-height: 300px;
}

.padding-left {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.top-category {
    max-width: 170px;
    padding: .5rem 1rem;
}

.links-list {
    padding: 0;
}

.links-list li {
    list-style: none;
    margin: 10px 0;
}

.links-list li a {
    text-decoration: underline;
}

.specialite-icon {
    min-width: 52px;
    height: 52px;
    background: url("../images/accueil/specialites-min/specialites-icons-2.png");
    background: image-set(url("../images/accueil/specialites-min/specialites-icons-2.webp") type("image/webp"), url("../images/accueil/specialites-min/specialites-icons-2.png") type("image/png"));
}

.doctolib-icon {
    content: "";
    background-image: url("../images/specialites/Logo-doctolib.svg");
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    min-width: 120px;
    height: 100px;
}

.specialite-descr {
    height: max-content;
    align-self: center;
    font-weight: bold;
    margin-left: 1rem;
    color: #3F3F3F;
    text-decoration: none;
}

#specialiteIcon0 {
    background-position: -80px -216px;
}

#specialiteIcon1 {
    background-position: -11px 56px;
}

#specialiteIcon2 {
    background-position: -11px -147px;
}

#specialiteIcon3 {
    background-position: -11px -76px;
}

#specialiteIcon4 {
    background-position: -221px -146px;
}

#specialiteIcon5 {
    background-position: -220px -80px;
}

#specialiteIcon6 {
    background-position: -81px -146px;
}

#specialiteIcon7 {
    background-position: -151px -77px;
}

#specialiteIcon8 {
    background-position: -81px -77px;
}

#specialiteIcon9 {
    background-position: -151px -147px;
}

#specialiteIcon10 {
    background-position: -11px -7px;
}

#specialiteIcon11 {
    background-position: -221px -7px;
}

#specialiteIcon12 {
    background-position: -81px -7px;
}

#specialiteIcon13 {
    background-position: -151px -7px;
}

.specialty-icon-wrapper {
    position: relative;
}

.specialites-page-icon {
    background-image: url("../images/specialites/icon/specialites-icons-2.png");
    height: 101px;
    width: 100px;
    z-index: 999;
    position: relative;
    border-radius: 50%;
}

.specialite-page-title {
    height: 71px;
    position: absolute;
    z-index: 1;
    width: 80%;
    border-radius: 0px 0px 20px 0px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    align-items: center;
    padding: 0 1rem 0 5rem;
    margin: 0 1rem 0 0;
}

.specialite-page-title > a {
    line-height: 22px;
}

#specialitePageIcon1 {
    background-position: -1450px -10px;
}

#specialitePageIcon2 {
    background-position: -730px -10px;
}

#specialitePageIcon3 {
    background-position: -250px -10px;
}

#specialitePageIcon4 {
    background-position: -1330px -10px;
}

#specialitePageIcon5 {
    background-position: -850px -10px;
}

#specialitePageIcon6 {
    background-position: -610px -10px;
}

#specialitePageIcon7 {
    background-position: -370px -10px;
}

#specialitePageIcon8 {
    background-position: -970px -10px;
}

#specialitePageIcon9 {
    background-position: -10px -10px;
}

#specialitePageIcon10 {
    background-position: -1090px -10px;
}

#specialitePageIcon11 {
    background-position: -130px -10px;
}

#specialitePageIcon12 {
    background-position: -490px -10px;
}

#specialitePageIcon13 {
    background-position: -1210px -10px;
}

/*///PARCOURS DE SOINS///*/

.parcours-icon {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    background-image: url("../images/parcours-de-soins/parcours-soins-icons.png");
}

.parcours-icon-1 {
    background-position: -150px -10px;
}

.parcours-icon-2 {
    background-position: -10px -10px;
}

.parcours-icon-3 {
    background-position: -80px -10px;
}

.parcours-icon-4 {
    background-position: -220px -10px;
}

/*/// RADIOLOGIE ///*/
.img-overlap {
    z-index: 999;
    position: relative;
}

.notices-et-docs a {
    text-decoration: underline;
}

.notices-et-docs {
    border-left: 2px solid #4C97A4;
}

@media screen and (max-width: 575.98px) {
    .notices-et-docs {
        border-top: 2px solid #4C97A4;
        border-bottom: 2px solid #4C97A4;
        border-left: none;
    }
}

.parcours-soins-docs {
    border-left: 2px solid #4C97A4;
}

@media screen and (max-width: 991.98px) {
    .parcours-soins-docs {
        border-top: 2px solid #4C97A4;
        border-bottom: 2px solid #4C97A4;
        border-left: none;
    }
}

.radiology
    /*NOS INDICATEURS*/
.indicator-container {
    position: relative;
    max-height: 200px;
}

#homepage-indicateurs .indicator {
    font-size: 3em;
    font-weight: 500;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#homepage-indicateurs img.indicator {
    width: 100px;
    height: auto;
    margin-bottom: 16px;
}

#homepage-indicateurs .indicator-title {
    font-weight: bold;
}

.indicator, .indicator-title, .indicator-source {
    z-index: 999;
    position: relative;
}

.indicator-title {
    text-align: left;
    line-height: 1.1875em;
    color: #3f3f3f;
}

#topLeftSquare {
    top: 0;
    left: 0;
}

#bottomRightSquare {
    right: 0;
    bottom: 0;
}

#topRightSquare {
    top: 0;
    right: 0;
}

#bottomLeftSquare {
    bottom: 0;
    left: 0;
}

.links-list li {
    line-height: 1.1875em;
    margin: 1rem 0;
}

.footer1-icon {
    background-image: url("../images/icons/footer1-icons.png");
    min-height: 70px;
    min-width: 70px;
}

#footer1Icon1 {
    background-position: -10px -10px;
}

#footer1Icon2 {
    background-position: -100px -10px;
}

#footer1Icon3 {
    background-position: -190px -10px;
}

/**
 * La Clinique*/

.clinique-engagements {
    background-image: url("../images/clinique/engagement-min.png");
    background-size: cover;
    display: flex;
}

.recrutement-hublo {
    background-color: #214B54;
    display: flex;
    flex-direction: column;
}

#equipe-names p {
    margin: 0;
}

#equipe-names a {
    color: #fff;
}

p.equipe-specialty {
    margin: 0 0 20px 0 !important;
    font-size: 1.1875em;
    font-weight: bold;
    line-height: 1.1875em;
}

.orange-list li {
    position: relative;
}

.orange-list li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #FF8F1E;
    position: absolute;
    top: .55rem;
    left: -1.1rem;
}

/*///NOS PRESTATIONS///*/
.prestations-icons {
    width: 50px;
    height: 50px;
    background-image: url("../images/prestations/prestations-icons.png");
}

.prestations-check-icon {
    width: 20px;
    height: 20px;
    background-image: url("../images/prestations/prestations-icons.png");
    background-position: -10px -10px;
    margin: 0 auto;
    align-self: center;
}

.presta-details li {
    position: relative;
}

.presta-details li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #4C97A4;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 8px;
    left: -1.3rem;
}

.chamber-type {
    height: max-content;
    align-self: center;
}

#television {
    background-position: -190px -10px;;
}

#telephone {
    background-position: -50px -10px;;
}

#internetAccess {
    background-position: -260px -10px;;
}

#press {
    background-position: -120px -10px;;
}

/**
 * Recherche docteurs
 */
#doctor-search-form input, #doctor-search-form select {
    color: #fff;
    background-color: #4C97A4;
}

#doctorSearch label {
    font-weight: bold;
    font-size: 1.125em !important;
    margin-bottom: .7rem !important;
}

.doctor-search-shadow {
    box-shadow: 5px 20px 50px rgba(58, 119, 130, 0.4);
}

.form-control {
    border: 2px solid rgba(255, 255, 255, .5) !important;
    border-radius: 4px !important;
    padding: .5rem;
    color: rgba(255, 255, 255, .5);
    background-color: transparent;
    height: 3.8rem;
}

.form-control option {
    color: #000;
}

#doctor-search-form input::placeholder {
    color: #fff;
}

.doctor-search-card {
    box-shadow: 0 4px 4px rgba(0, 0, 0, .2);
    padding: 2rem 1.7rem;
    border-radius: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: max-content;
    min-height: 459px;
}

.doctor-info {
    min-width: 88px;
    text-align: left;
    margin: 0 .5rem 0 0;
}

/**
 * Contact
 */
.contact-informations-block-1-container {
    width: 90%;
}

.contact-informations-block-2 {
    padding: 3rem;
}

.contact-informations-block-2 a {
    color: #fff;
}

#contact-form-container label {
    font-size: 0.8125em;
    margin-bottom: 0;
}

#contact-form-container input:focus, #contact-form-container textarea:focus {
    outline: none;
}

#contact_message {
    width: 100%;
}

@media screen and (max-width: 575.98px) {
    .border-right {
        border-right: none !important;
        border-bottom: 1px solid #fff;
    }
}

#contact_datacheck {
    transform: scale(1.5);
    z-index: 1;
    position: relative;
    width: max-content;
}

.contact-page-form-field {
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    padding: .5rem .7rem;
    margin-top: .5rem;
    width: 87%;
}

#recrutement_datacheck {
    transform: scale(1.5);
    z-index: 1;
    position: relative;
    width: max-content;
}

.recrutement-page-form-field {
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    padding: .5rem .7rem;
    margin-top: .5rem;
    width: 87%;
}

@media screen and (max-width: 767.98px) {
    .contact-page-form-field {
        width: 100%;
    }
}

.form-control:focus {
    color: #fff;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid orange;
    box-shadow: none;
}

.form-control::placeholder {
    color: #fff;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 460px;
}

/**
 * Actualités
 */
#actualites .actualite {
    padding: 20px;
    margin: 5px;
    box-shadow: 3px 3px 8px #9999;
    border-radius: 15px;
    text-align: center;
    height: 100%;
}

/**
 * Plan du site
 */
#plan-site a {
    display: inline-block;
    margin: .6rem;
    padding: .5rem 1.35rem;
    background-color: #4C97A4;
    color: #fff;
    border-radius: 15px;
}

.welcome .block-border-radius, .welcome .col-md-6 {
    z-index: 30;
}

#alertMessage {
    margin-bottom: 0;
    font-size: 1.4rem !important;
}

@media screen and (max-width: 575.98px) {
    .coordonnees::after {
        display: none;
    }

    .specialite-descr {
        padding-right: 0;
    }
}

@media screen and (max-width: 1199.98px) {
    /**
     * hamburger
     */
    #menu-hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: start;
        z-index: 999;
        text-align: center;
        z-index: inherit;
        min-width: 50px;
        max-width: 50px;
        height: 35px;
        margin-right: 1.5rem;
    }

    #mobileHeader {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 100000;
    }

    .mobile-header {
        height: 66px;
        background: #fff;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
        z-index: 999;
    }

    .mobile-nav-container {
        height: 65vh;
        background: #66b2c1;
        overflow: scroll;
    }

    #mobileNav {
        height: 100vh;
        border-left: 30px solid #408a99;
        background: #66b2c1;
        position: fixed;
        top: 66px;
        transform: translateX(100%);
        transition: .3s;
    }

    .body-scroll-fix {
        height: 100vh;
        overflow: hidden;
    }

    #mobileNav.active {
        transform: translateX(0);
    }

    #logoMobile {
        background-image: url("../images/global/logo-LPS-horizontal.png");
        background-repeat: no-repeat;
        background-size: contain;
        height: 56px;
        width: 159px;
    }

    .mobile-menu-border {
        border-left: 30px solid #408a99;
        min-height: inherit;
        max-height: inherit;
    }

    /**
     * Contact
     */
    .contact-informations-block-2 {
        padding-top: 0;
    }

    .square {
        display: none;
    }

    /*.homepage-welcome {*/
    /*    margin-top: 66px;*/
    /*}*/

    .welcome, .margin-mobile {
        margin-top: 66px;
    }

    #alertMessage {
        margin-top: 66px;
        font-size: 1.3rem !important;
    }
}

@media screen and (min-height: 500px) and (max-width: 1199.98px) {
    #navItemsContainer {
        min-height: inherit;
        max-height: inherit;
    }
}

/* Covid 19 */

#covid19-header {
    position: relative;
    display: flex;
    align-items: center;
    width: 108px;
    height: 34px;
    left: 105px;
    top: 14px;
    color: #F17C0E;
}

#covid19-text-link {
    font-weight: 550;
    font-size: 14px;
    line-height: 17px;
}

#menu-tr-icon-covid {
    background-image: url("../images/icons/covid.svg");
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    background-size: contain;
}

.font-bold {
    font-weight: bold;
}

.covid-ban {
    height: 398.29px;
    z-index: 0;
    background-image: url("../images/covid19/covid-ban.png");
    overflow: hidden;
    background-size: cover;
}

.intro-square-covid::before {
    content: "";
    display: block;
    position: absolute;
    width: 154px;
    height: 114px;
    left: -4%;
    bottom: -23%;
    background: #9DCED7;
    border-radius: 40px 0;
    z-index: 1;
}

.background-light-grey {
    background-image: url("../images/covid19/rectangle.png");
    background-position-x: -80px;
    background-repeat: no-repeat;
}

.background-light-grey-full {
    background-color: #f6f6f6;
}

.li-orange-dot {
    list-style: none; /* Remove default bullets */
}

.li-orange-dot::before {
    content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #F47C0C; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.symptom-label {
    background-color: #F6F6F6;
    margin-right: 20px;
    margin-bottom: 12px;
    padding: 8px 19px;
    color: #214B54;
}

.font-48-covid {
    font-size: 2em;
}

.of-hidden {
    overflow: hidden;
}

#popup-covid19 {
    position: fixed;
    width: 765px;
    height: 441px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 45px 0px 40px 0px;
    z-index: 9999;
}

.popup-bg {
    position: absolute;
    background-image: url("../images/covid19/popup-bg.png");
    width: 282px;
    height: 442px;
}

.popup-content {
    padding: 54px;
    margin-left: 282px;
    width: 483px;
    height: 442px;
}

#popup-close {
    position: absolute;
    right: -21px;
    top: -21px;
    background-image: url("../images/covid19/circle-close.png");
    width: 43px;
    height: 43px;
    cursor: pointer;
    z-index: 9999;
}

.blur {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.384);
    z-index: 1500;
    width: 100%;
    height: 100%;
}

.hidden {
    display: none;
}

@media screen and (max-width: 820px) {
    #popup-covid19 {
        width: 307px;
        height: 344px;
        top: 55%;
    }

    .popup-bg {
        display: none;
    }

    .popup-content {
        width: 310px;
        margin: 0;
        padding: 10px;
    }
}

.text-secondary {
    color: #999;
    font-size: 80%;
    padding-left: 10px;
    font-weight: normal;
}