:root {
    --primary: #ff4600;
    --secondary:#08384d;
    --grey: #6D7787;
    --lightgrey: #D9D9D9;
    --lightBlue: #ACCBE1;
    --menuPanelWidth: 250px;
}
* {
    margin: 0;
    box-sizing: border-box;
    outline: none;
    color: black;
    font-family: 'Inter', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}
.hiddenDC {
    display: none !important;
}
.white {
    color: white;
}
.primary {
    color: var(--primary);
}
.secondary {
    color: var(--secondary);
}
.primaryBG {
    background: var(--primary);
}
.secondaryBG {
    background: var(--secondary);
}
.lightBlueBG {
    background: var(--lightBlue);
}
.text-center {
    text-align: center;
}
.bold {
    font-weight: bold;
}
.p10 {
    padding: 10px;
}
.m10 {
    margin: 10px;
}
.ml10 {
    margin-left: 10px;
}
.mr10 {
    margin-right: 10px;
}
.mb10 {
    margin-bottom: 10px;
}
.mt10 {
    margin-top: 10px;
}
.fullwidth {
    width: 100%;
}
.font30 {
    font-size: 30px;
}
.center {
    text-align: center;
}
.mauto {
    margin: auto;
}
#previewsContainer {
    border: 2px solid var(--lightBlue);
    border-radius: 5px;
}
input[type=text], input[type=email], input[type=password], textarea {
    background: #F0F3F6;
    border-radius: 5px;
    padding: 10px;
    border:none;
    width: 100%;
}
textarea {
    height: 250px;
}
select {
    background: #F0F3F6;
    border-radius: 5px;
    padding: 10px;
    border:none;
    width: 100%;
}
.field {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.half {
    width: 48%;
}
.field-label {
    width: 100%;
    color: var(--secondary);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
}
.error-field {
    border: 1px solid red !important;
    background: rgb(255, 203, 203) !important;
}
main {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
}
header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    height: 70px;
    z-index: 50;
    background: white;
    width: 100%;
}

#headerMember {
    padding: 10px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    position: relative;
}
#headerMemberProfile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#headerMemberProfile p {
    word-break: break-word;
    text-overflow: ellipsis;
    width: calc(100% - 60px);
}

#headerMemberProfile .small {
    font-size: 12px;
}

#headerUserType {
    position: absolute;
    bottom: 5px;
    font-size: 10pt;
    color: var(--lightgrey);
    font-weight: bold;
}

#headerLogin {
    text-decoration: none;
}
.userPhoto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    border: 1px solid white;
}
#headerTools {
    width: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#headerElements {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

#menuContainer {
    display: flex;
    justify-content: space-between;
}
.menuEl {
    position: relative;
}
.menuEl:hover .subMenuContainer {
    display: block;
    overflow: hidden;
}
.menuEl a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}
.subMenuContainer:hover {
    display: block;
}
.subMenuContainer {
    min-width: 100%;
    width: 200px;
    display: none;
    position: absolute;
    top: 70px;
    left: 0px;
    background: white;
    padding: 5px;
    padding-left: 15px;
    padding-bottom: 20px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.subMenuEl {
    margin: 10px auto;
    width: 100%;
}

.subMenuEl:hover a {
    color: var(--primary);
}

.subMenuEl a {
    color: var(--secondary);
}
#headerMember {
    background: var(--primary);
    height: 85px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    max-width: 250px;
    min-width: 250px;
}
#articlesMain {
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    flex-wrap: wrap;
}
#articlesContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#subThemesContainer {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;

}
.themeItem {
    padding: 15px;
}
.themeItem a {
    font-weight: 500;
    color: var(--secondary);
    text-decoration: none;
}
#userForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.profile-pic {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.articleContent {
    width: 100%;
}

.documentsContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}
#applyForm {
    display: flex;
    flex-direction: column;
}
.date {
    font-size: 12px;
    font-style: italic;
    color: rgb(116, 116, 116);
}
#socialHeader {
    display: flex;
    align-items: center;
}
.verticalSplitterGrey {
    width: 2px;
    height: 70px;
    background: #D9D9D9;
    margin-left: 15px;
    margin-right: 15px;
}
.verticalSplitterInvisible {
    width: 2px;
    height: 70px;
    margin-right: 15px;
}
.verticalSplitterLightBlue {
    width: 1px;
    height: 50px;
    background: var(--lightBlue);
    margin-left: 15px;
    margin-right: 15px;
}
#landing {
    width: 100%;
    height: 100vh;
    background: #F0F3F6;
    position: relative;
    display: flex;
}
#leftLanding {
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    margin-left: 15vw;
}
#rightLanding {
    width: 30vw;
    display: flex;
    justify-content: right;
    align-items: center;
    z-index: 5;
    margin-right: 15vw;
}
#landingBG {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    object-fit: cover;
}
#landingTitle {
    width: 100%;
    display: inline-block;
    color: white;
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 20px;
}

