@font-face {
    font-family: "source-sans-3";
    src: url("https://use.typekit.net/af/7820c6/0000000000000000774d56f5/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/7820c6/0000000000000000774d56f5/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/7820c6/0000000000000000774d56f5/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
}

@font-face {
    font-family: "greycliff-cf";
    src: url("https://use.typekit.net/af/6f536c/00000000000000007735fa47/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/6f536c/00000000000000007735fa47/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/6f536c/00000000000000007735fa47/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
}

@font-face {
    font-family: "greycliff-cf";
    src: url("https://use.typekit.net/af/72d0b3/00000000000000007735fa49/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3") format("woff2"), url("https://use.typekit.net/af/72d0b3/00000000000000007735fa49/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3") format("woff"), url("https://use.typekit.net/af/72d0b3/00000000000000007735fa49/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 800;
    font-stretch: normal;
}

@font-face {
    font-family: "greycliff-cf";
    src: url("https://use.typekit.net/af/f21cb7/00000000000000007735fa4a/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff2"), url("https://use.typekit.net/af/f21cb7/00000000000000007735fa4a/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("woff"), url("https://use.typekit.net/af/f21cb7/00000000000000007735fa4a/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n9&v=3") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 900;
    font-stretch: normal;
}


html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    font-family: sans-serif;
}


body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    font-family: source-sans-3, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
    line-height: 1.48;
    position: relative;
}


* {
    box-sizing: border-box;
}

a, a:visited {
    color: #111;
}

img {
    backface-visibility: hidden;
    width: 100%;
    display: block;
}

/* Bouton menu_hamburger optimisé */
.menu_hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
    border-radius: .125em;
    transition: all 0.2s ease;
    position: fixed;
    top: 1em;
    right: 1em;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.menu_hamburger:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.menu_hamburger:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.menu_hamburger span {
    width: 25px;
    height: 1.75px;
    background-color: #111;
    transition: all 0.2s ease;
    transform-origin: center;
    display: block;
}


.menu_hamburger span:nth-child(3) {
    width: 19px;
    margin-right: 6px;
}

.menu_hamburger span:not(:last-child) {
    margin-bottom: 5px;
}

/* Animation du menu_hamburger - plus fluide */
.menu_hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(0, 0);
    background: #fff;
}

.menu_hamburger.active span:nth-child(2) {
    transform: rotate(45deg) translate(0, 10px);
    margin-left: 14px;
    background: #fff;
}

.menu_hamburger.active span:nth-child(3) {
    opacity: 0;
    transform: scale(0);
}

.menu_hamburger.active span:nth-child(4) {

    transform: rotate(-45deg) translate(0, -10px);
    margin-left: 14px;
    background: #fff;
}

/* Menu slide overlay - optimisé */
.menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(45deg, #002770 0%, #12418C 100%);
    z-index: 999;
    transform: translateX(-100vw);
    transition: all 0.45s ease;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    will-change: transform;
    opacity: 0;
    visibility: hidden;
}

/* Menu ouvert - animation fluide */
.menu_overlay.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Navigation du menu - SEO friendly */
.menu_nav {
    list-style: none;
    margin: 0;
    padding: 2em;

    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.menu_nav li {
    transition: all 0.25s ease;
    flex-basis: 100%;
}

.menu_overlay.active .menu_nav li {
    opacity: 1;
    transform: translateY(0);
}

/* Animation en cascade optimisée */

.menu_nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2em;
    font-weight: 400;
    line-height: 1;
    padding: .25em 1em;
    display: block;
    transition: all 0.2s ease;
    position: relative;
}

.menu_nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0);
    transition: all 0.25s ease;
}

.menu_nav a:hover::before {
    width: 25%;
    background: rgba(255, 255, 255, 0.25);
}

.menu_nav a:hover {
    color: #ffffff;
}

.menu_nav a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}


/* Performance et accessibilité */
.sr_only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu_overlay,
.menu_hamburger span {
    backface-visibility: hidden;
    /* perspective: 1000px; */
}

