﻿/*BASIC BLUE -> #26343b */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;800&display=swap');
html {
    scroll-behavior: smooth;
}
/*@font-face {
    font-family: OptimaLTPro;
    src: url('../font/OptimaLTPro-Medium.otf');
}

@font-face {
    font-family: OptimaLTPro;
    font-weight: bold;
    src: url('../font/OptimaLTPro-Bold.otf');
}*/
*:hover {
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
body {
    font-family: Calibri, sans-serif;
    font-size: 18px;
    padding: 0;
    margin: 0;
    width: 100%;
    letter-spacing: -0.5px;
}
.basicContent {
    padding: 20px 0;
}
a:link {
    color: #26343b;
}
    a:link:hover {
        color: #468bcb;
    }
.socialTop {
    background: #26343b;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    z-index: 2;
    position: relative;
}
.socialList ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
    .socialList ul li {
        display: inline-block;
    }
        .socialList ul li a {
            color: white !important;
            text-decoration: none;
            font-size: 1.7em;
            padding: 0 7px;
            opacity: 1;
        }
            .socialList ul li a:hover {
                opacity:0.7;
            }
.roundBt {
    display: inline-block;
    border-radius: 99px;
    padding: 10px 20px 7px 45px;
    text-decoration: none !important;
    position: relative;
    opacity: 1
}
    .roundBt:hover {
       opacity:0.8;
    }
.conectionBtn {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.IconBtn img {
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    margin: auto;
    max-height: 18px;
}
.purpleBtn {
    background-color: #26343b;
    color: white !important;
}
.socialBtns a {
    padding: 10px 20px 7px 45px;
}
.whiteBtn {
    background-color: white;
    color: black;
}
.conectionBtn .roundBt {
    padding: 5px 10px 5px 15px;
    color: white;
    color: #26343b;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 165px;
    margin-left: 20px;
    font-size: 17px;
}
    .conectionBtn .roundBt i {
        margin-left: 5px;
        font-size: 25px;
    }
    .conectionBtn .roundBt img {
        position: absolute;
        right: 17px;
        top: 0;
        bottom: 0;
        margin: auto;
        max-height: 18px;
    }
.socialBtns a {
    margin: 0 3px;
}
footer {
    background: #fafafa;
    border-top: 1px solid lightgray;
    margin-top: 10px;
}
.footCont {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}
.footAdd {
    width: 70%;
}
    .footAdd ul.horizontalList {
        text-align: right;
    }
ul.horizontalList {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
    ul.horizontalList li {
        display:inline-block;
        position:relative;
    }
ul.subMenu {
    padding: 0;
    margin-top: 10px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 200px;
    background: #26343b;
    padding: 0;
    border-radius: 5px;
    box-shadow: 0px 0px 29px -3px rgb(0 0 0 / 10%), 0px 10px 15px -3px rgb(0 0 0 / 10%);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
    ul.subMenu li {
        display: block;
        margin:5px 0;
    }
        ul.subMenu li a {
            font-size: 14px;
            display: block;
            /* width: 100%; */
            color: white;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding: 5px 20px;
        }
        ul.subMenu li:last-child a {
            border: none;
        }
            ul.subMenu li a:hover {
                opacity: 1;
                color: #cdcdcd;
            }
ul.horizontalList li:hover ul.subMenu {
    opacity: 1;
    visibility: initial;
}
.footAdd ul li {
    width: 20.333%;
    vertical-align: top;
    padding: 0px 20px;
    text-align: left;
}
    .footAdd ul li h1 {
        font-size: 1em;
        margin-bottom: 5px;
        position: relative;
    }
/*        .footAdd ul li h1:before {
            content: "";
            position: absolute;
            background-color: #e5bf16;
            width: 3px;
            height: 13px;
            display: block;
            top: 0;
            left: -10px;
            bottom: 0;
        }*/
    .footAdd ul li span {
        display: block;
        color: #626262;
        margin-top: 5px;
    }
.footLogo {
    width: 100%;
    max-width: 118px;
}
    .footLogo img {
        width: 100%;
    }
.footCopy {
    background: #26343b;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}
.footCopy a {
    color: white;
    text-decoration:none;
    opacity:1;
    margin: 0 2px;
}
    .footCopy a:hover {
        opacity: 0.6;
    }
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    -webkit-box-shadow: 0px 2px 12px -3px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 2px 12px -3px rgba(0,0,0,0.4);
    box-shadow: 0px 2px 12px -3px rgba(0,0,0,0.4);
    z-index: 1;
    position: relative;
    background: white;
}
.menuImg {
    max-width: 303px;
}
    .menuImg img {
        width: 80%;
    }
.mainMenu a {
    color: #26343b;
    text-decoration: none;
    font-size: 0.9em;
    padding: 5px 7px;
    opacity: 1;
    letter-spacing: -0.5px;
}
    .mainMenu a:hover {
        opacity: 0.8;
    }
ul.horizontalList > li > a:hover {
    color: #455861;
}
a.roundBt.greenBt {
    background-color: #e5bf16;
    padding: 10px 15px 7px;
    color: white;
    opacity: 1;
}
    a.roundBt.greenBt i {
        margin-right: 5px
    }
.topBanner {
    overflow: hidden;
    text-align: center;
    position: relative;
    display: flex;
    z-index: 0;
    justify-content: center;
}
    .topBanner img {
       width:100%;
    }
.topBannerLegend {
    background: #26343b;
    padding: 25px 10px;
}
    .topBannerLegend div {
        width: 100%;
        max-width: 1000px;
        text-align: center;
        margin: 0 auto;
        color: white;
        font-family: 'Times New Roman', serif;
        font-style: italic;
        font-size: 1.5em;
    }
.contanier {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.centerContentForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

ul.horizontalList.newsList {
    width: 100%;
    margin-bottom: 40px;
}
    ul.horizontalList.newsList li {
        width: 33.332%;
        padding: 0 10px;
        background: white;
    }
        ul.horizontalList.newsList li:first-child {
            padding-left: 0
        }
        ul.horizontalList.newsList li:last-child {
            padding-right: 0
        }
.newsImg img {
    width: 100%;
}
.newsCont {
    border: 1px solid lightgray;
    border-radius: 5px;
    overflow: hidden;
}
.newsContParent {
    padding: 10px 20px 0;
    font-size: 0.9em;
    color: #626262;
}
.newsContTittle {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #26343b;
    font-weight: bold;
    line-height: 17px;
    width: 75%;
}
.newsContTime {
    color: black;
    margin-bottom: 5px;
}
a.roundBt.newsBt {
    background: #26343b;
    color: white;
    padding: 9px 20px;
    font-size: 1em;
    margin: 10px auto;
    display: inline-block;
    text-align: center;
    font-weight: bold;
}
.readMoreCont {
    text-align: center;
    margin-top: -10px;
    padding-bottom: 5px;
}
.basicTittle {
    font-size: 2.4em;
    color: #26343b;
    padding: 20px 0;
    font-weight: 100;
    text-align: left !important;
    line-height: 47px;
    border-bottom: 1px solid lightgray;
    margin-bottom: 20px;
}
.allNews {
    text-align: center;
    padding: 35px 0;
}
.whiteBtnAlt {
    border: 2px solid #26343b;
    color: #26343b !important;
    padding: 10px 20px;
    font-weight: 800;
}
.bigAreaGray {
    background-color: #d3efed;
}
.bigAreaGrayCont {
    width: 100%;
    padding: 15px;
    max-width: 800px;
    margin: 0 auto;
}
.bigAreaGrayCont {
    width: 100%;
    padding: 50px 15px;
    max-width: 800px;
    margin: 10px auto;
    display: flex;
    align-items: center;
}
.bigAreaGrayLegends {
    width: 70%;
}
.bigAreaGrayBt {
    width: 29.333%;
    text-align: right;
}
.bigAreaGrayLegends > div:first-of-type {
    margin-bottom: 10px;
}
.bigAreaGrayLegends b {
    display: block;
}
.homeProfPhotoCont {
    position: relative;
}
.homeProfPhoto {
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 260px;
    height: 260px;
    border-radius: 5px;
    top: 20px;
    border: 1px solid lightgray;
}
    .homeProfPhoto img, .homeProfPhotoBg img {
        width: 100%;
        height: auto;
    }
.homeProfPhotoOrnament {
    background: transparent;
    width: 280px;
    height: 280px;
    border-radius: 1000px;
    position: absolute;
    top: 0;
}
    .homeProfPhotoOrnament:before {
        content: "";
        background: #22aea3;
        width: 80px;
        height: 80px;
        border-radius: 1000px;
        position: absolute;
        top: -10%;
        left: 20%;
        display:none;
    }
    .homeProfPhotoOrnament:after {
        content: "";
        background: url(../img/ornament2.png);
        width: 240px;
        height: 295px;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        bottom: -60px;
        right: -20%;
        z-index: -1;
    }
.homeProfPhotoBg {
    height: auto;
    width: 240px;
    border-radius: 1000px;
    position: absolute;
    z-index: -1;
    top: -30px;
    left: -130px;
}
.homeProfItemInverted .homeProfPhotoBg {
    /*    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);*/
    right: 170px;
    left: initial;
    z-index: -1;
}
.homeProfItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.homeProfItemInverted .homeProfTextCont {
    text-align: right;
    padding-left: 20px;
    padding-right: 60px;
}
.homeProfDummyCont {
    width: 20%;
}
.homeProfTextCont {
    width: 47%;
    padding-left: 10px;
    padding-right: 20px;
}
.homeProfTextTittle {
    color: #26343b;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
    position: relative;
}
    .homeProfTextTittle i {
        content: "";
        background: #f7d955;
        width: 25px;
        height: 25px;
        display: block;
        position: absolute;
        border-radius: 9000px;
        top: -4px;
        left: -35px;
        display: none;
    }
        .homeProfTextTittle i:before {
            content: "";
            background: white;
            width: 21px;
            height: 21px;
            display: block;
            position: absolute;
            border-radius: 9000px;
            top: 0px;
            bottom: 0;
            right: -1px;
            margin: auto;
            display:none;
        }
.homeProfPhotoCont {
    width: 30%;
}
.homeProf {
    padding: 90px 0;
}
.borderedGreenBt {
    color: #f7d955;
    border: 2px solid;
    margin-top: 10px;
    padding: 9px 30px 7px;
    font-size: 0.9em;
}
.homeProfItem.homeProfItemInverted {
    padding-top: 180px;
    padding-bottom: 180px;
}
.homeProfItemInverted .homeProfPhoto {
    border-radius: 5px;
}
.topBannerGray {
    background: #26343b;
    text-align: center;
    padding: 25px 0;
    font-weight: bold;
    color: white;
    font-family: 'Times New Roman', serif;
    font-style: italic;
}
    .topBannerGray span {
        width: 100%;
        display: block;
        max-width: 500px;
        margin: 0 auto;
        font-size: 27px;
        font-weight: 100;
    }
.smallCont {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto 40px auto;
}
.mediumCont {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto 40px auto;
    position:relative;
}
.activeSectionScreen:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    z-index: 99;
}
.topBannerGray .smallCont {
    margin-bottom: 0;
}
.bigLegend, .smallLegend {
    color: #26343b;
}
.smallLegend {
    font-size: 12px;
    text-align: right;
}
.formItem {
    display: flex;
    color: #626262;
    align-items: center;
    margin: 20px 0;
}
    .formItem div {
        width: 40%;
    }
    .formItem label {
        width:20%;
    }
input.formItemInput {
    background: #f8f8f8;
    border-radius: 60px;
    border: 1px solid lightgray;
    width: 100%;
    padding: 10px 20px;
    font-family: OptimaLTPro, sans-serif;
    font-size: 13px;
}
.formItemInputLabel.formItemInputLabelXL {
    width: 50%;
}
.formItemInputCont.formItemInputContRadio div {
    display: inline-block;
    width: 20%;
}
.formItem.formItemCheck {
    display: block;
}
    .formItem.formItemCheck > div {
        width: 100%;
        display: flex;
        align-items: center;
    }
        .formItem.formItemCheck > div > div:first-of-type {
            width: 20.222%;
        }
        .formItem.formItemCheck > div > div {
            width: 30.222%;
        }
        .formItem.formItemCheck > div > div:last-of-type {
            width: 58.222%;
        }
    .formItem.formItemCheck > label {
        margin-bottom: 10px;
        display: block;
    }
.subItem {
    margin-top: 10px;
}
    .subItem label.formItemInputLabel {
        width: 10%;
    }
    .subItem .formItemInputCont {
        width: 20% !important;
    }
.formItemInputCont.formItemInputContCheck.singleCheckEven {
    width: 100%;
    display: flex;
}
    .formItemInputCont.formItemInputContCheck.singleCheckEven > div {
        width: 20%;
    }
.contactFormCont {
    padding: 10px 0;
    position:relative;
}
.plusActionBts {
    position: absolute;
    bottom: 25px;
    right: 0;
}
    .plusActionBts a {
        background: #84a6c5;
        color: white;
        margin: 0 2px;
        padding: 8px 7px 4px;
        letter-spacing: normal;
        line-height: 0;
        border-radius: 20px;
        opacity: 1;
    }
        .plusActionBts a#minusbt {
            background: #a0a0a0;
        }
        .plusActionBts a:hover {
            opacity: 0.8;
        }
div#plusFoms {
    border-bottom: 1px solid lightgray;
}
.formItemInputContSelect {
    width: 100% !important;
}
.formItemInputContSelect > div {
    width: 65% !important;
    background: #f8f8f8;
    border-radius: 60px;
    border: 1px solid lightgray;
}
    .formItemInputContSelect select {
        width: 98% !important;
        background: #f8f8f8;
        border-radius: 60px;
        padding: 10px 20px;
        font-family: OptimaLTPro, sans-serif;
        font-size: 13px;
        border:none;
    }
        .formItemInputContSelect select:focus,
        .formItemInputContSelect select:focus,
        .formItemInputContSelect select:focus,
        .formItemInputContSelect select:focus {
            outline: none !important;
        }
.formLegendCheck.formLegend {
    display: flex;
    align-items: flex-start;
}
    .formLegendCheck.formLegend div:first-child {
        width: 5%
    }
.formLegend {
    color: #626262;
    margin: 25px 0;
}
.noIcoBt {
    padding: 10px 20px 7px;
}
form.basicForm {
    margin-bottom: 40px;
}
.topBannerBlue {
    background: #26343b;
    color: white;
    padding: 20px 0;
}
.topBannerBlue {
    background: #26343b;
    color: white;
    padding: 20px 0;
}
    .topBannerBlue h1 {
        font-size: 16px;
        padding: 0 0 0 0;
        margin: 0 0 0 0;
    }
    .topBannerBlue p {
        padding-bottom: 0;
        margin-bottom: 0;
    }
ul.logoList {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
    ul.logoList li {
        width: auto;
        padding: 10px 0;
        margin: 0 20px;
    }
    ul.logoList li:first-child {
        margin-left: 0;
    }
        ul.logoList li img {
            width: auto;
            height: 60px;
        }
        ul.logoList li a {
            padding: 0;
            opacity:1;
        }
        ul.logoList li a:hover {
            padding: 0 10px;
            opacity:0.6;
        }
ul.basicList {
    list-style: none;
}
    ul.basicList li {
        position: relative;
        margin-bottom: 10px;
        padding-top: 3px;
    }
        ul.basicList li:before {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 5px 0 5px 6px;
            border-color: transparent transparent transparent #26343b;
            position: absolute;
            left: -20px;
            top: 0;
            bottom: 0;
            margin: auto;
        }
.mapContainer {
    margin-bottom: 30px;
}
    .mapContainer img {
        width: 100%;
        height: auto;
        max-width: 630px;
        margin: 0 auto;
        display: block;
        border-radius: 14px;
        box-shadow: 0px 0px 36px 18px rgba(0,0,0,0.06);
    }

.imageContainer {
    margin-bottom: 30px;
}

    .imageContainer img {
        width: 100%;
        height: auto;
        /*max-width: 630px;*/
    margin: 0 auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0px 0px 36px 18px rgba(0,0,0,0.06);
}
    .imageContainer.dualImage {
        display: flex;
        justify-content: space-between;
    }
        .imageContainer.dualImage img {
            width: 47.99%;
            max-width: initial;
            margin: 0;
        }
.downloadImg img {
    max-width: 400px;
    border-radius: 5px;
}
.downloadImgBtn {
    padding: 9px 30px 8px;
/*    background: #e2e9ff;
    color: #26343b !important;*/
}
.mapContainer.imgContainerBasic {
    margin-bottom: 0;
}
    .mapContainer.imgContainerBasic img {
        width: 100%;
        max-width: initial;
        margin-bottom: 0;
    }
.ornaTop {
    background-image: url(../img/ornament-top.png);
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 100% 80px;
}
/*.ornaTopBottom {
    background-image: url(../img/ornament-top.png),url(../img/ornament-bottom.png);
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 100% 80px, -110px 84%;
}*/
.ornaTopBottomAlt {
    background-image: url(../img/ornament-top.png),url(../img/ornament-bottom.png);
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 100% 240px, -110px 84%;
}
.teamRow {
    display: flex;
    justify-content: center;
    margin: 15px 0 ;
}
.teamItem {
    text-align: center;
    font-weight: bold;
    width: 30.333%;
    background: white;
    padding: 20px 0;
    margin: 0 10px;
    border-radius: 10px;
    border:1px solid white;
    -webkit-transition: all 350ms ease-in-out;
    -moz-transition: all 350ms ease-in-out;
    -ms-transition: all 350ms ease-in-out;
    -o-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
}
    .teamItem.clickableProf:hover {
        background: #004c8f;
        cursor: pointer;
        border: 1px solid #00325e;
        color: white;
    }
        .teamItem.clickableProf:hover .teamTittle {
            color: white;
        }
.teamImg {
    overflow: hidden;
    border-radius: 1000px;
    width: 130px;
    height: 130px;
    border: 5px solid #26343b;
    display: block;
    margin: 0 auto 10px;
}
    .teamImg img {
        width:100%;
        height:auto;
    }
.teamTittle {
    color: #26343b;
    font-size: 16px;
    margin-bottom:3px;
}
.contentJustified p {
    text-align: justify;
}

/*Modals*/

.modalCont {
    position: fixed;
    width: 100%;
    max-width: 550px;
    display: flex;
    align-items: center;
    margin: auto;
    padding: 25px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: white;
    height: fit-content;
    color: #626262;
    border-radius: 10px;
    -webkit-box-shadow: 0px 2px 12px -3px rgb(0 0 0 / 40%);
    -moz-box-shadow: 0px 2px 12px -3px rgba(0,0,0,0.4);
    box-shadow: 0px 2px 12px -3px rgb(0 0 0 / 40%);
}
    .modalCont > div:first-of-type {
        width: 40%;
        text-align:center;
    }
    .modalCont > div:last-of-type {
        width: 59.999%;
    }
.modalText {
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: justify;
    border-left: 1px solid lightgray;
}
.modalProfile a {
    position: absolute;
    top: 10px;
    right: 3%;
    font-size: 15px;
    opacity: 0.5;
    padding: 10px;
    cursor: pointer;
}
    .modalProfile a:hover {
        opacity: 1;
    }
.modalProfile .teamJob {
    font-weight: bold;
}
.modalVeilCont {
    display: none;
    transition: opacity 1s ease-out;
    opacity: 0;
}
.modalVeil {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(0,0,0,0.6);
    z-index: 99;
}
.opened {
    opacity: 1;
    display: block;
}
.over-flow-none {
    overflow:hidden;
}
.btnContainerCenter {
    text-align:center;
    margin: 60px 0 120px;
}
ul.linkList {
    list-style: none;
    padding: 0;
    margin: 0;
}
    ul.linkList li {
        margin: 20px 0;
    }
        ul.linkList li a {
            border-radius: 100px;
            border: 2px solid #26343b;
            background: white;
            width: 100%;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            /*padding: 0 20px;*/
            text-decoration: none !important;
        }
        ul.linkList li i {
            margin-right:5px;
        }
        ul.linkList li a:hover {
            background: #26343b;
            color: white;
        }
            ul.linkList li a:hover .fauxBtn {
                background: white;
                color: #26343b;
            }
                ul.linkList li a:hover .fauxBtn i {
                    transition: 300ms linear all;
                    transform: rotate(-0.25turn);
                }
.linkListName {
    margin-left: 20px;
}
.fauxBtn {
    margin-right: 3px;
    color: white;
    background: #26343b;
    padding: 7px 10px 5px;
    border-radius: 100px;
}
hr.customSep {
    opacity: 0.3;
    margin: 35px auto;
    max-width: 60%;
}
.contactCard {
    background: #f4f4f4;
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 17px;
}
.contactCardName span:first-of-type {
    color: #26343b;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
}
.contactCardName span:last-of-type {
    padding-left: 10px;
    border-left: 1px solid #626262;
}
.contactCardName {
    margin-bottom: 5px;
}
.contactCardInfo a {
    color: #5656e8;
    margin-right: 10px;
}
.contactCardInfo span {
    padding-left: 10px;
    border-left: 1px solid #626262;
}
ul.projectCont {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
    ul.projectCont li {
        display: inline-block;
        width: 30.333%;
        text-align: center;
        vertical-align: top;
        margin-bottom: 35px;
        margin-right: 10px;
        margin-left: 10px;
    }
        ul.projectCont li a {
            display: flex;
            background: #f4f4f4;
            text-decoration: none;
            color: #26343b;
            text-transform: uppercase;
            border-radius: 10px;
            min-height: 200px;
            vertical-align: top;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            position: relative;
            -webkit-box-shadow: 0px 2px 12px -3px rgb(0 0 0 / 20%);
            -moz-box-shadow: 0px 2px 12px -3px rgba(0,0,0,0.2);
            box-shadow: 0px 2px 12px -3px rgb(0 0 0 / 20%);
        }
        ul.projectCont li:hover a {
            color: white;
        }
        ul.projectCont li a span {
            position: relative;
            z-index: 1;
            width: 75%;
        }
        ul.projectCont li a:after {
            content: "";
            background: #26343b;
            display: block;
            width: 20px;
            height: 20px;
            margin: auto;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            border-radius: 10px;
            opacity: 0;
            -webkit-transition: all 150ms ease;
            -moz-transition: all 150ms ease;
            -ms-transition: all 150ms ease;
            -o-transition: all 150ms ease;
            transition: all 150ms ease;
        }
        ul.projectCont li:hover a:after {
            color: white;
            width: 100%;
            height: 100%;
            margin: auto;
            border-radius: 10px;
            opacity: 1;
        }
.topBannerGray .smallCont {
    position: relative;
}
a.backBtn {
    background: white;
    text-decoration: none;
    color: #26343b !important;
    width: 36px;
    height: 36px;
    text-align: center;
    border-radius: 100px;
    line-height: 1px;
    /*position: absolute;*/
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
    a.backBtn:hover {
        opacity: 0.8;
    }
.videoContainer iframe {
    width: 100%;
    max-width: 720px;
    height: 360px;
    margin: 0 auto;
    display: block;
}
#menuResSw {
    color: #26343b;
    font-size: 25px;
    padding: 1px 14px;
}
li.responsiveTab {
    display: none !important;
}
.conectionBtnResponsive, #menuResSw {
    display: none;
}
a.roundBt.greenBt.transparentBtn.conectionBtnResponsive {
    background: #26343b;
}
    a.roundBt.greenBt.transparentBtn.conectionBtnResponsive img {
        width: 15px;
        vertical-align: middle;
        margin-left: 5px;
    }
.footerSocial {
    display:none;
}
.socialList.footerSocial ul li a {
    color: #26343b !important;
    font-size: 30px;
}
.modalAlertWait .teamImg {
    background: transparent;
    border-radius: 10px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .modalAlertWait .teamImg i {
        font-size: 50px;
        color: #26343b;
    }

.floating {
    animation-name: floating;
    animation-duration: 18s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(35px, -15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}
.floating-alt {
    animation-name: floating-alt;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes floating-alt {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(-25px, 15px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.btnContainerCenterSmall {
    margin: 30px 0 10px;
}
a.roundBt.blueBt {
    background-color: #004c8f;
    padding: 10px 15px 7px;
    color: white;
    opacity: 1;
}
.colorBox {
    padding: 10px 25px;
    border-radius: 10px;
    text-align: center;
    color: black;
}
.imageContainer.infograph {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}
.imageContainerSmall {
    max-width: 420px !important;
}
a.pdfLink {
    background: #e2e9ff;
    color: black;
    text-decoration: none;
    padding: 7px 20px 5px;
    margin: 0 5px;
    border-radius: 35px;
    opacity: 1;
}
    a.pdfLink:hover {
        opacity: 0.6;
    }
.logoContLinks {
    display: flex;
    align-items: center;
    justify-content: center;
}
    .logoContLinks a {
        max-width: 160px;
        margin: 0 30px;
        opacity: 1;
    }
    .logoContLinks a:hover {
        opacity:0.5;
    }
    .logoContLinks a img {
        width:100%;
    }
    .logoContLinks.logoContLinksAlt {
        display: block;
    }
.logoContLinksAlt a {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
    opacity: 1 !important;
    display: block;
}
.videoLegend {
    text-align: center;
    margin-top: 20px;
}
a#conexion:hover {
    color: white;
    background: #1b9c92;
}
.modalContLogin {
    display: block;
    max-width: 480px;
}
    .modalContLogin > div {
        width:100% !important;
    }
.modalRowLogin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto 15px;
}
    .modalRowLogin > div:first-child {
        width: 30%;
        text-align:left;
    }
    .modalRowLogin > div {
        width: 69.333%
    }
a.closeModal.LoginModalClose {
    position: absolute;
    top: 10px;
    right: 3%;
    font-size: 15px;
    opacity: 0.5;
    padding: 10px;
    cursor: pointer;
}
.modalRowLogin input[type="email"], .modalRowLogin input[type="password"] {
    width: 95%;
    padding: 7px;
    font-family: OptimaLTPro, sans-serif;
    font-size: 14px;
}
.modalTittle {
    color: #26343b;
    font-size: 18px;
    padding: 10px 0 20px;
    border-bottom: 1px solid;
    margin-bottom: 30px;
}
.textRight {
    text-align: right;
}
.newsImg {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    max-height: 290px;
}
.newsContCont {
    min-height: 55px;
    margin-bottom: 20px;
}
.newsSectionTittle.SingleNewsTitle {
    margin-top: 20px;
    font-size: 18px;
}
a.backBtnBasic {
    margin-right: 22px;
}
ul.newsSectionNews.newsSectionTop.SingleNews {
    list-style: none;
    max-width: 950px;
    margin: 40px auto;
}
.SingleNews .newsImg {
    max-height: initial;
    background: #f5f5f5;
    border-radius: 5px;
}
    .SingleNews .newsImg > img {
        max-height: 500px;
        width: auto;
    }
.newsTxtDate {
    color: #26343b;
    font-weight: bold;
    margin: 20px 0;
}
.newsTittleTXT {
    color: #26343b;
    font-weight: bold;
    padding: 20px 0;
    margin: 20px 0;
    font-size: 20px;
    letter-spacing: initial;
    border-bottom: 1px solid lightgray;
    border-top: 1px solid lightgray;
}

a.backBtnBasic {
    margin-right: 22px;
    font-size: 24px;
    background-color: #e5bf16;
    color: white;
    padding: 10px 10px 5px 10px;
    border-radius: 90px;
}
.newsTxtCont a:link {
    margin-left: 3px;
    color: #0000c6;
    margin-bottom:3px;
}
.imageContainer.infograph {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}
.sliderType {
    display: block !important;
}
.newsImg.sliderType {
    display: none !important;
}

/*_____*/
#slider {
    position: relative;
    overflow: hidden;
    margin: 20px auto 0 auto;
    background: #f5f5f5;
    border-radius: 5px;
    height: 500px !important;
}

    #slider ul {
        position: relative;
        margin: 0;
        padding: 0;
        height: 200px;
        list-style: none;
    }

        #slider ul li {
            position: relative;
            display: block;
            float: left;
            margin: 0;
            padding: 0;
            width: 500px;
            height: 300px;
            text-align: center;
            line-height: 300px;
        }

a.control_prev, a.control_next {
    position: absolute;
    top: 40%;
    z-index: 999;
    display: block;
    padding: 4% 3%;
    width: auto;
    height: auto;
    /* background: #2a2a2a; */
    color: #939393;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.8;
    cursor: pointer;
}

    a.control_prev:hover, a.control_next:hover {
        opacity: 1;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

a.control_prev {
    border-radius: 0 2px 2px 0;
}

a.control_next {
    right: 0;
    border-radius: 2px 0 0 2px;
}

.slider_option {
    position: relative;
    margin: 10px auto;
    width: 160px;
    font-size: 18px;
}

div#SliderCont ul li img {
    max-height: 500px;
    width: auto;
}
div#SliderCont {
    background: #f5f5f5;
    border-radius: 5px;
}
div#contprof {
    word-break: break-word;
}
.infograph > div > div {
    display: flex;
    position: relative;
    z-index: 1;
}
    .infograph > div > div > img {
        width: 75%
    }
.infograph > div {
    position: relative;
}
.semi-circle-top {
    width: 10rem;
    height: 19rem;
    border-radius: 0 5rem 0 10rem;
    border-right: 4px dashed #084d8d;
    border-top: 4px dashed #084d8d;
    display: block;
    position: absolute;
    top: 13%;
    right: 10%;
    opacity: 0.5;
    z-index: 0;
}
.semi-circle-button {
    width: 25rem;
    height: 15rem;
    border-radius: 6em 10rem 0 0;
    border-left: 4px dashed #084d8d;
    border-top: 4px dashed #084d8d;
    display: block;
    position: absolute;
    top: 53%;
    left: 10%;
    opacity: 0.5;
    z-index: 0;
}
.visualGraphCont {
    font-family: 'Open Sans', sans-serif;
/*    letter-spacing: -0.5px;*/
}
.accessAuxSoinsInfo:before {
    content: "";
    background-image: url(../img/info1/infobg.svg);
    width: 60%;
    background-size: contain;
    height: 500px;
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    top: 2%;
    opacity: 0.6;
    left: 0%;
}
.accessAuxSoinsInfo:after {
    content: "";
    background-image: url(../img/info1/infobg.svg);
    width: 60%;
    background-size: contain;
    height: 600px;
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    opacity: 0.6;
    right: 10%;
    background-position: center right;
}
.parcourtEndometriseInfo > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:relative
}
    .parcourtEndometriseInfo > div.oddInfo img {
        width: 60%;
    }
        .parcourtEndometriseInfo > div.oddInfo img:last-of-type {
            width: 20%;
        }
    .parcourtEndometriseInfo > div.evenInfo img {
        width: 20%;
    }
        .parcourtEndometriseInfo > div.evenInfo img:last-of-type {
            width: 60%;
        }