#landingTitle .smaller {
    font-size: 1.6rem;
    color: white;
}
#landingDesc {
    width: 100%;
    display: inline-block;
    color: white;
    font-weight: bold;
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}
#landingPic {

}
#landingCTA {
    width: 100%;
    margin-top: 70px;
}
.btnOutlinedPrimary {
    border-radius: 8px;
    border: 2px solid var(--primary);
    padding: 16px 24px;
    color: var(--primary);
    width: max-content;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
    background-color: transparent;
    cursor: pointer;
}
.btnOutlinedPrimary:hover {
    background: var(--primary);
    color: white;
}
footer {
    position: relative;
    padding: 50px;
    background-color: #0E384C;
    margin-top: 250px;
}
#footerLogo {
    z-index: 5;
}
#footerBG {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
}
#footerContent {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    margin-top: 30px;
}
.horizontalSplitterWhiteFooter {
    width: 80%;
    height: 1px;
    background: #F0F3F6;
    margin: 40px auto;
}
.footerTitleEdging {
    width: 25px;
    height: 2px;
    margin-left: 10px;
    background: var(--primary);
}
.verticalSplitterWhiteFooter{
    width: 1px;
    align-self: stretch;
    background-color: white;
    z-index: 5;;
    margin-left: 30px;
    margin-right: 30px;
}
.footerTitleContainer {
    display: flex;
    align-items: center;
}
.footerTitle {
    color:white;
    font-weight: bold;
    font-size: 20px;
}
.footerPart {
    z-index: 5;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}
footer p {
    font-size: 12px;
}
.pageTitleContainer {
    width: calc(100% - 100px);
    margin: 30px 50px;
}
.pageTitle {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    font-size: 35px;
    font-weight: bold;
    margin-right: 30px;
}
.horizontalBlueSplitterTitle {
    height: 3px;
    background: var(--lightBlue);
    margin-top: 30px;
    margin-bottom: 30px;
    flex-grow: 1;
}
.horizontalPrimarySplitterTitle {
    width: 50px;
    height: 150%;
    background: var(--primary);
}
.pageContainer {
    width: 70%;
    margin: auto;
    padding: 15px;
}
.profile-page-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.profile-aside {
    width: 25%;
    display: flex;
    flex-direction: column;
}
.profile-middle {
    width: 70%;
}
.profile-right {
    width: 35%;
}
.profile-pic-aside {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    margin-bottom: 20px;
    border: solid 1px var(--lightBlue);
}
.aside-splitter {
    width: 60%;
    height: 3px;
    background: var(--lightBlue);
    margin-top: 20px;
    margin-bottom: 20px;
}
.profile-aside a {
    text-decoration: none;
    margin-bottom: 20px;
    padding: 4px;
}
.partenaireImgPreview {
    width: 100px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.btnPrimary {
    background: var(--primary);
    border-radius: 5px;
    padding: 16px 24px;
    border: solid 2px var(--primary);
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
}

.btnPrimary:hover {
    background-color: white;
    color: var(--primary);
}

.btnLightBlue {
    background: var(--lightBlue);
    border-radius: 5px;
    padding: 16px 24px;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}


#publishForm {
    width: 74%;
    display: flex;
    justify-content: space-between;
}
.post-article-middle {
    width: 43%;
}
.post-article-right {
    width: 55%;
}

.articleItem {
    width: 100%;
    margin-bottom: 30px;
    padding: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lightBlue);
}
.articleItemContent {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.articleItemContentLeft {
    width: calc(100% - 210px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
}
.articleItemContentRight {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    border: 1px solid var(--lightBlue);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.articleItemContentRight:empty{
    border: none;
}
.articleItem-noContentRight {
    border: none;
    height: 0%;
}

.articleItemContentRight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.articleItemTitle {
    color: var(--secondary);
    font-weight: 700;
    font-size: 20px;
}
.articleItemSplitter {
    height: 4px;
    width: 200px;
    background: var(--primary);
    margin-top: 10px;
    margin-bottom: 10px;
}
.articleItemFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.articleItemDesc {
    font-size: 12px;
}
.articleItemSmallDate {
    font-size: 12px;
    color: var(--lightBlue);
}
.articleItemLink {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
}
.articleItemEventHeader {
    padding: 5px;
}
.eventItemTheme {
    padding: 10px 20px;
    background: var(--primary);
    border-radius: 5px;
    margin-bottom: 5px;
    color: white;
    width: max-content;
}
.eventItemDate {
    color: var(--primary);
    font-size: 15px;
    font-weight: bold;
}

#mainContact {
    width: 80%;
    margin: auto;
    display: flex;
}

#bottomContact {
    width: 80%;
    margin: auto;
    display: flex;
}

#bottomContactLeft {
    width: 30%;
    margin-right: 2%;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

#bottomContactRight {
    width: 68%;
}

#contactLeft {
    width: 30%;
    margin-right: 2%;
    background: var(--secondary);
    border-radius: 10px;
    padding: 10px;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.ronds {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    object-fit: contain;
}
#contactLeft p {
    color: white;
    font-size: 12px;
}
.contactItem {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.contactItem img {
    margin-right: 20px;
}
#contactRight {
    width: 68%;

}
.contactDisclaimer {
    font-weight: 400;
    font-size: 12px;
    color: var(--lightBlue);
}
#mainSearch {
    width: 80%;
    margin: auto;
}
#mainArticle {
    width: 80%;
    margin: auto; 
}
.articlePicPage {
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}
.articleTitle {
    color: var(--secondary);
    font-weight: 700;
    font-size: 20px;
}
.articleTitleContainer {
    margin-bottom: 30px;
}
.horizontalSplitterArticle {
    width: 150px;
    background: var(--primary);
    height: 4px;
    margin-bottom: 5px;
    margin-top: 5px;
}
.articleContainer {
    width: 100%;
}
.backButton {
    display: block;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    padding: 5px 10px;
    width: max-content;
    margin-top: 10px;
    margin-bottom: 50px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: bold;
    cursor: pointer;
}

