/*
Theme Name: ILLE UHA
Author: Maxence Sanchez
Description: Thème wordpress de l'ILLE
Version: 1.0
*/

/**********************************************************/
/* initialisation globale des éléments principaux du site */
/**********************************************************/

:root {
    --bleu-un-uha: #004996;
    --bleu-deux-uha: #009fe3;
    --white-color: rgb(255, 255, 255);
    --light-Grey-Texts: #5D728C;
    --light-grey-borders: #e0e6ea;
    --darkGrey: #202020;
    --transition-time: 0.4s;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: black;
}

@font-face {
    font-family: roboto-reg;
    src: url("assets/fonts/Roboto-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: roboto-thin;
    src: url("assets/fonts/Roboto-Light.ttf");
    font-display: swap;
}

@font-face {
    font-family: roboto-bold;
    src: url("assets/fonts/Roboto-Bold.ttf");
    font-display: swap;
}

body {
    font-family: roboto-reg;
    position: relative;
}

main {
    min-height: 100vh;
}

/**********************************************/
/* initialisation des types de grid possibles */
/**********************************************/

.grid {
    display: grid;
    gap: 10px;
}

.flex-center {
    display: flex;
    align-items: center;
}

.align {
    align-items: center;
}

.bWidth {
    width: auto !important;
    height: 100%;
}

.grid-important {
    display: grid !important;
    gap: 10px;
}

.grid-half {
    grid-template-columns: 1fr 1fr;
}

.grid-third {
    grid-template-columns: repeat(3, 1fr);
}

.grid-quarter {
    grid-template-columns: repeat(4, 1fr);
}

.grid-one-quarter {
    grid-template-columns: 1fr 4fr;
}

.grid-two-third {
    grid-template-columns: 2fr 1fr;
}

.grid-two-third-reversed {
    grid-template-columns: 1fr 2fr;
}

.grid-714 {
    grid-template-columns: 7fr 1fr 4fr;
}

.grid-273 {
    grid-template-columns: 2fr 7fr 3fr;
}

.grid-84 {
    grid-template-columns: 8fr 4fr;
    gap: 100px;
}

.grid-282 {
    grid-template-columns: 1.5fr 8fr 2fr;
}

.grid-813 {
    grid-template-columns: 8fr 1fr 3fr;
}

.grid-219 {
    grid-template-columns: 1.5fr 50px 9fr;
}

.grid-318 {
    grid-template-columns: 3fr 1fr 8fr;
}

.grid-615 {
    grid-template-columns: 6fr 1fr 5fr !important;
}

.grid-1-7 {
    grid-template-columns: repeat(7, 1fr);
}

.flex-col {
    display: flex;
    flex-direction: column;
}

/* initialisation du lien si je le veut en display block */

.ablock {
    display: block;
    color: var(--light-Grey-Texts);
    transition: var(--transition-time);
}

.ablock:hover {
    color: var(--bleu-deux-uha);
}

/**************************************/
/* initialisation des boutons du site */
/**************************************/

.button-type-1,
.button-type-2,
.button-type-3,
.buttonInParagraphe1 a,
.buttonInParagraphe2 a {
    color: white;
    padding: 5px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 170px;
    width: fit-content;
    transition: var(--transition-time);
}

.button-type-1 a,
.button-type-2 a,
.buttonInParagraphe1 a,
.buttonInParagraphe2 a {
    color: white;
}

.button-type-1::after,
.button-type-2::after,
.buttonInParagraphe1 a::after,
.buttonInParagraphe2 a::after {
    display: flex;
    align-items: center;
    justify-content: center;
    content: url("/wp-content/themes/Theme-ILLE-UHA/assets/images/arrowButtonType-2.svg");
    width: 30px;
    transition: 0.4s;
}

.button-type-3::after {
    display: flex;
    align-items: center;
    justify-content: center;
    content: url("/wp-content/themes/Theme-ILLE-UHA/assets/images/arrowButtonType-3.svg");
    width: 30px;
    transition: 0.4s;
}

.button-type-1:hover::after,
.button-type-2:hover::after,
.button-type-3:hover::after,
.buttonInParagraphe1 a:hover::after,
.buttonInParagraphe2 a:hover::after {
    transform: translateX(5px);
}

.button-type-3 a {
    color: var(--bleu-un-uha);
}

.button-type-1,
.buttonInParagraphe1 a {
    background: var(--bleu-deux-uha);
}

.button-type-1:hover,
.button-type-2:hover,
.button-type-3:hover,
.buttonInParagraphe1 a:hover,
.buttonInParagraphe2 a:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 1px #00000025;
}

