@font-face {
    font-family: 'Orkney Light'; /* Remplacez 'NomDeVotrePolice' par le nom que vous souhaitez donner à votre police */
    src: url('./fonts/Orkney Regular.otf') format('opentype'); /* Remplacez 'chemin/vers/votre-police.otf' par le chemin correct vers votre fichier .otf */
    font-weight: normal; /* ou bold si c'est une police en gras */
    font-style: normal; /* ou italic si c'est une police en italique */
}

@font-face {
    font-family: 'Orkney Bold'; /* Si vous avez une version en gras de votre police */
    src: url('./fonts/Orkney Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

*{
    font-family: 'Orkney Light', sans-serif;
    outline: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

body{
    background-color: #ECECEC;
}

#centered-content{
    margin: 0 auto;
    width: 100%;
    max-width: 1150px;
}

.header{
    position: sticky;
    margin: 0 auto;
    top: 0;
    z-index: 999;
    display: flex;
    height: 95px;
    justify-content: space-between;
    align-items: center;
    background-color: #ECECEC;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 0 10px rgba(42, 42, 42, 0.3);
}

.back-home{
    color: black;
    text-decoration: none;
}

#logo-and-domain{
    width: 35%;
    display: flex;
    align-items: center;
}

.img{
    text-align: center;
}

.logo{
    height: 90px;
    width: auto;
}
#domain-name {
    width: 100%;
}
.container-header-links {
    margin-right: 5px;
    width: 45%;
    display: flex;
    justify-content: space-around;
}

#container-title {
    position: absolute;
    top: 95px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #b8101b;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#content-title{
    margin: 0 auto;
    width: 100%;
    max-width: 1150px;
    text-align: left;
    justify-content: center;
    align-items: center;
}

.page-title{
    color: #ECECEC;
    font-size: 30px;
    font-weight: bold
}

.page-title-2{
    color: #ECECEC;
    font-size: 25px;
    font-weight: lighter;
    font-style: italic;
}

/*---- Hover effect for top right menu ----*/
.top-menu a {
  color: inherit;
  text-decoration: none;
}

.top-menu a {
    background:
    linear-gradient(
      to right,
      #00c296,
      #3075f5
    ),
    linear-gradient(
      to right,
      rgb(255, 0, 0),
      rgb(189, 0, 0),
      rgb(105, 4, 4)
    );
    background-size: 100% 3px, 0 3px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
}

.top-menu a:hover {
    color: #8f0c15;
    background-size: 0 3px, 100% 3px;
}
/*---- End of hover effect for top right menu ----*/

.ariane-fil{
    color: #ECECEC;
    font-size: 14px;
    font-style: italic;
}

.content {
    width: 70%;
    border-radius: 25px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(42, 42, 42, 0.3);
    margin-bottom: 25px;
    padding: 0 20px 20px 20px;
    float: left;
}

.article-title {
    color: #797979;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    padding-top: 15px;
}

.article-text {
    text-align: justify;
    letter-spacing: 2px;
    line-height: 1.55em;
    color: #1f1f1f;
    font-size: 16px;
}

.redirection{
    color: #dc1321;
    font-weight: bold;
}


.promote{
    font-weight: bold;
}

.normal-text{

}

/* SideBar css code */

.sidebar {
    width: 24%;
    margin-left: 25px;
    float: left;
}

.sidebar-contact{
    height: fit-content;
    padding: 8px;
    background-color: #5361fc;
    box-shadow: 0 0 10px rgba(42, 42, 42, 0.3);
    /*border-radius: 20px;*/
}

#sidebar-contact-title{
    text-align: center;
    color: #ECECEC;
    font-size: 18px;
    margin-bottom: 12px;
}

.sidebar-contact-text{
    margin-bottom: 4px;
    color: #ECECEC;
    font-size: 14px;
    text-align: justify;
}

.sidebar-france{
    margin-top: 25px;
    color: #ffffff;
    background: linear-gradient(to bottom, #ECECEC,#ECECEC, #b8101b);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(42, 42, 42, 0.3);
}

#france-map{
    width: 100%;
}

.sidebar-adress{
    text-align: center;
}

.ariane-categorie{
    color: #ECECEC;
}

/* End SideBar css code*/

.container-content-sidebar {
    display: flex;
}

@media screen and (max-width: 1015px) {
    .content {
        width: 600px;
    }

    #domain-name {
        display: none;
    }
    .container-header-links{
        width: 85%;
    }
}

@media screen and (max-width: 660px) {
    .container-header-links{
        display: block;
        width: 80%;
    }
    .separator{
        display: none;
    }
    .top-menu{
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .header{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #logo-and-domain{
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 1200px) {
    .content {
        width: 750px;
    }

    .sidebar {
        flex-grow: 1;
    }

    .sidebar * {
        text-align: center;
    }

    #content-title {
        margin-left: 25px;
        margin-right: 25px;
    }

    .container-content-sidebar {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 325px) {
    .container-header-links {
        display: block;
        width: 95%;
    }

    .header{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #logo-and-domain{
        height: 100%;
    }

    .img{
        width: 100%;
    }
}

@media screen and (max-width: 820px) {
    .content {
        width: 50%;
    }
}

@media screen and (max-width: 565px) {
    .content{
        width: 90%;
        margin-bottom: 10px !important;
    }
    .container-content-sidebar {
        flex-direction: column;
        align-items: center;
    }
    .sidebar{
        width: 90%;
        margin-top: 10px !important;
        margin-bottom: 20px;
        margin-left: unset;
        margin-right: unset;
    }
}