.infoTag {
    width: 60%;
    text-align: center;
    background: #d34e7a;
    border-radius: 20px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: bolder;
    font-family: 'Open Sans', sans-serif;
    color: white;
    letter-spacing: 0;
}
.parcourtEndometriseInfo > div:before {
    content: "";
    position: absolute;
    border-top: 4px dashed #ed7094;
    border-right: 4px dashed #ed7094;
    border-radius: 0 5em 0 0;
    display: block;
    width: 40%;
    height: 80px;
    z-index: -1;
    right: 110px;
}
.seconRowinfo.evenInfo:before {
    left: 90px;
    right: initial;
    border-top: 0;
    border-right: 0;
    border-left: 4px dashed #ed7094;
    border-bottom: 4px dashed #ed7094;
    border-radius: 0 0 0 65em;
    height: 110px;
}
.thirdRowinfo.oddInfo:before {
    top: 70px;
    height: 30px;
    right: 10%;
}
.fourthRowinfo.evenInfo:before {
    display: none;
}
.fifthRowinfo.evenInfo:before {
    left: 10%;
    top: 52%;
    border-left: 4px dashed #80262f;
    border-bottom: 4px dashed #80262f;
    border-right: 0;
    border-top: 0;
    border-radius: 0 0 0 20em;
}
.parcourtEndometriseInfo {
    background-image: url(../img/info2/info2bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
}
.visualGraphCont {
    position: relative;
    margin: 50px 0;
}
    .visualGraphCont a {
        opacity: 1
    }
        .visualGraphCont a:hover {
            opacity: 0.5;
        }
.visualGraphCont_Row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.visualGraphCont_mainCont {
    width: 170px;
    height: 170px;
    background: lightgrey;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    padding: 20px;
    margin: 0 10px;
    border: 7px solid;
}
.visualGraphCont_subCont {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 999;
    width: 100%;
    height: 115%;
    text-align: center;
    display: none;
    border-radius: 9999px;
    backdrop-filter: blur(1em);
}
    .visualGraphCont_subCont > div {
        background: lightgray;
        border: 10px solid;
        border-radius: 100%;
        height: 400px;
        width: 400px;
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        box-shadow: 2px -3px 34px -9px rgba(0,0,0,0.8);
        -webkit-box-shadow: 2px -3px 34px -9px rgba(0,0,0,0.8);
        -moz-box-shadow: 2px -3px 34px -9px rgba(0,0,0,0.8);
    }
        .visualGraphCont_subCont > div > div {
/*            margin-top: 30px;*/
            padding: 0 35px;
        }
            .visualGraphCont_subCont > div > div > a {
                padding: 5px 0 0;
                display: block;
                font-size: 30px;
                text-align:center;
            }
#axe1:hover .visualGraphCont_subCont,
#axe2:hover .visualGraphCont_subCont,
#axe3:hover .visualGraphCont_subCont {
    border-radius: 0px;
    display: block;
    -webkit-animation: scale-in-center .5s cubic-bezier(.25,.46,.45,.94) both;
    animation: scale-in-center .5s cubic-bezier(.25,.46,.45,.94) both
}
.acces_aux_soins .visualGraphCont_mainCont {
    background: #1a659e;
    border-color: #4386b9;
    color: white;
    text-align: center;
    text-transform: uppercase;
}
.acces_aux_soins .visualGraphCont_subCont > div {
    background: #a6e1fa;
    border-color: #cdebf7;
}

