<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    image-orientation: none;
}

a {
    text-decoration: none;
}


html {
    overflow-y: scroll !important;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #3e3e3e;
    margin: 0;
    background-color: #fff;
    line-height: 1.4;
}

@media (max-width: 400px) {
    body {
        font-size: 16px;
    }
}

u {
    text-underline-offset: 3px;
} 
em {
    font-style: italic;
}


.wrapper-header {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 12px rgba(95, 118, 204, 0.15);
    position: relative;
    z-index: 100;
}

.wrapper-header-top {
    background-color: #373737;
    color: #fff;
    text-align: right;
    padding: 0 16px;
}


.wrapper-header-top a {
    color: currentColor;
    display: inline-block;
    text-decoration: none;
    line-height: 56px;
    margin-left: 36px;
    font-weight: 500;
    font-size: 17px;
}

.wrapper-header-top a img {
    vertical-align: -4px;
    margin-right: 5px;
}



.wrapper-header-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}



/* MENU */
.wrapper-header #menu-desktop {
    align-self: flex-end;
}
.wrapper-header .menu{
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 50px;
}
.wrapper-header .menu &gt; li{
    position: relative;
    z-index: 10;
}

.wrapper-header .menu a,
.wrapper-header .menu span{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    color: #131313;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 30px 35px;
    text-align: center;
    cursor: pointer;
    
    height: 100%;
    display: flex;
    align-items: center;

}

.wrapper-header .menu a br, 
.wrapper-header .menu span br {
    display: none;
}

.wrapper-header .menu-item:hover {
    
}

.wrapper-header .menu-item.selected &gt; a,
.wrapper-header .menu-item.selected &gt; span,
.wrapper-header .menu-item:hover &gt; a,
.wrapper-header .menu-item:hover &gt; span {
    color: #3960f0;
}

.wrapper-header .menu-item &gt; a::before,
.wrapper-header .menu-item &gt; span::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(50%) scaleY(0);
    transform-origin: bottom center;
    width: 60px;
    height: 10px;
    background: #373737;
    transition: transform 0.2s ease 0s;
}

.wrapper-header .menu-item:hover &gt; a::before,
.wrapper-header .menu-item:hover &gt; span::before {
    transform: translateX(-50%) translateY(50%);
}

.wrapper-header .menu-item.selected &gt; a::before,
.wrapper-header .menu-item.selected &gt; span::before {
    transform: translateX(-50%) translateY(50%);
    background: #3960f0;
}

.wrapper-header .menu span .menu-arrow {
    margin-left: 8px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(10%) saturate(581%) hue-rotate(340deg) brightness(92%) contrast(85%);
}

.wrapper-header .menu-item:hover .menu-arrow,
.wrapper-header .menu-item.selected .menu-arrow {
    filter: none;
} 

.wrapper-header .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    list-style: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
    box-shadow: 0 4px 10px rgba(92, 92, 92, 0.3);
}

.wrapper-header .sousmenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24px;
    box-shadow: 0 12px 12px rgba(95, 118, 204, 0.15);
    z-index: 10;
    transform: translateY(-24px);
    clip-path: polygon(0 0, 100% 0, 100% 300%, 0% 300%);
}