.button-type-3 {
    border: solid 1px var(--bleu-un-uha);
    color: var(--bleu-un-uha);
}

.button-type-2,
.buttonInParagraphe2 a {
    background: var(--bleu-un-uha);
}

/*******************************************/
/* initialisation des cellules sur le site */
/*******************************************/

.cell {
    border: solid 1px var(--bleu-deux-uha) !important;
    border-radius: 10px;
    box-shadow: 4px 4px 1px #00000025;
}

/*******************************************/
/* initialisation des borders radius seuls */
/*******************************************/

.b-r-5 {
    border-radius: 5px;
}

.b-r-10 {
    border-radius: 10px;
}

/* margins */

.m-auto,
.ExtraSmWidthMainPage {
    margin: auto;
}

.m-0,
body {
    margin: 0;
}

.m-b-5 {
    margin-bottom: 5px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-50 {
    margin-bottom: 50px;
}

.m-b-100 {
    margin-bottom: 100px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-t-5 {
    margin-top: 5px;
}

.m-t-0 {
    margin-top: 0;
}

.m-t-20 {
    margin-top: 20px;
}

.m-t-50 {
    margin-top: 50px;
}

.m-t-100 {
    margin-top: 100px;
}

/* gaps */

.noGap {
    gap: 0;
}

.g-5 {
    gap: 5px;
}

.g-10 {
    gap: 10px;
}

.g-40 {
    gap: 40px;
}

.g-50 {
    gap: 50px;
}

.g-100 {
    gap: 100px;
}

.g-250 {
    gap: 250px;
}


/*************************************/
/* initialisation tailles de l'écran */
/*************************************/

.maxW100p {
    max-width: 100%;
}

.SmWidthMainPage {
    width: 84%;
}

.ExtraSmWidthMainPage {
    width: 70%;
}

img {
    width: 100%;
}

/******************/
/* header du site */
/******************/

header {
    position: sticky;
    top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 10000;
}


.beforeHeader {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: white;
    transition: var(--transition-time);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.223);
    transform: translateY(-110%);
}

.noTranslate {
    transform: translateY(0);
}

.centerHeader {
    justify-content: space-between;
}

header ul {
    display: flex;
    gap: 40px;
    list-style-type: none;
    font-size: 20px;
}

header a {
    transition: var(--transition-time);
    position: relative;
}

header li:hover>a {
    color: var(--bleu-deux-uha) !important;
}

header nav a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--bleu-deux-uha);
    border-radius: 20px;
    transition: var(--transition-time);
}

header nav a:hover::before {
    width: 100%;
}

/******************/
/* titres du site */
/******************/

h1 {
    margin-top: 50px;
    position: relative;
    color: var(--bleu-deux-uha);
}

h1::first-letter {
    color: var(--bleu-un-uha);
}

h1::before {
    content: "";
    position: absolute;
    background-color: var(--bleu-un-uha);
    bottom: -8px;
    width: 45px;
    height: 5px;
}

h2 {
    padding-left: 20px;
    position: relative;
    background: linear-gradient(90deg, var(--light-grey-borders), transparent);
    max-width: fit-content;
    clip: rect(0, 0, 2px, 5px);
    opacity: 0;
    transform: translateX(-50px);
    animation: animationTitle 0.6s forwards;
}

h2::first-letter {
    text-transform: capitalize;
}

h2::before {
    content: "";
    width: 5px;
    top: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    background: var(--bleu-deux-uha);
}