.visualGraphCont_subCont::after {
    content: "";
}

@-webkit-keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.parcours-endometriose-Huge {
    background: #fb6f92;
    border-radius: 100%;
    width: 280px;
    height: 280px;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    border: 7px solid #ffc1d1;
    /*    box-shadow: 0px 0px 0px 7px rgba(178,212,207,1);
    -webkit-box-shadow: 0px 0px 0px 7px rgba(178,212,207,1);
    -moz-box-shadow: 0px 0px 0px 7px rgba(178,212,207,1);*/
}

    .parcours-endometriose-Huge b {
        font-size: 16px;
        text-align: center;
        display: block;
        font-weight: 400;
    }
    .parcours-endometriose-Huge ul {
        margin-bottom: 0;
    }
.parcours-endometriose-diamond {
    background: #cbeef3;
    height: 125px;
    width: 125px;
    border: 7px solid #e8fcff;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    text-align: center;
    border-radius: 25px;
}
    .parcours-endometriose-diamond > div {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin: 0 -5px 0px 0px;
        padding: 0 18px;
    }
.arrowSep {
    width: 17%;
    padding-right: 15px;
    position: relative;
    z-index: 99;
}
    .arrowSep img {
        width: 100%;
        max-width: 140px;
        opacity: 0.4;
        z-index: 99;
        position: relative;
    }
    .arrowSep.arrowSepInverted {
        padding-right: 0;
        padding-left: 15px;
        text-align: right;
    }
        .arrowSep.arrowSepInverted img {
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
        }