.wrapper-header .sousmenu a{
    color: #3e3e3e;
    text-decoration: none;
    padding: 15px 15px;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.15;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.wrapper-header .sousmenu a:hover{
    background-color: #3960f0;
    color: #fff;
}

.wrapper-header .sousmenu .selected a {
    background-color: #3960f0;
    color: #fff;
}

.wrapper-header .menu li:hover &gt; ul{
    display: block;
}
/* MENU */




.wrapper-header div.logo {
    padding: 30px 40px 20px 40px;
}

a.logo {
    --logo-scale: 1;


    color: #323232;
    text-decoration: none;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    flex-direction: row;
    gap: calc(32px * var(--logo-scale));
}

a.logo img {
    width: calc(114px * var(--logo-scale));
    height: calc(114px * var(--logo-scale));
}
a.logo h3 {
    margin: 0;
}
a.logo h3 span {
    display: block;
}

a.logo h3 span.philip {
    font-size: calc(53px * var(--logo-scale));
    line-height: 0.75;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    margin-bottom: calc(15px * var(--logo-scale));
}
a.logo h3 span.infirmier {
    font-size: calc(22px * var(--logo-scale));
    font-family: "Roboto", sans-serif;
    line-height: 0.75;
    font-weight: 400;
    font-style: italic;
}

a.header-tel.bouton {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    padding: 10px 20px;
    margin: 0;
}
a.header-tel img {
    vertical-align: -5px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease 0s;
}
.header-tel:hover img {
    filter: none;
}



@media (max-width: 1500px) {
    .wrapper-header .menu-item &gt; a, .wrapper-header .menu-item &gt; span {
        padding: 30px 25px;
    }
}

@media (max-width: 1340px) {
    .wrapper-header .menu {
        margin-right: 20px;
    }
}


@media (max-width: 1270px) {
    .wrapper-header a.logo {
        --logo-scale: 0.87;
    }
    .wrapper-header div.logo {
        padding: 25px 30px 20px 30px;
    }
    .wrapper-header .menu-item &gt; a, .wrapper-header .menu-item &gt; span {
        padding: 25px 20px;
        font-size: 19px;
    }
    .wrapper-header .sousmenu a {
        font-size: 17px;
    }
    a.header-tel.bouton {
        top: 10px;
        right: 10px;
        font-size: 18px;
    }
}

@media (max-width: 1130px) {
    .wrapper-header .menu-item &gt; a, .wrapper-header .menu-item &gt; span {
        padding: 20px 15px;
        font-size: 18px;
    }
    .wrapper-header div.logo {
        padding: 25px 20px 20px 20px;
    }
    .wrapper-header a.logo {
        --logo-scale: 0.7;
    }
}


@media (max-width: 1000px) {
    .wrapper-header .menu-item &gt; a, .wrapper-header .menu-item &gt; span {
        font-size: 17px;
        padding: 20px 14px;
    }
    .wrapper-header .sousmenu a {
        font-size: 15px;
    }
}
@media (max-width: 930px) {
    .slicknav_menu {
        display: block!important;
    }
    #menu-desktop {
        display: none;
    }
    .wrapper-header-top {
        text-align: left;
    }    
    .wrapper-header-top .header-plan {
        display: none;
    }   
    .wrapper-header-top a {
        margin-left: 0;
    }
    a.header-tel.bouton {
        top: auto;
        bottom: 10px;
    }
}

@media (max-width: 550px) {
    .wrapper-header div.logo {
        padding: 15px 10px 10px 10px;
    }
    a.header-tel.bouton {
        padding: 7px 12px;
        font-size: 16px;
    }
    a.header-tel img {
        width: auto;
        height: 16px;
        vertical-align: -3px;
    }
}
@media (max-width: 480px) {
    .wrapper-header a.logo {
        --logo-scale: 0.6;
    }    
    .wrapper-header-top a {
        font-size: 15px;
    }
}


@media (max-width: 430px) {
    .wrapper-header-top a img {
        width: 25px;
        height: auto;
    }

    .wrapper-header-top {
        padding: 0 10px;
    }
    a.header-tel.bouton span {
        display: none;
    }
}

@media (max-width: 415px) {
    .wrapper-header-top a span {
        display: none;
    }
}



.slogan {
    background-color: rgba(95, 118, 204, 0.15);
    padding: 20px;
}


.wrapper-contenu {
    z-index: 2;
    position: relative;
    background: #fff;
    overflow: hidden;
}


.wrapper-contenu-inner {}

.wrapper-boxed-contenu {
    max-width: 1380px;
    margin: auto;
}

.wrapper-boxed {}

.boxed {
    max-width: 1580px;
    margin: auto;
}


@media (max-width:800px) {
    .wrapper-boxed {
        background-size: 1000px auto;
    }

}

h1, h2.h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    font-style: normal;
    color: #3c3c3c;
    margin: 0px;
    padding: 0;
    position: relative;
    text-transform: uppercase;
    margin-bottom: -4px;
    line-height: 1;
}

span.dl {
    color: #121212;
    font-weight: normal;
    font-size: clamp(18px, 0.7em, 20px);
    display: block;
    text-transform: uppercase;
    margin-top: 5px;
}


h2 {
    font-family: "Montserrat", sans-serif;
    font-size: calc(clamp(26px, 4vw, 36px) * 32 / 36);
    font-weight: 800;
    font-style: normal;
    color: #3c3c3c;
    margin: 0px;
    padding: 0px 0px 0px 0px;
    position: relative;
    margin-bottom: -10px;
    text-transform: uppercase;
}