@keyframes animationTitle {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/******************/
/* footer du site */
/******************/

footer {
    background: var(--bleu-un-uha);
    color: var(--white-color);
}

footer a {
    color: var(--white-color);
}

footer ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upFooter {
    gap: 100px;
    padding-bottom: 20px;
}

.titleFooter {
    font-size: 20px;
    padding-bottom: 20px;
}

.subfooter {
    background: var(--darkGrey);
}

.subPfoot {
    padding-top: 10px;
    padding-bottom: 10px;
}

.titleAuteur img {
    width: 30px;
}

.underSection {
    padding-top: 10px;
    padding-bottom: 10px;
}

.logoFooter {
    margin-top: 20px;
}

.contactsFooter {
    padding-top: 40px;
}

.fastLinks {
    padding-top: 40px;
}

/* page des parutions */

.textParution {
    color: var(--light-Grey-Texts);
    font-family: roboto-thin;
}

.imageMiseEnAvant {
    border-radius: 9px;
}

.rightActuItem {
    color: var(--light-Grey-Texts);
    padding: 10px;
}



.parentReadmore {
    display: flex;
    margin-bottom: 10px;
    margin-top: 10px;
}

.allArticles,
.allOfCategory {
    padding-bottom: 20px;
    padding-top: 20px;
}

.gridArticles {
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
}

.leftActuItem img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 9px 0 0 9px;
}

.parutionImage {
    object-position: 100% 0;
}

.marginTopAuto {
    display: inline-block;
    margin-top: auto;
}

.singleAuteur {
    padding-inline: 5px;
    border-left: solid 1px var(--light-grey-borders);
    border-right: solid 1px var(--light-grey-borders);
}

/* sous menus header */

.sub-menu {
    position: absolute;
    flex-direction: column;
    gap: 0;
    min-width: 200px;
    padding: 5px;
    border-radius: 10px;
    background: var(--white-color);
    white-space: nowrap;
    width: max-content;
    border: solid 1px var(--light-grey-borders);
    box-shadow: 0 4px 4px #00000025;
    transform: translate(-5px, -10px);
    opacity: 0;
    transition: transform var(--transition-time) ease-in-out, opacity var(--transition-time) ease-in-out;
    pointer-events: none;
}