.articleCreatedAt {
    text-align: right;
    margin-bottom: 20px;
    color: var(--lightBlue);
    font-weight: 500;
    font-size: 14px;
}
#paginationContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.paginationItem {
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}
.paginationItem a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}
.eventHorizontalSplitter {
    width: 90%;
    height: 1px;
    background: var(--primary);
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
.eventBtnsContainer {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}

.carousel {
    position: relative;
    height: 150%;
    margin: 0 auto;
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
}

.carousel-container {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 100%;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-top: solid 1px #ACCBE1;
    border-bottom: solid 1px #ACCBE1;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-slides {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    height: 100%;
    padding: 20px 30px;
    width: 25%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-scroll-btn {
    height: 100%;
    width: 5%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
}

.carousel-container {
    width: calc(100% - 100px);
}

.carousel {}

.carousel-scroll-btn img {
    width: 30px;
    object-fit: contain;
    cursor: pointer;
}

.carousel-left {
    left: 0;
    background-image: url("/assets/images/gradientBGleft.png");
}

.carousel-right {
    right: 0;
    background-image: url("/assets/images/gradientBGright.png");
}

#sponsors {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 70px;
}

.events-container {
    display: flex;
}

.event-arrow {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-arrow img {
    width: 30px;
    object-fit: contain;
    cursor: pointer;
}

.logoBoxFooter {
    width: 80%;
    margin: 0 auto;
}

#footer1, #footer2 {
    width: 33%;
}

#footer3 {
    width: 33%;
}

.bottomMentions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 20px auto 0 auto;

    font-weight: bold;
    font-size: 14px;
}

.bottomMentions p {
    color: white;
}

#heroArticle {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 100px;
}

.heroArticle {
    width: 100%;
    height: 60vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.heroArticle * {
    color: white;
}

.heroArticle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.8);
}

.heroInterface {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.heroSeparator {
    flex-grow: 1;
}

.heroBottomLine {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.heroTooltip {
    padding: 10px 15px;
    background-color: var(--primary);
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    width: fit-content;
}

.heroTitle {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1.3rem;
}

.heroContentPreview {
    margin-bottom: 1.3rem;
    font-size: 0.8rem;
}

.heroReadRemainings {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.8rem;
    text-decoration: none;
}

.heroDate {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--lightBlue)
}

.breadcrumbs {
    width: 80%;
    margin: 0 auto 25px auto;
    color: var(--lightBlue);
    font-weight: 500;
    font-size: 14px;
    height: fit-content;
}

.breadcrumbs > * {
    color: var(--lightBlue);
    text-decoration: none;
}

    .crumb-actual {
    color: var(--grey);
}

.articleContentText p {
    margin-bottom: 15px;
}

.articleContentText * {
    color: var(--secondary);
}

.articleContentText img {
    -width: 100%;
    object-fit: contain;
}
.atelierItem {
    padding: 5px 20px;
    margin-top: 10px;
    width: 100%;
    font-size: 16px;
    border-radius: 10px;
}
.atelierItem-pending {
    background: var(--lightBlue)
}
#eventContainer h3 {
    text-align: center;
    margin-bottom: 20px;
}

.noBoxShadow {
    box-shadow: unset !important;
}

.eventHorizontalImages {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eventHorizontalImages .imgBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.bottomArticleLine {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    align-items: baseline;
    flex-wrap: wrap;
}

.contactAsideTitle {
    font-weight: bold;
    font-size: 1.3rem !important;
    margin-bottom: 1.4rem;
    margin-top: 30px;
    margin-left: 10px;
}

.column {
    flex-direction: column;
}

.contactPresse {
    margin-left: 10px;
}

.contactPresse strong {
    color: white;
}

.contactPresse span {
    color: var(--primary);
}

.contactPresseTitle {
    font-weight: bold;
    font-size: 1.2rem !important;
    color: var(--primary) !important;
    margin-bottom: 0.5rem;
}

.contactPresse p:not(.contactPresseTitle){
    margin-bottom: 0.4rem;
}

.no-flex {
    display: block;
}

#subThemesContainer .active {
    color: var(--primary);
}

#subThemesContainer a:hover {
    color: var(--lightBlue);
}

.vie-content-line {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
}

.vie-content {
    width: 49%;
}

.vie-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    height: 75px;
}

.vie-content .deco-bar {
    width: 50%;
}

.deco-bar {
    margin-left: 20px;
    height: 5px;
    background-color: var(--lightBlue);
}

.inner-deco-bar {
    width: 15%;
    height: 100%;
    background-color: var(--primary);
}

.vie-content-title {
    color: var(--secondary);
    font-weight: bold;
    font-size: 20px;
}

.vie-content img {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 30px;
}

.vie-content-text {
    font-size: 14px ;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--secondary);
    line-height: 25px;

    margin-bottom: 20px;
}

.vie-content-text p:first-child {
    margin-bottom: 5px;
}

.vie-content-congress-access {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
}

.mot {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 80vh;
    margin-top: 50px;
}

.upquote {
    width: 100px;
    object-fit: contain;
}

.downquote {
    width: 100px;
    object-fit: contain;
    margin-left: auto;
}

.mot-aside {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.pres-pic {
    width: 100%;
    flex-grow: 1;
    object-fit: cover;
    border-radius: 25px;
}

.mot-main {
    -flex-grow:4;
    width: 60%;
    margin: 0 50px;
}

.mot-header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mot-header .deco-bar {
    flex-grow: 1;
    margin-left: 20px;
}

.mot-title {
    font-size: 35px;
    font-weight: bold;
    color: var(--secondary);
}

.mot-subheader {
    width: 40%;
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 30px;
}

.mot-content p {
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    font-size: 15px;
}

.pres-name {
    width: 100%;
    color: var(--primary);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: bold;
    font-style: italic;
    text-align: left;
    margin: 20px 0 10px 0;
}

.logo-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}

.logo-bar img {
    width: 15vw;
    object-fit: contain;
}