h3 {
    font-family: "Montserrat", sans-serif;
    font-size: calc(clamp(26px, 4vw, 36px) * 28 / 36);
    font-weight: 600;
    font-style: normal;
    color: #3c3c3c;
    margin: 0px;
    padding: 0px 0px 0px 0px;
    position: relative;
    margin-bottom: -10px;
}


div.padding {
    padding: 40px 20px 40px 20px;
}



.justify {
    text-align: justify;
}

div.center {
    text-align: center;
}

/*.cadrephoto {border:1px solid #929292;}*/

a.lien:link,
a.lien:visited {
    color: #3960f0;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
}

a.lien:hover,
a.lien:active {
    text-decoration: none;
    color: #373737;
}


a.lienpetit:link,
a.lienpetit:visited {
    font-size: 15px;
    color: #3960f0;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
}

a.lienpetit:hover,
a.lienpetit:active {
    text-decoration: none;
}





.list-3-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.list-2-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}



@media (max-width:800px) {
    .list-3-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (max-width:490px) {

    .list-3-columns,
    .list-2-columns {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}



ul.list-3-columns li,
ul.list-2-columns li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}





ul.puce {
    margin: 0;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 10px;
}

ul.puce&gt;li {
    list-style-type: none;
    background-image: url(i/puce.svg);
    background-repeat: no-repeat;
    padding-left: 16px;
    padding-right: 2px;
    background-position: 0px 9px;
    background-size: 10px 10px;
    margin: 0px 0px 7px 0px;
    overflow: hidden;
}



ul.images {
    padding: 0px;
    margin: 0;
    list-style-type: none;
}

ul.images li {
    float: left;
}

ul.images div.i {
    display: block;
    margin: auto;
    text-align: center;
}

ul.n2 li {
    width: 50%;
}

ul.n3 li {
    width: 33.33%;
}

ul.n4 li {
    width: 25%;
}

ul.n5 li {
    width: 20%;
}

ul.n2 li,
ul.n3 li,
ul.n4 li,
ul.n5 li {
    padding-left: 10px;
    padding-right: 10px;
}


@media (max-width:560px) {

    ul.n2 li,
    ul.n3 li,
    ul.n4 li,
    ul.n5 li {
        width: 100%;
        margin-bottom: 20px;
    }

    ul.images li {
        float: none;
    }
}



input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
    width: 90%;
    padding: 4px;
}
textarea {
    resize: vertical;
}




div.right {
    float: right;
    padding-left: 16px;
    max-width: 100%;
}

div.left {
    float: left;
    padding-right: 16px;
    max-width: 100%;
}

div.right-responsive {
    float: right;
    padding-left: 16px;
    max-width: 100%;
}

div.left-responsive {
    float: left;
    padding-right: 16px;
    max-width: 100%;
}


@media (max-width:560px) {
    div.right-responsive {
        float: none;
        width: auto;
        padding: 0;
        padding-bottom: 20px;
        text-align: center;
    }

    div.left-responsive {
        float: none;
        width: auto;
        padding: 0;
        padding-bottom: 20px;
        text-align: center;
    }
}


div.dessous {
    clear: both;
    height: 0px;
}

input.contact,
textarea.contact {
    color: #111111;
    background-color: #f4f7f8;
    border: solid #333 1px;
    font-size: 15px;
}



.cadresubmit {
    border: 1px #111111 solid;
}



.pagination_inactif {
    color: #e7e7e7;
    font-weight: bold;
    font-style: normal;
}

a.lienpagination:link,
a.lienpagination:visited,
a.lienpagination:hover,
a.lienpagination:active {
    color: #3960f0;
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: 100%;
}

a.lienpaginations:link,
a.lienpaginations:visited,
a.lienpaginations:hover,
a.lienpaginations:active {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: 100%;
}

.cadrepagination {}

.cadrepaginations {
    background-color: #3960f0;
}

div.pagination {
    background-color: #f5f5f599;
    border: 1px solid #dddddd;
    padding: 6px;
    overflow: hidden;
}



@media (max-width:580px) {

    td.cadrepaginations,
    td.cadrepagination {
        display: none;
    }
}



div.map {}

#form {
    border: 2px solid rgba(95, 118, 204);
    padding: 20px 10px;
    display: inline-block!important;
}

.form_header {
    background: #3960f0;
    color: #ffffff;
    text-align: left;
    padding: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

form table:nth-of-type(1) {

}

#form sup {
    color: #f66161;
    font-weight: 500;
}