.topnav {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 4em;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.logo_topnav a,
.logo_topnav a:visited {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: greycliff-cf, sans-serif;
    color: #0043BF;
    text-decoration: none;
    transition: all .2s ease;
}

.logo_topnav img {
    width: 2em;
    object-fit: contain;
    transition: all .2s ease;
}

.logo_topnav:hover {
    opacity: .75;
}

.topnav_list ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.topnav_list ul li a,
.topnav_list ul li a:visited {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-decoration: none;
    padding: .75em 2em;
    font-size: 1.075em;
    color: #111;
    transition: all .1s ease;
}

.topnav_list ul li a:hover,
.topnav_list ul li a:visited:hover {
    opacity: .75;
}

.topnav_list a:hover,
.topnav_list a:focus {
    /* background-color: #f0f0f0; */
    outline: 2px solid #0059FF;
    border-radius: .125em;
    outline-offset: -2px;
}

.topnav_dropdown {
    position: relative;
}

.topnav_dropdown ul {
    display: flex;
    position: absolute;
    top: 52px;
    left: 0;
    padding: 0;
    margin: 0;
    border-radius: .125em;
}

/* Indicateur visuel pour dropdown */
.topnav_dropdown>a::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle%3Echevron-down%3C/title%3E%3Cpath d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.5em;
    width: 1.5em;
    height: 1.5em;
    font-size: 0.8em;
    margin: 0 0 0 .5em;
    fill: #494949;
    transition: transform 0.1s ease;
}