.objectifs {
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.objectifs > img {
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.objectifs-item {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.objectifs-item p {
    font-weight: 500;
    font-size: 15px;
    color: var(--secondary);
    font-family: 'Inter', sans-serif;
}

.objectif-boule {
    height: 20px;
    width: 20px;
    background-color: var(--primary);
    border-radius: 1000px;
    margin-right: 30px;
}

#lines {
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.members-part1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    margin-top: 30px;
}

.members-part1 img {
    width: 30%;
    object-fit: contain;
    margin-left: 50px;
}

.members-part1 ul {
    margin-top: 12px;
}

.members-part1 li {
    list-style-image: url('/assets/images/spot.png');
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary);
}

.members-part2 {
    width: 80%;
    margin: 0 auto;
    margin-top: 30px;
}

.members-part2 .header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: fit-content;
    margin-bottom: 25px;
}

.members-part2 .deco-bar {
    width: 70%;
}

.members-part2 .members-title {
    font-size: 25px;
    font-weight: 500;
    color: var(--secondary);
}

.primary-link {
    color: var(--primary);
    text-decoration: none;
}

.members-part2 p {
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary);
}

.button-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    width: 100%;
}

.button-line button {
    border-radius: 5px;
    border: solid 2px var(--primary);
    padding: 15px 20px;
    color: var(--primary);
    font-weight: bold;
    cursor: pointer;
    background-color: white;
    margin: 0 20px;
}

.button-line button:hover {
    color: white;
    background-color: var(--primary);
}

.button-line button.blue {
    border-radius: 5px;
    border: solid 2px var(--lightBlue);
    padding: 15px 20px;
    color: var(--lightBlue);
    font-weight: bold;
    cursor: pointer;
    background-color: white;
    margin: 0 20px;
    text-transform: uppercase;
}

.button-line button.blue:hover {
    color: white;
    background-color: var(--lightBlue);
}

.members-part3 {
    width: 100%;
    background-image: url("/assets/images/fondBleu.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.member-item {
    width: 200px;
    padding: 20px 0;
    background-color: #f1f3f6;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
    height: 250px;
}

.member-list {
    width: 80%;
    margin: 0 auto;
    padding-top: 200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.member-item > img {
    width: 80px;
    height: 80px;
    border-radius: 1000px;
    margin-bottom: 10px;
    object-fit: cover;
}

.member-name {
    font-weight: bold;
    color: var(--secondary);
    font-size: 16px;
    margin: 0 auto;
    margin-bottom: 5px;
    text-align: center;
    width: 90%;
    -height: 40px;
}

.member-company {
    font-weight: bold;
    color: var(--grey);
    font-size: 14px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
    -height: 35px;
}

.member-function {
    font-weight: bold;
    color: var(--primary);
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.5;
    text-align: center;
}

.social-link {
    cursor: pointer;
}

.member-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.login-box {
    position: fixed;
    z-index: 10;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    padding: 50px 30px 20px 30px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.login-field {
    padding:5px;
    border:2px solid var(--lightBlue);
    position: relative;
    border-radius: 10px;
    margin-bottom: 15px;
}

.login-field > .login-label {
    position:absolute;
    top:-8px;
    left:15px;
    background-color:white;
    padding: 0 6px;
}

.login-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--lightBlue);
}

.login-field > input {
    border:none;
    padding: 5px;
}

.forgotten-password {
    font-weight: 500;
    font-size: 14px;
    color: var(--lightgrey);
    margin-bottom: 15px;
    display: block;
}

.login-button {
    display: block;
    margin: 0 auto 15px auto;
    padding: 10px 15px;
    background-color: var(--primary);
    color: white;
    border: solid 1px var(--primary);
    border-radius: 5px;
    cursor: pointer;
}

.login-signin {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: var(--lightgrey);
    margin-bottom: 15px;
    display: block;
    cursor: pointer;
}

.login-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 10px;
    object-fit: contain;
    cursor: pointer;
}