.error {
    color: #f66161;
}

div.form_note {
    font-style: italic;
    font-size: 10px;
}

label[for="element10i0"] {
    font-size: 13px;
}


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

div.wrapper-padding {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width:400px) {
    div.wrapper-padding {
        padding-left: 14px;
        padding-right: 14px;
    }
}


.slicknav_menu {
    display: none;
}

#menu {
    display: none;
}









a.back-to-top {
    display: none;
    width: 48px;
    height: 48px;
    text-indent: -9999px;
    position: fixed;
    z-index: 1004;
    right: 10px;
    bottom: 10px;
    background: #3960f0 url("i/arrow-up.svg") no-repeat center center;
    background-size: 24px 24px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.27);
}

a.back-to-top:hover {
    background-color: #fff;
    background-image: url('i/arrow-up-h.svg');
}


iframe {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}


.wrapper-footer-padding {
    padding: clamp(50px, 8vw, 130px) 20px 0;
}

.wrapper-footer {

    background: url('i/logo-footer.svg'), linear-gradient(to bottom, #2a2b2b, #212121);
    background-repeat: no-repeat;
    background-size: auto clamp(340px, 50vw, 600px), 100% 100%;
    background-position: bottom right -100px, top left;
    position: relative;
    color: #fff;
}

.wrapper-footer a.logo {
    justify-content: center;
    filter: brightness(0) saturate(100%) invert(74%) sepia(8%) saturate(781%) hue-rotate(190deg) brightness(94%) contrast(87%);
}

.footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}


.footer-1,
.footer-2,
.footer-3 {
    width: 33.33%;
    text-align: center;
}


.footer-inner{
    max-width: 360px;
    margin: 0 auto;
}


.footer-inner h3 {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
    position: relative;
    padding-bottom: 15px;
    margin: 0;
    margin-bottom: 20px;
}
.footer-inner h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 6px;
    background-color: #fff;
    transform: translateX(-50%);
}

.footer-inner a {
    font-weight: 600;
    color: currentColor;
    text-decoration: none;
}

.footer-inner a.footer-lien {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.footer-inner  a.footer-lien::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: min(50%, 100px);
    height: 2px;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease 0s, transform 0s ease 0.2s;
}
.footer-inner  a.footer-lien:hover::before {
    transform: translateX(-50%) scaleX(1);
    transition: transform 0.2s ease 0s;
    opacity: 1;
}

.footer-inner .plan-site {
    list-style: none;
    padding: 0;
}
.footer-inner .plan-site li a {
    text-transform: uppercase;
    font-weight: 600;
    padding: 3px 0;
    display: inline-block;
}



.ordre-infirmiers {
    text-align: center;
    padding: 0 20px;
    margin-top: clamp(80px, 14vw, 170px);
}
.ordre-infirmiers img {
    max-width: 80%;
}


.mentions {
    position: relative;
    max-width: 1380px;
    margin: auto;
    text-align: center;
    padding: 40px 20px 60px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #626262;
}


.mentions a {
    color: #626262 !important;
    font-weight: bold;
    text-decoration: none;
}

.mentions a:hover {
    color: #949494 !important;
}

@media (max-width: 1320px) {
    .footer-1 {
        width: 100%;
        margin-bottom: 50px;
    }
    .footer-2, .footer-3 {
        width: 50%;
    }
}

@media (max-width: 660px) {
    .footer-2, .footer-3 {
        width: 100%;
    }
    .footer-2 {
        margin-bottom: 50px;
    }
}

@media (max-width: 460px) {
    .footer a.logo {
        --logo-scale: 0.8;
    }
}
@media (max-width: 350px) {
    .footer a.logo {
        --logo-scale: 0.7;
    }
}



div.galerie-photo {
    width: 33.33%;
    display: inline-block;
    vertical-align: top;
    padding: 18px;
    text-align: center;
}

div.galerie-photo img,
ul.images img {
    margin-bottom: 7px;
}

@media (max-width:800px) {
    div.galerie-photo {
        width: 50%;
    }
}


@media (max-width:500px) {
    div.galerie-photo {
        width: 100%;
    }
}




img.cadrephoto,
img.ombre,
ul.images img,
img.equipe {
    -moz-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.35);
    -o-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.35);
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#000, Direction=134, Strength=5);
}

