@font-face {
    font-family: basicFont;
    src: url(../fonts/KumbhSans-Regular.ttf);
}

@font-face {
    font-family: titleFont;
    src: url(../fonts/OfficialBook.ttf);
}

header {
    font-family: basicFont, sans-serif;
    background-color: white;
}
body {
    font-family: basicFont, sans-serif;
}

footer {
    font-family: basicFont, sans-serif;
    margin-top: 50px;
}

h1 {
    font-size: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: basicFont, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

#_bs_ header a {
    text-decoration: none;
}

#fil_arianne {
    color: #28a745;
    margin: 20px 0px;
}

#_bs_ #fil_arianne a {
    text-decoration: none;
}

#accueilAccroche {
    right: 20%;
    bottom: 10%;
    color: white;
    font-size: 26px;
}

a,
.mapBtn {
    cursor: pointer;
    color: #1e7e34;
}
a:hover,
.mapBtn:hover {
    color: #ed69b8;
    text-decoration: underline;
}

.block_link,
.block_link:hover {
    color: black;
    text-decoration: none;
}

.basicfont {
    font-family: basicFont, cursive;
}

.titlefont {
    font-family: titleFont, sans-serif;
}

.font_13 {
    font-size: 13px;
}
.font_14 {
    font-size: 14px;
}
.font_16 {
    font-size: 16px;
}
.font_18 {
    font-size: 18px;
}
.font_20 {
    font-size: 20px;
}
.font_22 {
    font-size: 22px;
}

.font_26 {
    font-size: 26px;
}

.font_36 {
    font-size: 36px;
}

.black_txt {
    color: black !important;
}

.pink_txt {
    color: #ed69b8 !important;
}

.pink_bg {
    background-color: #ed69b8;
}

.green_txt {
    color: #339933;
}

.green_bg {
    background-color: #339933;
}

.white_txt {
    color: white !important;
}

.white_bg {
    background-color: white;
}

.grey_bg {
    background-color: #f5f5f5;
}

.red_txt {
    color: red;
}

.border_black {
    border: 1px solid black;
}

.block_80_80 {
    width: 80px;
    height: 80px;
}

.mh_200 {
    max-height: 200px;
}

@media (max-width: 721px) {
    .mh_200 {
        max-height: 100px;
    }
}

.article_mini img {
    max-height: 150px;
}

.article_mini div {
    height: 150px;
}

.div_p {
    margin-top: 10px;
}

.ficheLink {
    border: 1px grey solid;
}

/*
 * Resp
 */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
}

header {
    position: fixed;
    width: 100%;
    z-index: 10000;
    top: 0;
    left: 0;
}

body::before {
    content: "";
    display: block;
    height: 120px;
}

#menu-burger {
    width: 30px;
    filter: invert(100%) sepia(99%) saturate(2%) hue-rotate(6deg)
        brightness(103%) contrast(100%);
    display: none;
    cursor: pointer;
    margin-left: auto;
    margin-right: 20px;
}

#close-burger {
    filter: invert(100%) sepia(99%) saturate(2%) hue-rotate(6deg)
        brightness(103%) contrast(100%);
    cursor: pointer;
}

#menu-pannel {
    display: block;
    background-color: #339933;
    position: fixed;
    top: 120px;
    left: -100vw;
    height: calc(100vh - 120px);
    width: 100vw;
    z-index: 10001;
    transition: 0.5s;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#menu-pannel>ul:first-of-type {
    height: calc(100% - 181px);
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#menu-pannel>ul:last-of-type {
    margin-bottom: 0;
    position: absolute;
    bottom:0;
    width: 100%;
    border-top: 1px solid white;
    padding-top: 15px;
}

#menu-pannel::-webkit-scrollbar {
    display: none;
}

#divDropDown {
    position: relative;
    display: flex;
    align-items: center;
    height: 60px;
}

#dropDownPanel {
    display: none;
    position: absolute;
    background-color: #339933;
    width: 100%;
    top: 60px;
    left: 0;
}

#dropDownPanel a {
    display: block;
}

#dropDownPanel a:hover {
    color: #ed69b8;
}
#divDropDown:hover #dropDownPanel {
    display: block;
}

@media (max-width: 1010px) {
    #menu-burger {
        display: block;
    }
    .nav-bar > a,
    #dropDown {
        display: none;
    }
    #menu-pannel {
        display: block;
    }
    footer img {
        width: 150px;
    }
}

.container {
    max-width: 960px;
}

.fake_p {
    padding: 0;
}

.block_80_100 {
    width: 80px;
    height: 100px;
    padding: 5px;
}

.txt-shadow {
    text-shadow: 2px 2px 2px black;
}

.search-bar {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid grey;
}

.search-list {
    border: 1px solid grey;
    display: none;
    position: absolute;
    background-color: white;
}

.search-list-item {
    color: black;
    padding: 5px 10px;
    display: block;
}

.search-list-item:hover {
    color: white;
    text-decoration: none;
    background-color: #339933;
}

/* Newsletter */

#popUpNewsletter,
#successNewsletter {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #339933;
    padding: 30px;
    width: 300px;
    text-align: center;
    z-index: 10002;
}

#nameNewsletter,
#emailNewsletter {
    width: 100%;
    margin-bottom: 20px;
    padding: 7px 5px;
    border: 1px solid grey;
}

.invalid-input {
    border-color: red !important;
    color: red;
}

/* Loading */
.loading-bg {
    display: none;
    position: fixed;
    background-color: #00000055;
    top: 0;
    left: 0;
    z-index: 10003;
    width: 100%;
    height: 100%;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    width: 80px;
    height: 80px;
}
.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #339933;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* actu */

.fa-solid {
    color: #ed69b8;
    transition: 0.4s;
}

#searchCat,
#searchYear {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    cursor: pointer;
}

#allCat,
#allYears {
    display: none;
}

/* scroll-tp */

.btn-scroll-top {
    position: fixed;
    display: none;
    bottom: 30px;
    right: 20px;
    cursor: pointer;
}

/* citation */

.citation {
    margin-left: 66%;
}

@media (max-width: 700px) {
    .citation {
        margin-left: 30%;
    }
}

/* Zoom */

.zoom {
    cursor: zoom-in;
}

#zoom-img {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    object-fit: contain;
    background-color: #000000AA;
    cursor: zoom-out;
}