.search {
    position: fixed;
    height: 60px;
    z-index: 10;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    padding-left: 15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 40vw;
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.search input {
    width: 90%;
    background-color: white;
    border-left: solid 2px var(--primary);
    border-radius: 0;
}

.search input::placeholder {
    color: var(--primary);
    opacity: 0.5;
    font-size: 16px;
}

.search-button {
    width: 60px;
    height: 100%;
    border-left: solid 2px var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menuEl {
    height: 100%;
    display: flex;
    align-items: center;
}

.menuEl:hover > * {
    color: var(--primary);
}

.chevron {
    margin-left: 8px;
    display: inline-block;
}

.chev-prim {
    display: none;
}

.menuEl:hover > .chev-sec {
    display: none;
}

.menuEl:hover > .chev-prim {
    display: inline-block;
}

.menuEl.active-menu {
    border-bottom: solid 4px var(--primary);
}

.menuEl.active-menu > * {
    color: var(--primary);
}

.menuEl.active-menu > .chev-sec {
    display: none;
}

.menuEl.active-menu > .chev-prim {
    display: inline-block;
}

.box-shadow-anchor {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 70px;
}

#showSearch, #hideSearch {
    cursor: pointer;
}

.active-home {
    border-bottom: solid 4px var(--primary);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home {
    padding: 0 5px;
}

.profile-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.profile-tab {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--lightBlue);
}

.profileSeparator {
    width: 1px;
    height: 20px;
    background-color: var(--secondary);
    display: block;
}

.profile-tab-active {
    color: var(--primary);
}

.profile-field-checkbox {
    width: 100%;
    margin-bottom: 6px;
}

.pageTitleAccount {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    font-size: 22px;
    font-weight: bold;
    margin-right: 30px;
}

.headerMobile {
    display: none;
}

.mobileMenu {
    display: none;
}

.login-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.wrong-credentials {
    color: var(--primary);
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.login-box.mobile {
    width: 30vw;
    border-radius: 25px;
    position: relative;
}

.brMobile {
    display: none;
}

#shieldMobile {
    display: none;
}

.nodesktop {
    display: none;
}

.input-radio {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.input-radio label {
    font-family: 'Inter';
    color: var(--secondary);
}

.input-radio input {
    margin-right: 15px;
}

.field-select {
    width: 100%;
}

.field-select p {
    width: 100%;
    color: var(--secondary);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 15px;
}

.photo-input {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #F0F3F6;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.photo-input input {
    display: none;
}

.max-size {
    position: absolute;
    right: 10px;
    bottom: 10px;
    text-align: right;
    font-size: 10px;
    font-family: 'Inter';
    color: var(--lightBlue);
}

.logo-pic {
    width: 100px;
    height: 100px;
    object-fit: contain;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.password-info {
    color: var(--lightBlue);
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
}

.dz-message {
    height: 100%;
    font-size: 14px;
    color: var(--lightBlue);
    font-family: "Inter";
    display: block;
}

.us p {
    font-weight: normal;
}

.actus .carousel-slides {
    justify-content: flex-start;
}

.home-body *::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.home-body * {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.member-item.fake {
    opacity: 0;
}

.rs {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    align-items: center;
}

#footer3 .rs {
    position: relative;
    left: unset;
    bottom: unset;
    margin: 0 auto;
    width: fit-content;
    margin-top: 30px;
}

#footer3 .rs img {
    width: 30px;
    height: 30px;
}

.rs img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.rs a:first-child {
    margin-right: 30px;
}

.c {
    width: fit-content;
    margin: 0 auto;
}

#label {
    background-color: #f0f3f600;
}

.profile-addresses-information {
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    font-size: 15px;
    width: 50%;
    text-align: justify;
}

.profile-competence-information {
    width: 80%;
}
.competence-warning {
    margin-bottom: 40px;
}
#skipComp {
    margin-top: 20px;
    cursor: pointer;
}
#skipComp:hover {
    color: var(--primary);
}
.btnAgendaLink {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    margin-left: 40px;
}

#ateliersBtn, #workshopsActivitiesBtn {
    font-size: 16px;
}

.user-summary {
    margin-top: 40px;
}

.congress-center {
    margin-left: auto;
    margin-right: auto;
}
.congress-align-center {
    text-align: center;
}
#buttonsContainerFlexArticlePage {
    display: flex;
    justify-content: center;
    align-items: center;
}
#modalContainer {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5;
}
#modalCocktailContainer {
    width: 90%;
    max-width: 600px;
    padding: 50px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 15px;
    flex-direction: column;
}

#cocktailModalBtnsBox {
    display: flex;
    flex-wrap: wrap;
}
#modalContainerCocktailUnregister2LeRetourPrequel {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5;
}
#modalCocktailContainer {
    width: 90%;
    max-width: 600px;
    padding: 50px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 15px;
    flex-direction: column;
}
#cotisationModal {
    position: fixed;
    top:0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}
#cotisationModalContent p {
    text-align: center;
    -color: white;
    -font-size: 20px;
}
#cotisationModalContent {
    padding: 32px;
    border-radius: 10px;
    -background: rgba(0,0,0,0.8);
    max-width: 90%;
    width: 700px;
    margin: auto;
}
#cotisationModalClose {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    cursor: pointer;
}
.cotisation-modale-content {
    background-color: white;
    color: var(--secondary);
    padding: 40px;
}
.cotisation-modale-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 24px;
}
.cotisation-modale-title, .cotisation-text {
    color: var(--secondary);
    margin-bottom: 24px;
}

#profile_events_list {
    display: flex;
    flex-direction: column;
}
.profile_events_item {
    margin-top: 10px;
    margin-bottom: 10px;
}
.profile_events_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    padding: 10px 20px;
    background-color: #f7fafd;
    border-radius: 10px 10px 0 0;
    border-radius: 10px;
}
.profile_events_label {
    width: calc(100% - 125px -  30px);
    padding: 10px;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
}
.profile_events_datetime {
    width: 125px;
    border-right: 2px solid var(--lightBlue);
    text-align: left;
}
.profile_events_date {
    font-size: 18px;
    font-weight: bold;
}
.profile_events_time {
    font-size: 18px;
    font-weight: bold;
}
.profile_events_icon {
    margin-left: 5px;
    width: 25px;
}
.profile_events_content {
    opacity: 0;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    transition: 0.5s linear;
    color: var(--secondary);
}
.profile_events_content_opened {
    opacity: 1;
    max-height: 1500px;
    background-color: #eff5fa;
    padding: 15px;
}
.profile_events_content_title {
    margin-top: 10px;
    margin-bottom: 10px;
}
.profile_events_splitter {
    width: 100%;
    height: 2px;
    background: var(--lightBlue);
    margin-top: 10px;
    margin-bottom: 10px;
}
.profile_events_content_line {
    color: var(--secondary);
    white-space: pre-wrap;
}
.profile_events_content_footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 0;
    align-items: center;
}
.profile_events_btn {
    text-align: center;
    padding: 11px 15px;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1rem;
    margin: 5px;
}
.profile_events_btn_primary {
    background: var(--primary);
    cursor: pointer;
}
.profile_events_btn_secondary {
    background: var(--secondary);
}
.profile_events_content_footer_btns {
    display: flex;
    margin-top: 5px;
    flex-wrap: wrap;
    width: 100%;
}
.profile_events_infos_container {
    width: 100%;
}
.profile_events_infos_row {
    width: 100%;
    display: flex;
    margin-bottom: 25px;
}
.profile_events_infos_half {
    width: 50%;
}
.profile_events_infos_third {
    width: 32%;
}
.profile_events_infos_item {
    display: flex;
}
.profile_events_infos_icon {
    display: block;
    width: 20px;
    margin: 4px;
    margin-right: 12px;
}
.profile_events_infos_top {
    color: #6D7787;
    font-size: 12px;
}
.profile_events_infos_bottom {
    color: var(--secondary);
    font-weight: bold;
}