.parcours-endometriose-diamond a {
    display: block;
    color: black !important;
    margin-top: 5px;
}
.parcours-endometriose-HugeOdd {
    background: #ffc2d1;
    border: 8px solid #fdd5df;
    width: 150px;
    height: 150px;
    text-align: center;
    color:black;
}
.visualGraphCont_Row.oggOrder {
    justify-content: flex-start;
}
/*.topRowMargin {
    margin-top:-30px;
}*/
.parcours-endometriose-subCont {
    display: flex;
    margin-top: 10px;
}
    .parcours-endometriose-subCont > div {
        width: 50%;
        min-height: 115px;
        background: #ffc2d1;
        border-radius: 100%;
        font-size: 14px;
        padding: 10px;
        margin: 0 2px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        color: black;
    }
    .parcours-endometriose-subCont > div b {
        font-size: 13px;
        display:block
    }
.parcours-soins-palliatifs .visualGraphCont_item,
.parcours-soins-palliatifs .visualGraphCont_item .visualGraphCont_mainCont {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}
.parcours-soins-palliatifs .parcours-endometriose-Huge {
    width: 200px;
    height: 200px;
    background: #40916c;
    border-color: #65bc95;
}
.parcours-soins-palliatifs .visualGraphCont_subCont > div {
    font-size: 16px;
    text-align: left;
    width: 300px;
    height: 300px;
    background: #74c69d;
    border-color: #96deba;
}
.parcours-soins-palliatifs-OddRow .parcours-endometriose-diamond {
    background: none !important;
    border: none;
}
.parcours-soins-palliatifs-OddRow {
    margin-top: -5px;
}
.parcours-soins-palliatifs .parcours-endometriose-diamond {
    background: #edff9a;
    border-color: #f9ffde;
}
.parcours-soins-palliatifs .visualGraphCont_subCont > div a {
    color: #40916c;
}
.visualGraphCont_subCont > div a i {
    background: white;
    border-radius: 999px;
}
.parcours-soins-palliatifs .visualGraphCont_subCont > div .parcours-endometriose-subCont {
    margin: 0px -20px 0;
}
    .parcours-soins-palliatifs .visualGraphCont_subCont > div .parcours-endometriose-subCont > div {
        background: #40916c;
        padding: 20px;
    }