a.lien-actu {
    color: inherit;
    text-decoration: none;
}




div.col1-2 {
    display: inline-block;
    vertical-align: top;
    width: 48%;
}

div.col2-2 {
    display: inline-block;
    vertical-align: top;
    margin-left: 4%;
    width: 48%;
}


@media (max-width:700px) {
    div.col1-2 {
        display: inline-block;
        vertical-align: top;
        width: 100%;
    }

    div.col2-2 {
        display: inline-block;
        vertical-align: top;
        margin-left: 0%;
        width: 100%;
        margin-top: 15px;
    }
}


div.col1-3,
div.col2-3,
div.col3-3 {
    display: inline-block;
    width: 30%;
    vertical-align: top;
}

div.col2-3,
div.col3-3 {
    margin-left: 5%;
}


@media (max-width:880px) {

    div.col1-3,
    div.col2-3,
    div.col3-3 {
        width: 50%;
        margin-bottom: 10px;
        margin-left: 0%;
        padding-left: 2%;
        padding-right: 2%;
    }

}

@media (max-width:480px) {

    div.col1-3,
    div.col2-3,
    div.col3-3 {
        width: 100%;
        margin-bottom: 10px;
        margin-left: 0%;
    }

}


.style-galerie {
    border: 1px solid #d8d8d8;
    background: rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 760px;
    margin: auto;
}

.wrapper-galerie {
    float: none;
    width: 100%;
    max-width: 720px;
    margin: auto;
    margin-bottom: 20px;
}

.photo_commentaire {
    display: block;
    text-align: center;
    text-decoration: none !important;
    color: #000;
    padding-top: 5px;
}


.ilightbox {
    text-decoration: none;
}




.wrapper-bande {}

.wrapper-boxed-bande {
    max-width: 1580px;
    margin: auto;
}


a[href^="tel"] {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}


div.map iframe {
    vertical-align: top;
}



input.form_submit,
a.bouton,
a.bouton-blanc,
a.bouton-footer {
    text-shadow: none;
    display: inline-block;
    padding: 15px 25px;
    background: linear-gradient(to top, transparent 50%, #3960f0 50%);
    background-size: 100% 200%;
    background-position-y: 0%;
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    text-transform: uppercase;
    transition: all 0.2s ease 0s;
    cursor: pointer;
    border: none;
}

@media (max-width: 500px) {
    input.form_submit,
    a.bouton,
    a.bouton-blanc,
    a.bouton-footer {
        font-size: 18px;
        padding: 10px 20px;
    }
}

input.form_submit:hover,
a.bouton:hover {
    background-position-y: calc(-100% - 5px);
    color: #3960f0;
}
a.bouton-footer:hover {
    background-position-y: calc(-100% - 5px);
    color: #ffffff;
}

a.bouton-blanc {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 25px;
    text-shadow: none;
}
a.bouton-blanc:hover {
    background: #fff;
    color: #373737;
}

.owl-carousel .owl-item img {
    margin: auto;
}

.owl-dots {
    display: none !important;
}



table.tableau {
    border-collapse: collapse;
}

table.tableau tr:first-of-type td {
    background: #8f8068;
    color: #fff;
    font-weight: bold;
}

table.tableau td {
    padding: 4px;
    border: 1px solid #ccc;
    background: #efefef;
}



.slick-dots li button {
    color: #fff !important;
}


.owl-carousel .owl-item img {
    margin: auto;
}

.owl-carousel .owl-item {
    text-align: center;
}

.carousel-ticker .owl-item {
    padding: 0px 20px;
}

.owl-dots {
    display: none;
}




/* isotope */

.isotope-grid-item {
    width: 25%;
}


@media (max-width:1200px) {
    .isotope-grid-item {
        width: 33.33%;
    }
}

@media (max-width:900px) {
    .isotope-grid-item {
        width: 50%;
    }
}

@media (max-width:420px) {
    .isotope-grid-item {
        width: 100%;
    }
}

.pix-masonry-photo {
    padding: 10px;
    text-align: center;
    color: #979797;
    font-size: 13px;
}


.pswp {
    z-index: 150000 !important;
}

.bleu {
    color: #a7afcc;
}


/* CAROUSEL ICONES */
.wrapper-bande-icones {
    position: relative;
    padding: 40px 0 40px;
    background: #e8e9eb;
}

.swiper-icones {
    position: relative;
    cursor: grab;
    
    max-width: 1920px;
    margin: 0 auto;
}
.swiper-icones:active {
    cursor: grabbing;
}

.swiper-icones .swiper-slide {
    text-align: center;
}

.wrapper-icone {
    margin: 0 20px;
    text-decoration: none;
    color: #5a5a5a;
    display: inline-block;
    max-width: 500px;
    text-align: center;
    padding: 30px 50px;
    border-radius: 20px;

    transition: all 0.3s ease 0s;
}

.wrapper-icone:hover {
    background: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}


.wrapper-icone-image {
    width: 120px;
    height: 120px;
    background-color: #3c3c3c;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease 0s;
}


.wrapper-icone-image img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.wrapper-icone-texte {
    color: #121212;
    max-width: 250px;
    margin: 0 auto;
    transition: all 0.3s ease 0s;
}
.wrapper-icone-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 25px;
}
.wrapper-icone-texte p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.1;
    margin-top: 10px;
}