.topnav_dropdown>a[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Menu dropdown */
.topnav_dropdown_menu {
    /* position: absolute; */
    /* top: 48px; */
    /* left: 0; */
    background: #ffffff;
    min-width: 240px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease;
}

/* Affichage du dropdown */
.topnav_dropdown:hover .topnav_dropdown_menu,
.topnav_dropdown>a[aria-expanded="true"]+.topnav_dropdown_menu {
    opacity: 1;
    visibility: visible;
}

.topnav_dropdown_menu li {
    display: block;
    width: 100%;
    /* padding: 1em; */
}

/* Style des liens du dropdown */
.topnav_dropdown_menu a,
.topnav_dropdown_menu a:visited {
    display: block;
    width: 100%;
    padding: 1em;
    border-bottom: 1px solid #eee;
    color: #555;
}

.topnav_dropdown_menu a:hover,
.topnav_dropdown_menu a:focus {
    background-color: #f8f9fa;
    color: #0059FF;
}

/* Amélioration du focus */
a:focus-visible {
    outline: 3px solid #0059FF !important;
    outline-offset: 2px;
    border-radius: .125em;
}

header {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2em;
    background-image: url("/img/background-header-wide-1920px.png"), linear-gradient(45deg, #FFE09Cb4, #FFF7E6, #FFE8F4);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 50%;
}

.header_page_about {

    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2em;
    background-image: url("/img/background-header-about-3.png"), linear-gradient(45deg, #EDF8FF, #F1F0FF, #E3F9FF);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 50%;
}

.header_page_articles {

    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2em;
    background-image: url("/img/background-header-wide-1920px.png"), linear-gradient(45deg, #E3F9FF, #EEFFEB, #FCFFE0);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 50%;
}

.header_page_patients {

    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2em;
    background-image: url("/img/background-header-patients.png"), linear-gradient(45deg, #FFF7E6, #FFE8F4, #FCFFE0);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 50%;
}

.header_col_50 {
    flex-basis: 100%;
    padding: 2em;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 840px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "greycliff-cf", sans-serif;

    font-weight: 900;
    color: #151515;
}

h1 {
    font-size: 8em;
    color: #252525;
    line-height: .9;
    padding: 0 0 0;
    margin: 0 0;
    line-height: 1;
    font-weight: 900;
}

h1 span {
    display: block;
    font-size: .5em;
    color: #252525;
    line-height: .9;
    margin: 0 0 .25em 0;
}


.header_col_50:nth-child(2) {
    max-width: 640px;
}

.header_description {
    display: block;
    font-size: 1.125em;
    max-width: 560px;
    margin: .25em 0 0;
}

.header_buttons {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 560px;
}


.header_buttons a,
.header_buttons a:visited {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: .75em 1em;
    /* background: #003EB3; */
    /* background: #0044CC; */
    /* border: 3px solid #003EB3; */
    /* border: 3px solid #0080FF; */
    border: 3px solid #1C6BFF;
    margin: 1em 1em 1em 0;
    border-radius: .5em;
    font-size: 1.25em;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: all .2s ease;
    position: relative;
    z-index: 2;
}

.header_buttons a svg,
.header_buttons a:visited svg {
    width: 1em;
    height: 1em;
    fill: #111;
    transition: all .2s ease;
    margin: 0 .5em 0 0;
}

.header_buttons a:hover,
.header_buttons a:visited:hover {
    background: #1C6BFF;
    color: #fff;
}

.header_buttons a:hover svg,
.header_buttons a:visited:hover svg {

    fill: #fff;
}

/* main {
    padding: 2em;
} */

.container {
    display: block;
    padding: 4em;
    max-width: 1600px;
    font-size: 1.25em;
}


.intro_text_flex {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    padding: 2em;
}

.intro_text_col_30 {
    flex-basis: 33.33333%;
    padding: 4em;
    position: relative;
}

.intro_text_col_40 {
    flex-basis: calc(45% - 1em);
    padding: 2em;
    position: relative;
}

.intro_text_col_50 {
    flex-basis: 50%;
    padding: 4em;
    position: relative;
}

.intro_text_col_60 {
    flex-basis: calc(55% - 1em);
    padding: 2em;
    position: relative;
}

.intro_text_col_60 p {
    max-width: 560px;
}

.intro_text_col_100 {
    flex-basis: 100%;
    padding: 4em;
    height: 50vh;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-image: url("/img/background-title-intro-800px.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 25% 50%;
}

.intro_text_col_100::after {

    content: "";
    display: block;
    position: absolute;
    width: 50vh;
    height: 50vh;
}

@keyframes float_yellow_bg {
    0% {
        transform: translateY(-1em);
    }

    50% {
        transform: translateY(1em);
    }

    100% {
        transform: translateY(-1em);
    }

}

.intro_text_col_40:nth-child(1) {
    border-radius: 2em 0 2em 0;
    /* border-right: 2px solid #DBE8FF; */
    /* border-bottom: 2px solid #DBE8FF; */
    padding: 2em 0 2em 2em;
    /* display: flex; */
    /* justify-content: flex-end; */
}

.intro_text_col_60:nth-child(2) {
    border-radius: 2em 0 2em 0;
    /* border: 2px solid #DBE8FF; */
    border-right: 2px solid #DBE8FF;
    border-bottom: 2px solid #DBE8FF;
    /* padding: 4em; */
}

.intro_text_col_40:nth-child(1) h2 {
    padding: .75em 0;
    padding: 1em 0;
    margin: 0;
    font-size: 3em;
    line-height: 1.16;
    text-shadow: 0 0 16px #fff;
}

.intro_text_col_40:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: -2em;
    left: -2em;
    width: 50vh;
    height: 50vh;
    border-radius: 2em;
    background-image: url("/img/background-title-intro-640px.png");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.center_flex {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    /* padding: 1em; */
}

.container_text {
    max-width: 640px;
    margin: auto;
}

.container_text h2 {
    padding: 1em 0;
    margin: 0;
    font-size: 2.5em;
    line-height: 1.16;
    text-shadow: 0 0 16px #fff;
}

.container_text_buttons a,
.container_text_buttons a:visited {
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: .75em 1em;
    border: 3px solid #1C6BFF;
    margin: 1em 1em 1em 0;
    border-radius: .5em;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: all .2s ease;
    position: relative;
    z-index: 2;
    width: auto;
}

.container_text_buttons a:hover,
.container_text_buttons a:visited:hover {
    background: #1C6BFF;
    color: #fff;
}

.container_text_buttons a svg,
.container_text_buttons a:visited svg {
    width: 1em;
    height: 1em;
    fill: #111;
    transition: all .2s ease;
    margin: 0 .5em 0 0;
}

.container_text_buttons a:hover svg,
.container_text_buttons a:visited:hover svg {

    fill: #fff;
}


.home_news_flex {
    display: flex;
    width: 100%;
    align-items: stretch;
    align-content: stretch;
    justify-content: space-between;
    flex-wrap: wrap;

    /* background: #f1f5fa; */
    /* /* padding: 2em  ; */
}

.home_news_col_50 {
    flex-basis: calc(50% - 1.5em);
    margin: 0 0 2em;
    border: 2px solid red;
}

.home_news_col_50 img {
    aspect-ratio: 16 / 6;
    object-fit: cover;
}

.home_news_col_25 {
    flex-basis: calc(25% - 1.5em);
    margin: 0 0 2em;
    border: 2px solid red;
}

.home_news_col_25 img {
    aspect-ratio: 160 / 126.375;
    object-fit: cover;
}

.home_news_col_30 {
    flex-basis: calc(33.33333% - 1.5em);
    margin: 0 0 2em;
    border: 2px solid red;
}

.home_news_col_30 img {
    aspect-ratio: 16 / 6;
    object-fit: cover;
}

.homepage_articles {
    display: flex;
    width: 100%;
    align-items: stretch;
    align-content: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;

    /* background: #f1f5fa; */
    /* /* padding: 2em  ; */
}

.homepage_article_container {
    flex-basis: calc(33.3333% - 1.5em);
    /* border: 1px solid #DBE8FF; */
    border-radius: .125em;
    padding: 2em 2em 1em;
    margin: 0 0 2em;
    display: flex;
    align-items: stretch;
    align-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
    /* background: linear-gradient(45deg, #ededf5, #E1E5E6 ); */
    box-shadow: 8px 8px 24px #dfe2e4;
}


.homepage_article_container h3 {
    font-size: 1.5em;
    line-height: 1.32;
    padding: 1em 0 0;
    margin: 0;
}


.homepage_article_container p {
    margin: .5em 0;
    font-size: .875em;
    color: #212121;
}

.homepage_article_container img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.homepage_article_container a,
.homepage_article_container a:visited {
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: .75em 1em;
    border: 2px solid #0047D4;
    margin: 0 1em 1em 0;
    border-radius: .125em;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: all .2s ease;
    position: relative;
    z-index: 2;
    width: auto;
}

.homepage_article_container a:hover,
.homepage_article_container a:visited:hover {
    background: #0047D4;
    color: #fff;
}

.homepage_article_container a svg,
.homepage_article_container a:visited svg {
    width: 1em;
    height: 1em;
    fill: #111;
    transition: all .2s ease;
    margin: 0 .5em 0 0;
}

.homepage_article_container a:hover svg,
.homepage_article_container a:visited:hover svg {

    fill: #fff;
}


.directory_flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.directory_member {
    flex-basis: calc(25% - 1em);
    padding: 2em;
    margin: 0 0 2em;
    border: 1px solid #ddd;
}

.directory_member h4 {
    padding: 0 0;
    margin: .5em 0;
}

.backtotop a,
.backtotop a:visited {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 1em;
}


.backtotop a svg,
.backtotop a:visited svg {
    fill: #111;
}


.about_page_content_skip span {
    display: block;
    padding: 1em 0 0;
}

.about_page_content_skip span svg {
    display: inline-flex;
    width: 1em;
}

.about_page_content_skip ul {
    font-size: 1.25em;
    margin: 1em 0;
}

.about_page_content_skip ul li a,
.about_page_content_skip ul li a:visited {
    text-decoration: none;
}

.about_page_content_skip ul li a:hover,
.about_page_content_skip ul li a:visited:hover {
    color: #0043BF
}

/* .page_contact_main {
      background: linear-gradient(45deg, #ededff, #ededff);
} */

.page_contact {
    display: block;
    /* padding: 1em; */
    background: #fff;
    border-radius: 1em;
    border: 1px solid #dfe2e4;
    padding: 2em 0;
    box-shadow: 8px 8px 32px #dfe2e4;
}

.page_contact form {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 2em;
}

.page_contact form label,
.page_contact form textarea {
    flex-basis: 100%;
    width: 100%;
    padding: 1em 0 0;
}

.page_contact form label input,
.page_contact form textarea {
    flex-basis: 100%;
    width: 100%;
    padding: .5em;
    border-radius: .25em;
    border: 1px solid #1C6BFF;
}

.page_contact button {
    padding: .5em 2em;
    font-family: source-sans-3, sans-serif;
    font-size: 1.125em;
    font-weight: 800;
    margin: 1em;
    border-radius: .5em;
    background: #004bd7;
    border: 3px solid #004bd7;
    color: #fff;
    transition: all .1s ease;
}

.page_contact button:hover {
    cursor: pointer;
    background: #fff;
    color: #004bd7
}


footer {
    display: block;
    background: linear-gradient(45deg, #FFE8E6a5, #FFE7E3a5);

    /* background: linear-gradient(45deg, #E6F9FF, #E2DEFF ); */
    /* background: #2B3547; */
    /* background: #1B2840; */
    font-size: 1.125em;
    padding: 2em 4em 0;
}


.footer_flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1920px;
    width: 100%;
    flex-basis: 100%;
}


.footer_flex:nth-of-type(2) {
    border-bottom: 1px solid #C8CACC;
}


.footer_col_30 {
    flex-basis: calc(33.3333% - 2em);
    padding: 2em;
}

.footer_flex:nth-of-type(3) .footer_col_30 {
    padding: 1em 2em;
    font-size: .875em;
}

.footer_col_30 h2 {
    font-size: 2em;
    display: block;
    padding: 0;
    margin-top: 0;
}

.footer_logo img {
    display: inline-flex;
    width: 2em;
}


.footer_col_30 h2 span {
    display: block;
    width: 100%;
    font-size: .75em;
}

.footer_place p {
    display: inline-flex;
}

.footer_place svg {
    width: 1em;
    display: inline-flex;
    margin: 0 0.25em 0 0;
}

.footer_pages_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    flex-basis: 100%;
}

.footer_pages_list ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    flex-basis: 100%;
}


.footer_pages_list ul li {
    flex-basis: auto;
}

.footer_pages_list ul li a,
.footer_pages_list ul li a:visited {
    padding: .25em 2em .25em 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-decoration: underline;
    transition: all .2s ease;
}


.footer_pages_list ul li a:hover,
.footer_pages_list ul li a:visited:hover {
    /* opacity: .75; */
    color: #1C6BFF
}

@media (max-width: 1024px) {

    h1 {
        font-size: 5em;
    }

    h2 {
        font-size: 3em;
    }

    h3 {
        font-size: 2em;
    }

    .container {
        padding: 2em;
    }

    .intro_text_col_40 {
        padding: 2em;
    }

    .intro_text_col_60 {
        padding: 2em;
    }

    .intro_text_col_40:nth-child(1) {
        padding: 0;
    }

    .intro_text_col_60:nth-child(2) {
        padding: 0;
    }

    .intro_text_col_40:nth-child(1) h2 {
        font-size: 2.5em;
    }

    .homepage_article_container {
        flex-basis: calc(50% - 1em);
    }

    .directory_member {
        flex-basis: calc(33.3333% - 1em);
    }

    .footer_col_30 {
        flex-basis: calc(50% - 2em);
        padding: 1em;
    }
}


@media (max-width: 920px) {
    .topnav {
        display: none
    }
}

@media (max-width: 768px) {

    .header_buttons a,
    .header_buttons a:visited, .container_text_buttons a, .container_text_buttons a:visited {
        margin: .5em .5em .5em 0;
    }

    .menu_overlay {
        transform: all .15s ease !important;
    }

    header {
        padding: 0;
    }

    .header_col_50 {
        padding: 1em;
    }

    .intro_text_flex {
        padding: 0;
    }

    .intro_text_flex {
        flex-basis: 100%;
    }

    h1 {
        font-size: 3em;
    }

    h1 span {
        font-size: .5em;
    }

    h2 {
        font-size: 1.5em;
    }

    .container_text h2 {
        font-size: 1.5em;
    }

    .intro_text_col_40:nth-child(1) h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.25em;
    }

    .homepage_article_container h3 {
        font-size: 1.25em;
        padding: 0;
    }

    .homepage_article_container p {
        padding: 1em 0;
    }

    .container {
        padding: 1em;
    }

    .intro_text_col_40 {
        padding: 2em;
        flex-basis: 100%;
    }

    .intro_text_col_60 {
        padding: 2em;
    }

    .intro_text_col_40:nth-child(1) {
        padding: 0;
        flex-basis: 100%;
    }

    .intro_text_col_60:nth-child(2) {
        padding: 0;
        flex-basis: 100%;
    }

    .intro_text_col_100 {
        padding: 1em 0;
    }

    .homepage_article_container {
        flex-basis: calc(100% - 0em);
        padding: 1em 0;
        box-shadow: 0 0 0 #ffffff00;
        border-bottom: 1px solid #ccc;
    }

    .homepage_article_container img {
        display: none;
    }

    .directory_member {
        flex-basis: calc(100% - 0em);
    }

    footer {
        padding: 1em 1em;
    }

    .footer_col_30 {
        flex-basis: calc(100% - 0em);
        padding: 1em 0;
    }

    .footer_flex:nth-of-type(3) .footer_col_30 {
        padding: .5em 0 0;
    }

    .header_page_about,
    .header_page_articles,
    .header_page_patients {
        padding: .5em;
    }

    .page_contact,
    .page_contact form {
        padding: .5em;
    }
}