.parcours-surpoids .parcours-endometriose-Huge {
    background: #f77f00;
    border-color: #ffc180;
}
.parcours-surpoids .parcours-endometriose-diamond {
    background: #2a9d8f;
    color: black;
    border-color: #5ad0c2;
}
.parcours-surpoids .visualGraphCont_subCont > div {
    background: #fcbf49;
    border-color: #ffeac1;
}
    .parcours-surpoids .visualGraphCont_subCont > div .parcours-endometriose-subCont > div {
        background: #f77f00;
    }
    .parcours-surpoids .visualGraphCont_subCont > div a {
        color: #f77f00;
    }
.parcours-endometriose-Huge.parcours-surpoidsFullSection {
    width: 70%;
    height: auto;
}
    .parcours-endometriose-Huge.parcours-surpoidsFullSection .visualGraphCont_mainCont {
        display: block;
        padding: 30px 0;
        text-align: center;
        height: auto;
    }
        .parcours-endometriose-Huge.parcours-surpoidsFullSection .visualGraphCont_mainCont b {
            display: block;
            text-align: center;
            width: 100%;
            margin-bottom: 5px;
        }
.arrowSep.arrowLeft {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.arrowSep.arrowRight {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.arrowSep.arrowCenter {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    position: relative;
    bottom: -20px;
}
.accompagnement-des-professionnels-de-sante .diamondRow {
    margin-top: 20px;
    margin-bottom: 100px;
}
    .accompagnement-des-professionnels-de-sante .diamondRow p {
        text-align:center;
    }
.diamondRow p, .parcours-soins-palliatifs .parcours-endometriose-diamond {
    font-weight: 600;
}
.diamondRow > div {
    position: relative;
    top: -20px;
}
    .diamondRow > div.centerDiamond {
        margin: 0px 60px;
        position: relative;
        top: 50px;
    }
.accompagnement-des-professionnels-de-sante .visualGraphCont_subCont ul,
.accompagnement-des-professionnels-de-sante .visualGraphCont_subCont > div > div {
    margin-top: 0;
}
.accompagnement-des-professionnels-de-sante .parcours-endometriose-Huge,
.accompagnement-des-professionnels-de-sante .visualGraphCont_subCont > div {
    background: #ffda3d;
    border-color: #fff4c7;
    box-shadow: 0px 0px 0px 7px #fff9e1;
    width: 181px;
}
.accompagnement-des-professionnels-de-sante .parcours-endometriose-diamond {
    background: #ffd275;
    border-color: #ffe3a9;
}
    .accompagnement-des-professionnels-de-sante .parcours-endometriose-diamond > div p {
        font-size: 11px;
        padding: 0 5px;
    }
.soins-non-programmes .visualGraphCont_Row.arrowRow > div {
    width: 28.5%;
    text-align: center;
    padding: 0;
}
.soins-non-programmes .visualGraphCont_Row {
    max-width: 570px;
    margin: 0 auto;
}
.arrowBottom {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.arrowTop {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.soins-non-programmes .visualGraphCont_Row.arrowRow .arrowSep.arrowCenter {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(135deg);
}
    .soins-non-programmes .visualGraphCont_Row.arrowRow .arrowSep.arrowCenter img {
        width: 100%;
        max-width: 150px;
        position: relative;
        top: 5px;
        left: -10px;
    }
.soins-non-programmes .arrowSep.arrowDouble img {
    max-width: initial;
    width: 160px;
    position: relative;
    z-index: 99;
    left: -25%;
    opacity: 0.3;
}
.soins-non-programmes .parcours-endometriose-Huge {
    background: #339989;
    border-color: #5cc9b8;
    box-shadow: 0px 0px 0px 7px #7ce2d2;
    height: 190px;
}
.soins-non-programmes .visualGraphCont_subCont > div {
    background: #ffb8ab;
    border-color: #ffe6e1;
    box-shadow: 0px 0px 0px 7px #fff4f2;
}
    .soins-non-programmes .visualGraphCont_subCont > div a {
        color: #339989;
    }
.qualite-et-pertinence-des-soins .parcours-endometriose-Huge {
    background: #db5a42;
    border-color: #ffa796;
    width: 190px;
}
.qualite-et-pertinence-des-soins .parcours-endometriose-diamond {
    background: #ffd275;
    border-color: #ffe7b5;
}
.qualite-et-pertinence-des-soins .visualGraphCont_subCont > div {
    background: #e3a588;
    border-color: #f9c9b3;
}
    .qualite-et-pertinence-des-soins .visualGraphCont_subCont > div > div {
      margin-top:0;
    }
.parcours-covid-long .parcours-endometriose-Huge {
    background: #a480f2;
    border-color: #cab2fd;
    box-shadow: 0px 0px 0px 7px #e3d6ff;
}
.parcours-covid-long .parcours-endometriose-diamond {
    background: #e0cefd;
    border-color: #efe5ff;
    font-size: 12px;
}
    .parcours-covid-long .parcours-endometriose-diamond > div {
        padding: 5px 10px;
        font-size: 11px;
    }
.parcours-covid-long .visualGraphCont_subCont > div {
    background: #c580ed;
    border-color: #dea8fd;
    box-shadow: 0px 0px 0px 7px #e3d6ff;
}
    .parcours-covid-long .visualGraphCont_subCont > div > div {
       margin-top:0;
    }
    .parcours-covid-long .visualGraphCont_subCont > div .parcours-endometriose-subCont > div {
        background: #a27fed;
        margin-top: 20px;
    }
.visualGraphCont_PreRow {
    display: flex;
}
    .visualGraphCont_PreRow > div {
        width: 50%;
    }
.prevention .parcours-endometriose-diamond.centerDiamond {
    display: none;
}
.prevention .parcours-endometriose-diamond {
    height: 120px;
    width: 120px;
    margin: 10px 30px;
    border-radius: 20px;
}
.prevention .diamondSingle {
    height: 160px;
    width: 160px;
    margin: 30px 0 40px;
}
.singleArrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    position: relative;
    top: 10px;
    z-index: 998;
}
.prevention a {
    display: block;
    font-size: 20px;
    margin: 10px 0 -10px 0;
    position: relative;
    z-index: 999;
    color: black !important;
}
.visualGraphCont_Col .diamondRow {
    margin-bottom: 0;
}
.prevention .parcours-endometriose-Huge {
    background: #ffd7ba;
    border-color: #fff3c4;
    height: 191px;
}
.prevention .parcours-endometriose-diamond {
    background: #dcf4e5;
    border-color: #e2fdec;
}
.qualite-et-pertinence-des-soins .visualGraphCont_subCont > div a {
    color: #db5a42;
}
.parcours-surpoids .visualGraphCont_subCont > div > div {
    margin-top: 0;
}
.visualGraphCont_Row.arrowRow img {
    opacity: 0.3;
}
.soins-non-programmes b {
    text-transform: uppercase;
    font-size: 20px;
}
.accompagnement-des-professionnels-de-sante .parcours-endometriose-Huge > div > div.visualGraphCont_mainCont b {
    font-weight: 800 !IMPORTANT;
}
.accompagnement-des-professionnels-de-sante .parcours-endometriose-Huge > div > div.visualGraphCont_subCont > div {
    width: 300px;
}
.arrowRowTypeB img {
    opacity: 0.5 !important;
}
.arrowRowTypeB .arrowSep.arrowLeft {
    -webkit-transform: scaleX(-1) rotate(45deg);
    transform: scaleX(-1) rotate(45deg);
}
.visualGraphCont_Row.arrowRow.arrowRowTypeB {
    margin-top: -10px;
}
    .visualGraphCont_Row.arrowRow.arrowRowTypeB .arrowSep.arrowCenter {
        position: relative;
        top: 40px;
    }
.prevention .visualGraphCont_Row.arrowRow img {
    width: 90px;
    position: relative;
    left: -10px;
}
#myBtnTop {
    opacity: 0;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #26343b;
    color: white;
    cursor: pointer;
    padding: 13px 15px;
    border-radius: 5px;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
    #myBtnTop:hover {
        background-color: #1b7b74;
    }
.hiddenItem {
    visibility: hidden !important;
}
.arrowSepVertical {
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 30px 0;
}
    .arrowSepVertical .arrowSep {
        transform: rotate(90deg);
        width: 90px;
        margin-top: 15px;
    }
.parcours-soins-palliatifs-alt .parcours-endometriose-Huge {
    height: 151px;
    text-align: center;
    background: #339989;
    border-color: #57c3b2;
    font-size: 13px;
}
.bubbleSmall {
    width: 100px !important;
    height: 80px !IMPORTANT;
    margin: 0 8% 0 0;
}
.parcours-soins-palliatifs .parcours-endometriose-Huge.bubbleLargue {
    width: 304px !important;
    height: 200px !important;
}
.arrowSepVertical .arrowSep.dobleL {
    transform: rotate(110deg);
}
.arrowSepVertical .arrowSep.dobleR {
    transform: rotate(65deg);
}
.parcours-endometriose-Huge.bubbleSmallAlt {
    width: 90px;
    height: 100px;
    margin: 0 10px;
}
.parcours-endometriose-Huge.bubbleLargueAlt {
    width: 171px;
    height: 181px;
}
.visualGraphCont_Row.visualGraphCont_Row_OddLine {
    position: relative;
    left: 30px;
}
.arrowSepVertical.arrowSepVerticalLeft {
    margin-top: -3px;
}
    .arrowSepVertical.arrowSepVerticalLeft .arrowSep {
        position: relative;
        left: -10%;
    }
    .arrowSepVertical.arrowSepVerticalLeft .dobleR {
        position: relative;
        transform: rotate(60deg);
    }
    .arrowSepVertical.arrowSepVerticalLeft .dobleL {
        position: relative;
        transform: rotate(120deg);
    }
.floatingInfoT.fiTypeA {
    width: 80%;
    display: block;
    position: absolute;
    top: -25px;
    text-align: center;
    color: #ff8c78;
    font-size: 14px;
    font-weight: bold;
}
.floatingInfoT.fiTypeB {
    width: 100%;
    display: block;
    position: absolute;
    top: 45px;
    left: -13px;
    text-align: center;
    color: #ff8c78;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(270deg);
}
.floatingInfoT.fiTypeC {
    width: 100%;
    display: block;
    position: absolute;
    top: 45px;
    left: 0px;
    text-align: center;
    color: #ff8c78;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(250deg);
}
.contentCenter {
    text-align: center;
}
.lastVisualGraphCont_Row {
    width: 80%;
}
.dummyCont {
    height: 180px;
}
ul.boxedList {
    text-align: left;
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
}
.fullNewsList {
    flex-wrap: wrap;
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}
ul.horizontalList.newsList.fullNewsList li {
    width: 31%;
    margin: 10px 0 !important;
    padding: 0;
}
.eframeCont {
    padding: 0 10px;
}
    .eframeCont iframe {
        border: none;
    }
.loginIframeCont > iframe {
    margin-top: -200px;
}

.loginIframeCont {
    overflow: hidden;
    height: 320px !important;
    /* margin-bottom: 20px;*/
}
.modalCont.modalAlertWait.modalHuge {
    max-width: 960px;
    display: block;
}
    .modalCont.modalAlertWait.modalHuge > div {
        width: 100%;
        overflow: hidden;
        margin-top: 20px;
    }
        .modalCont.modalAlertWait.modalHuge > div iframe {
            border: none;
            margin-top: -130px;
        }
.languageSelect {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 99px;
    padding: 6px 10px 7px 15px;
    text-decoration: none !important;
    position: relative;
    opacity: 1;
    background-color: white;
    margin-right: 20px;
    z-index: 1;
}
    .languageSelect select {
        border: none !important;
    }
    .languageSelect i {
       margin-right:5px;
    }
li.dropable {
    position: relative;
    margin-right: 5px;
}
    li.dropable:after {
        content: "\f107";
        font-family: 'Font Awesome 5 Free';
        font-weight: bold;
        position: relative;
        top: 2px;
        -webkit-transition: all 200ms ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        -ms-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }

    li.dropable:hover:after {
        content: "\f106";
    }
.footAdd p {
    margin: 0;
}
    .footAdd p a, .footAdd p {
        color: #26343b !important;
        font-size: 16px;
        opacity: 1;
        text-decoration: none;
    }
        .footAdd p a:hover {
            opacity: 0.5;
        }
    .footAdd p b a, .footAdd p b  {
        text-transform: uppercase;
        margin-bottom: 5px;
        display: block;
    }
.newsHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.newsCalendar {
    background-color: #26343b;
    color: white;
    text-align: center;
    border-radius: 4px;
}
    .newsCalendar span {
        font-size: 13px;
        font-weight: bold;
        display: block;
        padding: 10px 10px;
        border-bottom: 1px solid white;
    }
    .newsCalendar div {
        font-size: 14px;
        font-weight: bold;
        display: block;
        padding: 3px 10px;
        border-top: 1px solid white;
        min-width: 45px;
    }
.homeProfItem .homeProfTextReadMore {
    margin-top: 20px;
}
.JoinISR {
    background: #26343b;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    color: white !important;
    opacity: 1;
}
    .JoinISR i {
        font-size: 17px;
        margin-right: 5px;
    }
    .JoinISR:hover {
        opacity: 0.7;
    }
.boldSubt {
    font-weight: 600;
}
a.downloadLink {
    font-weight: 700;
    background: white;
    padding: 0 8px;
    border-radius: 10px;
    text-decoration: none;
}
    a.downloadLink:hover {
        background: #26343b;
        color: white;
    }
.endQuote {
    border-top: 1px solid lightgray;
    font-size: 14px;
    margin: 30px 0;
}

.note {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    padding: 20px;
    margin: 50px 0;
    font-size: 18px;
    color: #26343b;
}
.modalRowInConstruction {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    padding: 0 40px 30px;
    color: #26343b;
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
}
    .modalRowInConstruction i {
        font-size: 7em;
    }
    .modalRowInConstruction .textRight {
       text-align:center !important;
    }
    .modalRowInConstruction .textRight {
        text-align: center !important;
        background: #26343b;
        color: white;
        padding: 10px;
        border-radius: 40px;
        width: 200px;
        margin: 30px auto 0;
        /* letter-spacing: 1px; */
    }
    .modalRowInConstruction i {
        font-size: 8em;
        padding: 10px;
        background: #e7e7e7;
        border-radius: 230px;
        height: 150px;
        width: 150px;
        display: flex;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }
.staff {
    font-size: 22px;
    font-weight: 100;
    border-bottom: 1px solid lightgray;
    padding-bottom: 20px;
}
    .staff b {
        font-size: 17px;
    }

p.boldSubtAlt {
    margin-bottom: 30px;
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 800;
}
.buttonSep {
    text-align: center;
    margin: 50px 0 20px;
}
.pastStaffGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}
.pastStaffGridItem {
    /* display: flex; */
    width: 22.333%;
    padding: 0 10px;
    margin-bottom: 30px;
    text-align: center;
}
    .pastStaffGridItem img {
        width: 100%
    }
    .pastStaffGridItem label {
        display: block;
        font-weight: bold;
    }
    .pastStaffGridItem span {
        font-size: 14px;
    }
.memberIdCard {
    opacity: 0;
    z-index:-99;
}
ul.memberContainer {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    position: relative;
}
li.memberItem {
    display: inline-block;
    width: 31.22%;
    background: #26343b;
    color: white;
    margin: 7px 5px;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 1px;
    border-radius: 5px;
    border: 3px solid #26343b;
}
.memberTag {
    text-align: center;
    color: white;
    /*width: 45%;*/
    margin: 0 auto;
    padding: 24px 0;
}
li.memberItem:hover .memberTag {
    color: #26343b;
}
li.memberItem:hover {
    background: white;
    color: #26343b;
    cursor: help;
}
/*.memberTag:hover .memberIdCard */
.activeCountry {
    z-index: 9999999;
    opacity: 1;
}
.memberIdCard.activeCountry b, .memberIdCard.activeCountry .memberCountry {
    color: #26343b;
}
.memberIdCard {
    position: absolute;
    width: 100%;
    max-width: 560px;
    left: 0;
    right: 0;
    margin: auto;
    top: 2%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.13);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.13);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.13);
    text-align: left;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.memberCountry {
    font-weight: 800;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid lightgray;
    padding-bottom: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.memberIdCardCont {
    margin-bottom: 20px;
}
    .memberIdCardCont ul {
        list-style: none;
        margin: 10px 0;
    }
        .memberIdCardCont ul li {
            margin-bottom: 10px;
            font-size: 16px;
            color: #626262;
        }
i.fa-solid.fa-xmark.closeALT {
    margin-left: auto;
    opacity: 0.5;
}
    i.fa-solid.fa-xmark.closeALT:hover {
        opacity: 1;
    }
img.flag {
    display: inline-block;
    width: 50px;
    border-radius: 2px;
    margin-right: 15px;
}
.memberIdCardCont ul li:before {
    position: relative;
    left: -15px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    font-size: 13px;
    color: #acacac;
}
.memberIdCardCont ul li.add:before {
    content: "\f3c5"
}
.memberIdCardCont ul li.pres:before {
    content: "\f508"
}
.memberIdCardCont ul li.correo:before {
    content: "\f0e0"
}
.memberIdCardCont ul li.web:before {
    content: "\f0ac"
}
/*Lang Select*/
.custom-select {
    position: relative;
}

.custom-select select {
    display: none; /*hide original SELECT element:*/
}

.hideElement {
    display: none;
}

/*.select-selected {
    background-color: DodgerBlue;
}
*/
    /*style the arrow inside the select element:*/
    .select-selected:after {
        position: absolute;
        content: "";
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #26343b transparent transparent transparent;
    }

    /*point the arrow upwards when the select box is open (active):*/
    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #26343b transparent;
        top: 7px;
    }