.wrapper-icone:hover .wrapper-icone-image {
    background-color: #3960f0;
}
.wrapper-icone:hover .wrapper-icone-texte {
    color: #3960f0;
}

@media (max-width: 700px) {
    .wrapper-icone {
        padding: 30px 25px;
    }

    .wrapper-bande-icones {
        padding: 20px 0 20px;
    }
    .wrapper-icone-image {
        width: 100px;
        height: 100px;
    }
    .wrapper-icone-image img {
        width: 48px;
        height: 48px;
    }
    .wrapper-icone-texte h3 {
        font-size: 18px;
        margin-top: 20px;
    }
    .wrapper-icone-texte p {
        font-size: 16px;
        margin-top: 7px;
    }
}


/* CAROUSEL ACTUS */
.wrapper-bande-actus {
    position: relative;
    padding: 40px 0 40px;
}
.wrapper-bande-actus h2.h1 {
    max-width: 1820px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 30px;
    font-size: clamp(26px, 4vw, 48px);
}
.wrapper-bande-actus h2.h1 .line {
    display: inline-block;
    width: 60px;
    height: 9px;
    background: #3c3c3c;
}


.swiper-actus {
    position: relative;
    cursor: grab;
    
    max-width: 1920px;
    margin: 0 auto;
}
.swiper-actus:active {
    cursor: grabbing;
}

.swiper-actus .swiper-slide {
    text-align: center;
}

.wrapper-actu {
    margin: 0 20px;
    text-decoration: none;
    color: #5a5a5a;
    display: inline-block;
    max-width: 500px;
    text-align: left;

    position: relative;
    
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
}

.wrapper-actu .actu {
    color: currentColor;
    text-decoration: none;
}


.wrapper-actu-image img {
    vertical-align: top;
}

.wrapper-actu-texte {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 80px 20px 30px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 1);
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
    min-height: 120px;
}
.wrapper-actu-texte h3 {
    margin: 0;
    line-height: 1.2;
    font-size: 22px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    color: #fff;
}
.wrapper-actu-texte .plus {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #3960f0;
    display: block;
    width: 100%;
    height: calc(100% - 30px);
    z-index: 2;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, calc(100% - 100px) 100%);
    transition: clip-path 0.3s ease;
}
.wrapper-actu-texte .plus::before {
    content: '+';
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    position: absolute;
    bottom: 12px;
    right: 18px;
    text-shadow: none;

    transition: transform 0.3s ease;
}

.wrapper-actu .actu:hover .wrapper-actu-texte .plus {
    clip-path: polygon(0 0, 100% 0, 100% 100%, -100px 100%);
}

.wrapper-actu .actu:hover .wrapper-actu-texte .plus::before {
    text-shadow: 0 -1px 3px rgba(0, 0, 0, 1);
    transform: rotate(90deg);
}

@media (max-width: 750px) {
    .wrapper-actu-texte {
        padding-left: 20px;
    }
    .wrapper-actu-texte h3 {
        font-size: 18px;
    }
}




/* BANDE FAQ */
.wrapper-bande-faq {
    position: relative;
    padding: 100px 20px 100px;
    background: url('i/motif-faq.svg'), linear-gradient(to right, #434343, #353535);
    background-position: center center;
    background-size: auto 100%;
    color: #fff;
    text-align: center;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
    font-size: clamp(19px, 3vw, 22px);
}

.bande-faq-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.wrapper-bande-faq h2 {
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    padding: 0;
}


/* BANDE CONTACT */
.wrapper-bande-contact {
    display: grid;
    grid-template-columns: 1fr 150px 1fr;
}

.bande-contact-texte {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    text-align: right;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5));
}

