<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #F28A20;
    --light: #C5C5C5;
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* overflow-x: hidden; */
}

.mb-5 {
    margin-bottom: 5vh;
}

img {
    border-radius: 10px;
}

.col-left,
.col-right {
    grid-column: 1;
}

.accessibilite-card {
    display: grid;
    grid-template-rows: 0.2fr 0.2fr 1fr;
    padding: 0.5vh 2vw;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.accessibilite-card:hover {
    transform: translateY(5%);
}

.accessibilite-pic {
    margin: 2vh 0;
}

.card--expertise {
    text-align: center;
    justify-self: center;
    width: 100%;
    padding: 0 2vw;
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    flex-direction: column;
    box-shadow: var(--shadow);
    justify-content: space-evenly;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card--expertise::before {
    left: -20%;
    width: 140%;
    content: "";
    bottom: -20%;
    opacity: 0.1;
    height: 140%;
    position: absolute;
    transition: opacity 0.3s ease;
    background: linear-gradient(45deg, var(--primary) 0%, transparent 60%);
}

.expertise--pic {
    align-self: center;
}

.card--picture {
    box-shadow: var(--shadow);
    border-radius: 4px;
    padding: 0.5vh 0.25vw;
    margin: auto;
    height: 15dvh;
    width: 100%;
    border-radius: 5px;
    background-color: #FFF;
}

.card--picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card--project img {
    width: 100%;
}


.card--project {
    width: 100%;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.primary-link-button {
    height: 10vh;
    padding: 0 1vw;
    line-height: 1;
    border-width: 0;
    cursor: pointer;
    appearance: none;
    color: #36395A;
    list-style: none;
    overflow: hidden;
    text-align: left;
    user-select: none;
    position: relative;
    border-radius: 4px;
    white-space: nowrap;
    align-items: center;
    display: inline-flex;
    justify-self: center;
    text-decoration: none;
    box-sizing: border-box;
    justify-content: center;
    -webkit-user-select: none;
    touch-action: manipulation;
    background-color: #FCFCFD;
    will-change: box-shadow, transform;
    transition: box-shadow .15s, transform .15s;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.primary-link-button:hover {
    transform: translateY(-2px);
    box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.margin-md {
    margin: 0 5vw;
}

.section-intro {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-container {
    position: relative;
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.responsive-iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

.centers-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.center-card {
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.center-card:hover {
    transform: translateY(-5px);
    border-color: #F28A20;
}

.center-title {
    color: #3F66AF;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.center-address {
    color: #555;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pin-icon {
    flex-shrink: 0;
}

.center-link {
    color: #F28A20;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.center-link:hover,
.center-link:focus {
    text-decoration: underline;
    outline: 2px solid #F28A20;
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


@media (min-width: 48em) {
    .container {
        gap: 10vh;
    }

    .col-right {
        grid-column: 2;
    }

    .grid-expertise {
        grid-auto-flow: column;
    }

    .card--expertise {
        width: 90%;
    }

    .card--project:nth-child(even) {
        transform: translateY(50%);
    }

    .card--project:nth-child(even):hover {
        transform: translateY(45%);
    }

    .card--project:nth-child(odd):hover {
        transform: translateY(5%);
    }

    .primary-link-button {
        height: 5vh;
        grid-column: span 2;
    }

    .grid-project .primary-link-button {
        transform: translateY(400%);
        margin-bottom: 25vh;
        width: 60%;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .centers-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .responsive-iframe {
        height: 400px;
    }
}

@media (min-width: 64em) {
    .grid-expertise {
        width: 50%;
        justify-self: center;
    }

    .accessibilite-section {
        display: grid;
    }

    .accessibilite-card {
        grid-template-rows: 0.1fr 0.1fr 0.7fr;
    }

    .accessibilite-card svg {
        height: 100%;
        width: auto;
    }

    .accessibilite-pic {
        height: auto;
        width: 50%;
        justify-self: center;
    }

    .card--project {
        width: 100%;
        gap: 1.5rem;
        display: grid;
        align-items: start;
        grid-template-columns: 1fr 2fr;
    }

    .card--project figure {
        margin: 0;
        grid-row: 1 / span 2;
    }

    .card--project h3,
    p {
        justify-self: start;
    }

    .grid-project .primary-link-button {
        transform: translateY(250%);
        width: 30%;
    }

    .margin-md {
        margin: 0 10vw;
    }

    .commitement-section {
        grid-template-columns: repeat(3, 1fr);
    }

    .commitement-section p {
        grid-column: span 2;
        align-self: center;
    }

}</pre></body></html>