/*style the items (options), including the selected item:*/
.select-selected {
    color: #26343b;
    padding: 0px 25px 0px 5px;
    /* border: 1px solid transparent; */
    /* border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent; */
    cursor: pointer;
    user-select: none;
}
.select-items div, .select-items li {
    color: #26343b;
    padding: 10px 15px;
    /* border: 1px solid transparent; */
    /* border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent; */
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #f7f7f7;
    border: 1px solid lightgray;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 10px;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected, .select-items li:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
/*Lang select end*/

.login.LoginFrame {
    max-width: 550px;
    margin: 40px auto 0 auto;
    padding: 15px 0;
}

.loginlegend {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 40px;
}
.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.col-md-5 {
    width: 25%;
}
.col-md-7 {
    width: 70%;
    padding: 0 10px;
}
.col-md-12 {
    width: 100%;
}
.inputBasic {
    width: 100%;
    background: whitesmoke;
    border: 1px solid lightgray;
    font-size: 16px;
    padding: 14px 10px;
    border-radius: 5px;
    margin: 0 -10px;
}
a.passRes {
    background: #626262;
    color: white !important;
    padding: 5px 10px 5px 15px;
    text-decoration: none;
    opacity: 1;
    font-size: 14px;
    border-radius: 20px;
    text-transform: uppercase;
}
a.passRes:hover {
    opacity: 0.7;
}
a.passRes i {
    margin-left:5px;
}
a.basicBtn {
    background: #26343b;
    color: white !important;
    text-decoration: none;
    max-width: 140px;
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: initial;
    opacity:1
}
    a.basicBtn:hover {
        opacity: 0.8
    }
.contactInfo h1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
}
.contactInfo ul li {
    list-style: none;
    position: relative;
    margin-bottom:10px;
}
    .contactInfo ul li i {
        position: absolute;
        left: -35px;
        top: 4px;
    }