.bande-contact-texte-inner {
    background: #e8e9eb;
    clip-path: polygon(0 0, calc(100% - 150px) 0, 100% 100%, 0 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 50px;
    padding-right: calc(50px + 150px);
}
.bande-contact-texte-inner div {
    max-width: 600px;
}

.bande-contact-image {
    grid-row: 1 / 2;
    grid-column: 2 / 4;
}

.bande-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .wrapper-bande-contact {
        grid-template-columns: 1fr 75px 1fr;
    }
    .bande-contact-texte-inner {
        padding: 30px;
        padding-right: calc(50px + 75px);
        clip-path: polygon(0 0, calc(100% - 75px) 0, 100% 100%, 0 100%);
    }
}

@media (max-width: 860px) {
    .wrapper-bande-contact {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 50px auto;
    }

    .bande-contact-texte {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .bande-contact-texte-inner {
        padding: 30px;
        padding-bottom: calc(30px + 25px);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 50px));
    }

    .bande-contact-image {
        grid-row: 2 / 4;
        grid-column: 1 / 2;
    }
}



/* BANDEAU ACCUEIL */
.wrapper-bandeau-accueil {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1920px;
    margin: 0 auto;
}
.bandeau-accueil-texte {
    width: 50%;
    align-self: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}
.bandeau-accueil-image {
    width: max-content;
    background: linear-gradient(to left,  #323232 50%, transparent 50%);
    text-align: right;
    padding: 50px 50px;
    align-content: center;
}
.bandeau-accueil-image img {
    vertical-align: top;
    mask-image: url('i/mask-accueil.svg');
    mask-size: 100% 100%;;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('i/mask-accueil.svg');
    -webkit-mask-size: 100% 100%;;
    -webkit-mask-repeat: no-repeat;
}

@media (max-width: 960px) {
    .wrapper-bandeau-accueil {
        flex-direction: column;
    }
    .bandeau-accueil-texte {
        width: 100%;
    }
    .bandeau-accueil-image {
        width: 100%;
        background: linear-gradient(to top, #323232 40%, transparent 40%);
        padding: 0 30px 20px;
        text-align: center;
        margin-top: -40px;
    }
    .bandeau-accueil-image img {
        max-width: min(300px, 100%);
    }
}

@media (max-width: 520px) {
    .bandeau-accueil-image {
        margin-top: -20px;
    }
}



/* FAQ */
.faq-container {
    background-color: #fff;
    /* max-width: 800px; */
}

.faq-question {
    margin: 0px;
    padding: 7px 40px 7px 10px;
    display: block;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    
    border: 2px solid rgb(204, 204, 204);
    border-bottom-color: transparent;
}

.faq-answer-container {
    height: 0px;
    overflow: hidden;
    border: 2px solid rgb(204, 204, 204);
    border-top-color: transparent;
    margin-top: -4px;
}

.faq-answer-inner {
    padding: 16px;
    padding-top: 0;
}

.faq.open .faq-question {
}

.faq-bouton {
    padding:7px 8px 0px 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 0px;
    transition: all 0.2s ease-in-out 0s;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
}

.faq.open .faq-bouton {
    transform: translateY(-50%) rotate(90deg);
}

.faq-bouton img {width:8px;height:calc(8px * 21 / 15);display: block;}




/* RESPONSIVE FORMULAIRE */
.formulaire {
    display: block;
  }
  .formulaire tbody {
    display: block;
  }
  .formulaire tr {
    display: flex;
    flex-direction: column;
  }
  .formulaire th {
    text-align: left;
    padding: 5px;
  }
  .formulaire td {
    padding: 5px;
    line-height: 1;
  }
  .formulaire td input:not([type="checkbox"]), .formulaire td textarea {
    width: 100%;
  }
  .formulaire-envoyer {
    text-align: left;
  }






/* CARTE INTERVENTION */
.wrapper-carte-intervention {
    max-width: 300px;
    float: right;
    width: 100%;
}
.wrapper-carte-intervention .legend {
    text-align: center;
    display: inline-block;
    width: 100%;
}

@media (max-width: 800px) {
    .wrapper-carte-intervention {
        max-width: 100%;
        float: none;
    }
}</pre></body></html>