.menu-item-has-children:hover .sub-menu {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.sub-menu li a {
    padding: 4px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
    transition: var(--transition-time);
}

.sub-menu li:hover a {
    background: var(--light-grey-borders);
}

header .sub-menu a:hover {
    border-radius: 5px;
    color: var(--light-Grey-Texts);
    color: black !important;
}

.menu-item-has-children::after {
    content: url("/wp-content/themes/Theme-ILLE-UHA/assets/images/arrow.svg");
    transition: var(--transition-time);
    display: inline-block;
}

.menu-item-has-children .menu-item:hover a {
    color: black;
}

.menu-item-has-children a::before {
    background: transparent;
}



.menu-item-has-children:hover::after {
    transform: rotateZ(180deg);
    content: url("/wp-content/themes/Theme-ILLE-UHA/assets/images/arrowBlue.svg") !important;
}

.menu-item {
    position: relative;
}

/********************/
/* page des membres */
/********************/

.grid-membres {
    gap: 50px;
    width: 92%;
    grid-template-rows: max-content;
}

.membre {
    background: var(--white-color);
    min-height: 500px;
}

.paddingPartMember {
    padding: 20px;
    flex: 1;
}

.paddingPartMember div {
    padding-top: 5px;
    padding-bottom: 5px;
}

.membre img {
    border-radius: 9px 9px 0 0;
}

.membre .parentReadmore {
    margin-top: auto;

}

.blueName {
    color: var(--bleu-un-uha);
}

.gridContacts .wp-block-column {
    overflow-wrap: normal;
    word-break: normal;
}

.gridContacts h2 {
    max-width: 100%;
}

.NameContacts {
    font-family: roboto-bold;
}

.mailuhacontacts a {
    font-family: roboto-bold;
    color: var(--bleu-deux-uha);
}

.gridContacts strong {
    color: var(--bleu-deux-uha);
}

.lightGrey {
    color: var(--light-Grey-Texts);
}

.gridContacts h3 {
    background: var(--bleu-deux-uha);
    color: white;
    padding: 10px;
    margin: 0;
    border-radius: 8px 8px 0 0;
}

.ContactUsBlock p {
    padding-inline: 20px;
}

.gridContacts .wp-block-social-links {
    padding-inline: 20px;
}

.wp-block-social-links a {
    background: var(--bleu-deux-uha);
    border-radius: 100%;
}

.followUs {
    margin-top: 50px;
}

/* page des catégories */

.noPosts {
    color: var(--light-Grey-Texts);
    padding: 10px;
    background: var(--light-grey-borders);
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.postForThisCategory {
    gap: 50px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
}

.postForThisCategory h3 {
    text-transform: uppercase;
}

.globalDivForPosts {
    margin-top: 50px;
    margin-bottom: 50px;
}

.widthUp {
    max-width: fit-content;
}

.InfoPratiques {
    background: var(--white-color);
    padding: 14px;
    padding-inline: 10px;
    color: var(--light-Grey-Texts);
    border-radius: 5px;
    border: solid 1px var(--bleu-deux-uha);
    box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.25);
}

.blueFont {
    color: var(--bleu-un-uha);
}

.titleInfoPratiques {
    font-family: roboto-bold;
    color: #3c3c3c;
    display: flex;
    gap: 20px;
    padding-bottom: 5px;
    font-size: 20px;
}

.auteurs {
    color: var(--light-Grey-Texts);

}

.date,
.heure {
    padding-bottom: 20px;
}

.sub {
    font-size: 12px;
}

.InfoPratiques img {
    width: 30px;
}

/* page de parution individuelle */

.marginTop-90 {
    margin-top: 90px;
}

.gridBotActuAndContent {
    margin-top: 50px;
    margin-bottom: 100px;
}

.grille {
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.grilleNoContent {
    background: #f1f1f1;
    margin: 5px;
}

.grilleNoContent .EventRealData {
    margin: 10px;
    margin-left: 50px;
}

.EventRealData {
    margin: auto;
    margin-inline: 0;
}

.grille .titleInfoPratiques img {
    width: 30px;
}

.blueColor {
    font-family: roboto-bold;
    color: var(--bleu-un-uha);
}

.grille .EventRealData {
    color: var(--light-Grey-Texts);
}

.iconsPartage {
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.iconsPartage a {
    display: block;
}

.iconsPartage img {
    width: 30px;
}

.titleOrganisateur {
    color: var(--light-Grey-Texts);
}

.titleOrganisateur img {
    width: 30px;
}

.orgaEvent {
    font-size: 20px;
    font-family: roboto-bold;
}

.descriptionContent {
    width: 70%;
    margin-bottom: 20px;
}

.leftEventPage,
.space-betw {
    justify-content: space-between;
}

.marginTop {
    display: inline-block;
    margin-top: auto;
}

/* styles additionnels page accueil */

.socialMediasMainPage {
    display: inline-block;
    margin-top: 70px;
    margin-bottom: 0;
}

.logo_blueSky_accueil,
.logo_instagram_accueil {
    background: transparent !important;
}

.wp-block-social-links .logo_blueSky_accueil a,
.wp-block-social-links .logo_instagram_accueil a {
    background: transparent;
}

.wp-block-cover a {
    color: white;
}

.noFlexGrow {
    flex-grow: unset !important;
    flex-basis: auto !important;
}

.TextGrey {
    color: var(--light-Grey-Texts);
}

.TextGrey strong {
    color: #475668;
}


.cellPropoPadding {
    padding: 5px;
    padding-inline: 10px;
}

.NoDot {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-align: center;
    padding: 0;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.stretch {
    align-items: stretch;
}

.imgCell img {
    border-radius: 9px;
}

.nowidth {
    height: 100%;
    width: auto !important;
}

.accordeon {
    border: solid 1px var(--bleu-un-uha);
}

summary {
    background: var(--bleu-un-uha);
    font-weight: 600;
    padding: 10px;
    color: white;
    cursor: pointer;
    border-bottom: solid 1px white;
}

.wp-block-details {
    border-bottom: 1px solid var(--bleu-un-uha);
}

details p {
    padding: 5px;
    padding-inline: 10px;
}

.AllCellMember {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.AllCellMember:hover .informationsMember {
    transform: translateX(0) translateY(-8px);
    box-shadow: 4px 4px 4px #00000025;
}

.AllCellMember:hover .topImageMember .bgPath {
    animation: bounces 1s infinite ease-in-out alternate;
}

@keyframes bounces {
    from {
        transform: translateX(-50%) translateY(0px);
    }

    to {
        transform: translateX(-50%) translateY(-20px);
    }
}

.icon img {
    width: 30px;
}

.informationsMember {
    transition: var(--transition-time);
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 100%;
    width: 100%;
    z-index: 2;
    flex: 1;
    background-color: white;
    overflow: hidden;
}

.informationsMember .content {
    margin-top: auto;
}

.topImageMember {
    transition: var(--transition-time);
    width: 80%;
    z-index: 0;
    height: 250px;
    border-radius: 10px 10px 0 0;
    border-top: solid 2px var(--bleu-deux-uha);
    border-left: solid 2px var(--bleu-deux-uha);
    border-right: solid 2px var(--bleu-deux-uha);
}

.imageProfil {
    height: 100%;
}

.imageProfil img {
    object-fit: cover;
    height: 100%;
    border-radius: 8px 8px 0 0;
}

.bgPath {
    transition: var(--transition-time);
    position: absolute;
    bottom: -50px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    width: 100%;
}

.rel {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: end;
}

.OtherInformations {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.RightPartArrowMember {
    background: var(--bleu-deux-uha);
    padding: 5px;
    padding-inline: 20px;
    border-radius: 5px 0 0 0;
}

.bottomPart {
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: end;
}

.informationsMember .content {
    padding-inline: 10px;
}

.profilPicture {
    display: flex;
    align-items: center;
}

.profilPicture img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: solid 10px var(--bleu-un-uha);
    border-radius: 100%;
}

.TopInformation {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--light-grey-borders);
    border-top: solid 1px var(--light-grey-borders);
}

/* page d'un membre individuel*/

.topInformations {
    margin-top: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: solid 1px var(--light-grey-borders);
    border-bottom: solid 1px var(--light-grey-borders);
}

.paddingOn {
    padding: 10px;
}

.TitleCell {
    font-weight: 600;
    font-size: 20px;
    color: #3c3c3c;

    margin-top: 10px;
    margin-bottom: 10px;
}

.icon {
    display: flex;
    align-items: center;
}

.grp-content {
    border: solid 1px var(--bleu-un-uha);
}

#wphal-content br {
    display: none;
}

.grp-div .wphal-titre-groupe {
    background-color: var(--bleu-un-uha);
    color: var(--white-color);
    border-radius: 0;
}

.wphal-nbmetadata {
    color: var(--white-color);
}

.grp-content {
    display: none;
}

.wphal-footer p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wphal-titre-groupe {
    cursor: pointer;
    border-bottom: solid 1px white;
}

.counter-doc {
    color: var(--light-Grey-Texts);
}

.openedMenu {
    display: block;
}

.grp-content ul li {
    margin-top: 10px;
    margin-bottom: 10px;
}

.membersMenu {
    position: sticky;
    top: 20%;
    margin-top: 30px;
    height: fit-content;
}

.linkMember {
    padding: 10px;
    padding-inline: 30px;
    border: solid 1px var(--bleu-un-uha);
    border-top: 0;
}

.scrollDown {
    overflow-y: scroll;
    max-height: 400px;
}

.container404 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container404 h1 {
    color: var(--light-Grey-Texts);
    font-size: 70px;
    font-weight: 700;
}

.container404 h1::before {
    display: none;
}

.container404 h1::first-letter {
    color: var(--light-Grey-Texts);
}

.container404 {
    text-align: center;
}

.revues {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.grid-622 {
    grid-template-columns: 6fr 2fr 2fr;
}

.leftRevuePart h2 {
    padding: 0;
    background: none;
}

.leftRevuePart h2::before {
    width: 0;
}

.leftRevuePart p {
    color: var(--light-Grey-Texts);
}

.rightLink {
    padding-bottom: 16px;
    display: flex;
    align-items: end;
}


footer a {
    position: relative;
}

footer a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: white;
    transition: 0.4s;
    border-radius: 10px;
}

footer a:hover::before {
    width: 100%;
}

/* menu de chagement de langues */

#menu-changement_langue {
    position: fixed;
    top: 20%;
    left: 20px;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    margin: 0;
    gap: 20px;
}

#menu-changement_langue a img {
    width: 35px !important;
    height: auto !important;
    transition: var(--transition-time);
}

#menu-changement_langue a img:hover {
    transform: scale(1.2);
}