.contactInfo ul {
    width: 60%;
    margin: 0 auto;
    display: block;
}
.pastEvents {
    padding-top: 70px;
}
    .pastEvents .newsContParent {
        padding-bottom: 20px;
    }

.newsSection.contanier.pastEvents ul.horizontalList.newsList {
    flex-wrap: wrap;
    justify-content: flex-start;
}
    .newsSection.contanier.pastEvents ul.horizontalList.newsList li {
        margin: 0 0.4% 20px 0.4%;
        padding: 0;
        width: 32.333%;
    }
        .newsSection.contanier.pastEvents ul.horizontalList.newsList li .newsImg {
            height: 220px;
        }

            .newsSection.contanier.pastEvents ul.horizontalList.newsList li .newsImg img {
                margin-top: 0 !important;
            }
        .newsSection.contanier.pastEvents ul.horizontalList.newsList li .newsContTime {
            margin-top: 20px;
        }
.hugeBtnsCont {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
    .hugeBtnsCont a {
        width: 35%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #26343b;
        border: 1px solid #26343b;
        border-radius: 6px;
        color: white !important;
        padding: 20px;
        text-decoration: none;
        margin: 0 10px;
        height: 90px;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 16px;
    }
        .hugeBtnsCont a i {
            width: 40%;
            font-size: 30px;
            padding-left: 22px;
        }
        .hugeBtnsCont a:hover {
            background: #6d7584;
        }

.languageSelect.custom-select i.fa-solid.fa-caret-down {
    margin-left: 10px;
    margin-right: 4px;
    font-size: 16px;
}
span.langTag {
    color: #26343b;
    padding: 0px 5px;
}
ul#rReservation {
    display: none;
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
}
.select-items li a {
    display: block;
    text-decoration: none;
    color: #26343b !important;
}
.languageSelect.custom-select:hover ul#rReservation {
    display: block;
}
.languageSelect.custom-select:hover .fa-caret-down:before {
    content: "\f0d8";
}
.memberTag.US .memberIdCard:after,
.memberTag.Spain .memberIdCard:after,
.memberTag.Sweden .memberIdCard:after,
.memberTag.Turkey .memberIdCard:after,
.memberTag.Mexico .memberIdCard:after,
.memberTag.Nederlands .memberIdCard:after,
.memberTag.Peru .memberIdCard:after,
.memberTag.Israel .memberIdCard:after {
    content: "";
    background: transparent;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
}
.memberTag.US .memberIdCard:after,
.memberTag.Spain .memberIdCard:after,
.memberTag.Sweden .memberIdCard:after,
.memberTag.Turkey .memberIdCard:after,
.memberTag.Mexico .memberIdCard:after,
.memberTag.Nederlands .memberIdCard:after,
.memberTag.Peru .memberIdCard:after,
.memberTag.Israel .memberIdCard:after {
    height: 260px;
    bottom: -84%;
}
.memberTag.UK .memberIdCard:after {
    height: 320px;
    bottom: -126%;
}
/*.memberTag.Italy .memberIdCard {
    top: -20%;
}*/
.twoColParent {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.colHalf {
    width: 50%;
}
    .colHalf:first-child {
        padding-right: 20px
    }
    .colHalf:last-child {
        padding-left: 20px
    }
.mainNews ul.horizontalList.newsList.fullNewsList {
    justify-content: space-around;
}
.loginIframeCont.loginIframeContPage {
    height: auto;
}
    .loginIframeCont.loginIframeContPage iframe {
        margin-top: -230px;
    }
.conectionRes .conectionBtn {
    width: 100%;
    justify-content: space-between;
}
.conectionRes .socialList {
    display: none;
}
.conectionRes .conectionBtn > div, .conectionRes .conectionBtn > a {
    width: 40%;
    margin: 0 !IMPORTANT;
    height: 33px;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
.loginIframeCont.loginIframeContPage.publicationLog iframe {
    margin-top: -140px !important;
}
#closeModals {
    font-size: 20px;
    z-index: 999999999;
    position: absolute;
    display: none;
    right: 23%;
    background: black;
    color: white;
    border-radius: 200px;
    padding: 10px;
    width: 24px;
    text-align: center;
    cursor: pointer;
}
    #closeModals i {
        color: white;
        opacity: 1;
    }
.memberCountry i {
    display:none;
}
.topBannerGray .smallCont {
    display: flex;
    align-items: center;
}
.conectionBtn .roundBt span.login-text {
    width: 100%;
}