.profile_events_item:has(.profile_events_content_opened) .profile_events_header  {
    border-radius: 10px 10px 0 0;
}

.with-dot {
    display:list-item;
    margin-left: 20px;
}

.profile_events_activity {
    padding: 15px;
    border-radius: 15px;
    border: solid 2px var(--primary);
    position: relative;
    padding-top: 35px;
    margin-bottom: 40px;
}

.profile_events_activity:first-child {
    margin-top: 35px;
}

.profile_events_activity_cartouche {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    position: absolute;
    top: -26px;
    background-image: url("/assets/images/fond-cartouche.png");
    background-repeat: repeat-x;
    background-size: cover;
}

.profile_events_activity_cartouche_picto {
    margin-right: 15px;
}

.profile_events_activity_cartouche_toptext {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.8rem;
}

.profile_events_activity_cartouche_bottomtext {
    color: var(--secondary);
    font-weight: bold;
    font-size: 0.9rem;
}

.profile_events_activity_header {
    margin-bottom: 20px
}

.profile_events_activity_header_activity {
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}
.profile_events_activity_header_hours {
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
}
.profile_events_activity_header_room {
    color: var(--secondary);
    font-weight: bold;
    padding-left: 10px;
    border-left: solid 2px var(--lightBlue);
}

.profile_events_activity_footer {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.profile_events_activity_plus {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
}
.secondaryOutlinedBtn {
    display: block;
    padding: 10px 5px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    border-radius: 6px;
    width: max-content;
}
#headerTrombinoscope {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
#trombinoscopeContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    min-height: 80vh;
}
.trombinoscopeItem {
    /* width: 100vw; */
    /* height: 50vh; */
    width: 25%;
    margin: 15px;
}
.trombinoscopeItemPortrait {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}
.trombinoscopeItemPortraitplaceholder {
    background: var(--primary);
}
#trombinoscopeSort {
    color: var(--lightBlue);
    padding: 3px;
    align-self: flex-start;
    font-size: 18px;
    font-weight: bold;
}
.trombinoscopeItemName {
    font-size: 13px;
}
.trombinoscopeIteSociete {
    font-size: 11px;
}
#bandeauStatsContainer {
    position: relative;
    /* background: linear-gradient(90deg, #FC4700 0%, #0E384C 100%, rgba(217, 217, 217, 0) 100%); */
    /* background: url('/assets/images/bandeau_stats_bg.svg'); */
    background: url('/assets/images/bandeau_stats_desktop2.png');
    background-position: center;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
    border-radius: 5px;
}
#bandeauStatsTitle {
    width: 100%;
    font-size: 16px;
    margin-bottom: 4px;
}
#bandeauStatsTitleMobile {
    width: 100%;
    font-size: 16px;
    padding: 10px;
}
.bandeauStatsPart {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-right: 1px solid #ACCBE1;
}
.bandeauStatsPartBadge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-right: 1px solid #ACCBE1;
    width: 18%;
}
.bandeauStatsPartOpacity {
    position: relative;
    border-right: none;
}
.bandeauStatsPartNoBorder {
    border: none;
}
.bandeauStatsOpacityBG {
    background: rgba(255,255,255,0.1);
    position: absolute;
    top: 0px;
    left: 75%;
    width: 25%;
    height: 100%;
}
.bandeauStatsOpacityBGBadge {
    background: rgba(255,255,255,0.1);
    position: absolute;
    top: 0px;
    left: 62%;
    width: 18%;
    height: 100%;
}
.bandeauStatsSubtitle {
    font-size: 12px;
}
.bandeauStatsLi {
    font-size: 14px;
}
.bandeauStatsNumber {
    font-size: 24px;
    margin-top: 25px;
}
.bandeauStatsBadgeContainer {
    width: 18%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#bandeauStatsContainerMobile {
    display: none;
    position: relative;
    /* background: linear-gradient(90deg, #FC4700 0%, #0E384C 100%, rgba(217, 217, 217, 0) 100%); */
    /* background: url('/assets/images/bandeau_stats_bg_mobile.svg'); */
    background: url('/assets/images/bandeau_stats_mobile.png');
    background-position: center;
    background-size: cover;
    flex-wrap: wrap;
    justify-content: space-between;
}
#bandeauStatsMobileLeft {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}
#bandeauStatsMobileTop {
    display: flex;
}
#bandeauStatsMobileRight {
    width: 30%;
}
.bandeauStatsPartBadgeMobile {
    width: 30%;
}
.bandeauStatsBadgeContainerMobile {
    width: 100%;
    padding: 10px;
}
.bandeauStatsPartMobile {
    width: 100%;
}
#bandeauStatsMobileBottom {
    width: 100%;
    position: relative;
    padding: 10px;
}
.bandeauStatsOpacityBGMobile {
    position: absolute;
    background: rgba(255,255,255,0.1);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 125px;
}
.bandeauStatsBadgeMobile {
    transform: translateY(35px);
    display: block;
    margin: auto;
}
@media screen and (max-width: 1000px) {
    html {
        width: 100vw;
        overflow-x: hidden;
    }

    .member-item.fake {
        display: none;
    }

    header {
        display: none;
    }

    .headerMobile {
        position: fixed;
        top: 0;
        left: 0;
        height: 60px;
        max-height: 60px;
        width: 100vw;
        background-color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
        z-index: 50;
    }


    .logoHeaderMobile {
        height: 30px;
        object-fit: contain;
    }

    .headerMobileElements {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .headerMemberMobile {
        background-color: var(--primary);
        height: 80px;
        width: 70px;
        border-radius: 0 0 100px 100px;
        margin-left: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ph_pp {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    .userPhotoMobile {
        border-radius: 1000px;
        border: solid 1px white;
        width: 50px;
        height: 50px;
        object-fit: cover;
        margin-top: 10px;
    }

    .headerMobileElements > a:not(:last-child) {
        margin-left: 20px;
    }

    .mobileMenu {
        display: block;
        width: var(--menuPanelWidth);
        height: 500px;
        background-color: white;
        position: fixed;
        top: -500px;
        right: 0;
        transition: top ease-in-out 0.5s;
        z-index: 40;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        overflow: hidden;
    }

    .menuSlider {
        top: 0;
        left: 0;
        width: var(--menuPanelWidth);
        height: 500px;
        position: relative;
        display: flex;
        transition: left 0.5s ease-in-out;
    }

    .menuPanel {
        min-width: var(--menuPanelWidth);
        width: var(--menuPanelWidth);
        height: 500px;
        padding: 85px 25px 15px 25px;
    }

    .menuMobileEl {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-decoration: none;
        color: inherit;
        padding: 15px 0;
    }

    .menuMobileEl p {
        font-size: 14px;
        font-weight: 500;
        color: var(--secondary);
    }

    .menuMobileEl.inner {
        padding: 5px 0;
    }

    .menuMobileEl.inner p {
        font-weight: 400;
    }

    .menuMobileEl img {
        height: 10px;
        object-fit: contain;
    }

    .socialMobileBox {
        display: flex;
        margin-top: 25px;
        padding-top: 15px;
        border-top: solid 1px var(--primary);
        display: flex;
        align-items: center;
        width: fit-content;
    }

    .socialMobileBox img {
        height: 30px;
        object-fit: contain;
    }
    #wimiHeader {
        height: 70px;
        object-fit: contain;
    }
    .cross-box {
        margin-bottom: 15px;
    }

    .backMobile {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .backMobile p {
        color: var(--primary);
        font-size: 14px;
    }

    .backMobile img {
        display: block;
        margin-right: 20px;
    }

    .panelTitle {
        margin: 15px 0;
        font-weight: bold;
        font-size: 16px;
        color: var(--secondary);
    }

    .blurry {
        filter: blur(1.5rem);
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 35;
        background: url("/assets/images/flou.png");
    }

    #rightLanding {
        display: none;
    }

    #leftLanding {
        width: 100%;
        justify-content: flex-start;
        padding: 0 15px;
        padding-top: 150px;
        align-items: flex-start;
        position: relative;
        margin-left: 0;
    }

    #landingTitle {
        font-size: 1.8rem;
        width: 90%;
    }

    #landingTitle .smaller {
        font-size: 1.4rem;
        color: white;
    }

    #landingDesc {
        width: 90%;
    }

    .brMobile {
        display: inline-block;
    }

    footer {
        width: 100vw;
        overflow-x: hidden;
        padding: 20px;
    }

    #footerContent {
        margin: 0;
        flex-wrap: wrap;
        width: 100%;
    }

    .logoBoxFooter {
        width: 100%;
        margin-bottom: 20px;
    }

    #footer1, #footer2 {
        width: 48%;
    }

    #secondSplit {
        display: none;
    }

    #footer3 {
        width: 100%;
        margin-top: 50px;
    }

    .bottomMentions {
        width: 100%;
        display: block;
    }

    .bottomMentions p:first-child {
        margin-bottom: 15px;
    }

    .verticalSplitterWhiteFooter {
        margin: 0 5px;
    }

    .login-box.mobile {
        box-shadow: none;
        width: 100vw;
    }

    #shieldMobile {
        display: block;
        position: absolute;
        top: 70px;
        right: 15px;
        width: 30vw;
        object-fit: contain;
    }

    #landingDesc {
        width: 100%;
        font-size: 16px;
    }

    #indexPart2 {
        height: unset !important;
        width: 100%;
    }

    #heroArticle {
        width: 90%;
        height: 50vw;
    }

    .heroArticle {
        height: 60vw;
    }

    .heroTooltip {
        padding: 5px 7px;
        font-size: 10px;
    }

    .heroTitle {
        font-size: 1rem;
        margin-top: 10px;
    }

    .heroContentPreview {
        font-size: 0.7rem;
    }

    .heroDate {
        font-size: 0.7rem;
    }

    .heroReadRemainings {
        font-size: 0.7rem;
    }

    #articlesMain {
        width: 90%;
    }

    .articleItem {
        margin-bottom: 40px;
        padding: 0;
        padding-bottom: 20px;
    }

    .articleItemContent {
        flex-direction: column-reverse;
    }

    .articleItemContentRight {
        width: 100%;
        height: 100px;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .articleItemContentRight:empty{
        border: none;
    }

    .articleItemTitle {
        font-size: 18px;
    }

    .articleItemContentLeft {
        width: 100%;
    }

    .articleItemDesc {
        margin-bottom: 15px;
    }

    .articleItemEventHeader {
        padding-left: 0;
    }

    .eventItemTheme {
        margin-bottom: 10px;
    }

    .eventItemDate {
        margin-bottom: 20px;
    }

    .bottomArticleLine {
        flex-direction: column;
    }

    .bottomArticleLine .backButton {
        margin-left: auto;
    }

    .documentsContainer {
        width: 100%;
        margin-bottom: 30px;
    }

    .breadcrumbs {
        display: none;
    }

    #mainContact {
        width: 100%;
        flex-direction: column;
    }

    #contactLeft {
        width: 100%;
        border-radius: 0;
        height: 80vh;
    }

    #contactRight {
        width: 100%;
        padding: 15px;
    }

    .field {
        flex-direction: column;
    }

    .field .half {
        width: 100%;
        margin-bottom: 30px;
    }

    .field .half:last-child {
        margin-top: 10px;
        margin-bottom: 0;
    }

    #bottomContact {
        flex-direction: column;
    }

    #bottomContactLeft {
        width: 100%;
    }

    #bottomContactRight {
        width: 100%;
    }

    #subThemesContainer {
        width: 80%;
        overflow-x: scroll;
    }

    .themeItem {
        width: fit-content;
        white-space: nowrap;
        font-size: 12px;
    }

    .themeItem:first-child {
        padding-left: 0;
    }

    .themeItem:last-child {
        padding-right: 0;
    }

    .verticalSplitterLightBlue {
        display: none;
    }

    .mot {
        flex-direction: column;
        height: unset;
        position: relative;
    }

    .mot-main {
        width: 100%;
        margin: 0;
    }

    .mot-title {
        font-size: 25px;
    }

    .mot-subheader {
        width: 100%;
    }

    .upquote {
        position: absolute;
        top: -20px;
        left: -26px;
        opacity: 0.5;
    }

    .pres-name {
        margin-right: 15px;
        text-align: right;
    }

    .downquote {
        position: relative;
        top: -50px;
        opacity: 0.5;
        right: -10px;
    }

    .vie-content-line {
        flex-direction: column;
        margin-top: 0;
        width: 90%;
    }

    .vie-content {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .nomobile {
        display: none;
    }

    .pageContainer {
        width: 90%;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .pageContainer .pageTitle {
        font-size: 1.4rem;
    }

    .profile-aside {
        width: 100%;
        align-items: center;
    }

    .profile-pic-aside {
        border: solid 1px var(--lightBlue);
        width: 100px;
        height: 100px;
    }

    .profile-aside > p {
        font-weight: unset !important;
    }

    .nodesktop {
        display: block;
    }

    .profile-menu-mobile {
        width: 100%;
    }

    .profile-menu-mobile-item {
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .profile-menu-mobile-item img {
        height: 10px;
        object-fit: contain;
    }

    .profile-menu-mobile-item p {
        font-size: 0.9rem;
        font-weight: 500;
    }

    .profile-middle {
        width: 100%;
    }

    #userForm {
        width: 100%;
    }

    .btnLightBlue {
        width: 100%;
    }

    .profile-content-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .profile-content-header .backMobile {
        align-items: center;
        height: fit-content;
        margin-bottom: 0;
    }

    .members-part1 {
        flex-direction: column-reverse;
        width: 90%;
    }

    .members-part1 ul {
        padding-left: 0;
    }

    .members-part1 img {
        margin: 0;
        width: 100%;
        margin-bottom: 15px;
    }

    .members-part2 {
        width: 90%;
    }

    .button-line button {
        margin: 0 10px;
    }

    .member-item {
        width: 48%;
        height: 250px;
    }

    .member-row {
        flex-wrap: wrap;
    }

    .member-list {
        width: 90%;
    }

    .member-function {
        width: 90%;
        text-align: center;
    }

    .objectifs-item p {
        width: calc(100% - 50px);
        font-weight: 400;
    }

    .objectifs img {
        height: 50%;
        opacity: 0.3;
        z-index: -3;
        top: calc((100% - 50%) / 2);
    }

    .objectifs-list {
        width: 90%;
        margin: 0 auto;
    }

    .objectif-boule {
        width: 30px;
        height: 30px;
        margin-right: 20px;
    }

    .profile-aside {
        display: none;
    }

    .forceMobile {
        display: flex !important;
    }

    .us {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .profile-right {
        display: none;
    }

    .password-info {
        color: var(--lightBlue);
        font-size: 14px;
        text-align: center;
        margin-bottom: 15px;
    }

    #publishForm {
        width: 100%;
        flex-direction: column;
    }

    .post-article-middle, .post-article-right {
        width: 100%;
    }

    .logo-bar img {
        width: 50vw;
    }


    .profile-addresses-information {
        width: 100%;
    }

    .articleItem-noContentRight {
        border: none;
        height: 0%;
    }
    .eventBtnsContainer {
        flex-direction: column;
    }


    .profile_events_infos_row {
        flex-wrap: wrap;
        margin: 0;
    }
    .profile_events_infos_half {
        width: 100%;
        margin-bottom: 20px;
    }
    .profile_events_infos_third {
        width: 100%;
        margin-bottom: 20px;
    }

    .profile_events_datetime {
        width: 75px;
    }

    .profile_events_label {
        width: calc(100% - 75px - 30px);
    }
    .profile_events_btn {
        width: 100%;
        margin: 0px;
        margin-bottom: 5px;
    }
    .trombinoscopeItem {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0px;
        margin-bottom: 10px;
    }
    .trombinoscopeItemPortrait {
        margin-right: 10px;
    }
    .trombinoscopeItemContent {
        width: 70%;
    }
    .trombinoscopeItemContent p {
        text-align: left;
    }
    #trombinoscopeContainer {
        flex-direction: column;
    }
    #bandeauStatsContainer {
        display: none;
    }
    #bandeauStatsContainerMobile {
        display: flex;
    }
    .bandeauStatsNumber {
        margin-top: 15px;
        margin-bottom: 10px;
    }
}