.block-imageMiseEnAvant {
    object-fit: cover;
    height: 100%;
}

.radiusB {
    border-radius: 5px;
}

.reglerImage {
    object-fit: cover;
    height: 100%;
    min-height: 560px;
    max-height: 620px;
}

.header-about {
    position: fixed;
    right: 0;
    left: 0;
}

.header-about a {
    color: white;
}

.header-about .sub-menu a {
    color: black;
}

.m-h-100vh {
    min-height: 100vh;
}

.m-h-100 {
    min-height: 200px;
}

.NoDecorations::first-letter {
    color: white;
}

.NoDecorations::before {
    width: 0;
}

.header-about .blacklink {
    color: black;
}



.header-about .custom-logo-link {
    position: relative;
}

.header-about .custom-logo-link img {
    position: relative;
    z-index: 20;
}

.header-about .custom-logo-link::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -50px;
    bottom: 0;
    width: 400px;
    height: 150px;
    background-image: url("/wp-content/themes/Theme-ILLE-UHA/assets/images/Encart.svg");
    background-size: cover;
    background-repeat: no-repeat;
    transition: var(--transition-time);
}

.bannerClip {
    clip-path: ellipse(115% 100% at 50% 0%);
    position: relative;
}

.noCache .custom-logo-link::before {
    transform: translateY(-200px);
}

.celAxe {
    background: var(--bleu-un-uha);
    padding: 5px;
    border-radius: 10px;
}

.celAxe p strong {
    color: white;
}

.colDisciplines {
    gap: 10px;
}

.colDisciplines>div {
    border-radius: 5px;
    padding: 10px;
    padding-inline: 5px;
    background-size: cover;
    min-height: 100px;
    font-weight: 700;
    display: flex;
    filter: brightness(100%);

    transition: 0.3s ease;
    width: auto !important;

    background-position: 70%;
}

.colDisciplines>div p {
    margin: auto;
    color: white;
}

.litterature {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/wp-content/themes/Theme-ILLE-UHA/assets/images/litterature.jpg');
}

.civilisation {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/wp-content/themes/Theme-ILLE-UHA/assets/images/civilisation.jpg');
}

.etudes {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/wp-content/themes/Theme-ILLE-UHA/assets/images/etude.jpg');
}

.musique {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/wp-content/themes/Theme-ILLE-UHA/assets/images/musique.jpg');
}

.cinema {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/wp-content/themes/Theme-ILLE-UHA/assets/images/cinema.jpg');
}

.arts {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/wp-content/themes/Theme-ILLE-UHA/assets/images/art.jpg');
}

.sciences {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/wp-content/themes/Theme-ILLE-UHA/assets/images/sciences.jpg');
}

.noHeight {
    height: 200px;
}

.header-about .menu-item-has-children::after {
    content: url("/wp-content/themes/Theme-ILLE-UHA/assets/images/arrowWhite.svg");
}

.header-about .isBlack::after {
    content: url("/wp-content/themes/Theme-ILLE-UHA/assets/images/arrow.svg");
}

.smImage {
    width: 20px;
}

.justified {
    text-align: justify;
}

.NoBgForH2 {
    padding-left: 0;
    background: none;
}

.NoBgForH2::before {
    display: none;
}

/******************/
/* menu hamburger */
/******************/

.hamburger {
    z-index: 101;
    cursor: pointer;
    display: none;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: rgb(0, 0, 0);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition:
        stroke 0.2s,
        stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-about .line {
    stroke: rgb(255, 255, 255);
}

header .centerHeader .hamburger svg .lineWhite {
    stroke: rgb(255, 255, 255);
}

header .hamburger svg .lineBlack {
    stroke: rgb(0, 0, 0);
}


.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked+svg {
    transform: rotate(-45deg);
}

.hamburger input:checked+svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

.absoluteCircle {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    transition: 0.8s;
    cursor: pointer;
}

.absoluteCircle path {
    animation: bounces2 4s linear infinite;
}

@keyframes bounces2 {
    0% {
        transform: translateY(0);
    }

    5% {
        transform: translateY(5px);
    }

    10% {
        transform: translateY(0px);
    }

    15% {
        transform: translateY(5px);
    }

    20% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0);
    }
}

.absoluteCircle:hover {
    transform: translateX(-50%) translateY(-20px);

    animation: slowmove 2s ease-in-out infinite;

    animation-delay: 0.7s;
}

@keyframes slowmove {
    0% {
        transform: translateX(-50%) translateY(-20px);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }

    50% {
        transform: translateX(-50%) translateY(-25px);
    }
}

.none {
    display: none;
}

.paginationEndPage {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.paginationEndPage a {
    padding: 5px;
    border-radius: 2px;
    border: solid 1px var(--bleu-deux-uha);
    color: var(--bleu-deux-uha);
}

.paginationEndPage span {
    padding: 5px;
    border: solid 1px var(--light-grey-borders);
    color: var(--light-grey-borders);
    border-radius: 2px;
}

.fitContentHeight {
    height: fit-content;
}

.NoOrga {
    padding-inline: 20px;
}


.breadcrumb {
    color: var(--light-Grey-Texts);
}

.breadcrumb a {
    color: var(--bleu-deux-uha) !important;
}

/* Gérer le haut de la page d'accueil */

.relative {
    position: relative;
}

.Sticky {
    position: sticky;
    top: 30%;
}

.Sticky20 {
    position: sticky;
    top: 20%;
}

.cellNoContent {
    position: sticky;
    top: 0;
}

.orgaTitle {
    margin-left: 50px;
}

.caption {
    color: var(--light-Grey-Texts);
    font-family: roboto-thin;
}

.has-borders {
    padding: 0;
    padding-inline: 10px;
    margin-inline: 20px;

    margin-top: 10px;
    margin-bottom: 10px;
    border-left: 1px solid var(--light-grey-borders);
    border-right: 1px solid var(--light-grey-borders);
}

/**********************/
/* BARRE DE RECHERCHE */
/**********************/

#search-results {
    position: absolute;
    background: white;
    width: fit-content;
}

#search-input {
    padding: 5px;
    border-radius: 5px;
    border: var(--bleu-deux-uha) solid 1px;
}

#search-results div {
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: var(--bleu-deux-uha);
}

#search-results a {
    color: var(--bleu-deux-uha);
}

#search-results div:last-child {
    border-bottom: none;
}

#search-results a::before {
    display: none;
}


header nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.loupe {
    width: 26px;
}

.formResearch {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.loupe {
    display: none;
    cursor: pointer;
    transition: var(--transition-time);
}

.loupe:hover {
    transform: scale(1.2);
}

.just-center {
    justify-content: center;
}

/* Page des parutions rework */

.leftArticlePart img {
    object-fit: cover;
    height: 100%;
}

.refParution {
    color: var(--light-Grey-Texts);
    font-size: 14px;
}

.imageParution img {
    object-fit: cover;
}

.ParutionContent a {
    color: var(--bleu-deux-uha);
    display: inline-block;
    transition: var(--transition-time);
}