p {
  color: #0C1821;
  font-family: "UbuntuMono-Regular";
}

h1, h2, h3 {
  color: #0C1821;
  font-family: "UbuntuMono-Bold";
}

h4 {
  color: #0C1821;
  font-family: "UbuntuMono-Regular";
  font-size: 24px;
}

strong {
  font-size: 20px;
}

label {
  font-family: "UbuntuMono-Regular";
  font-weight: bold;
  color: #0C1821;
}

.btn {
  color: #0C1821;
  font-family: "UbuntuMono-Regular";
  padding: 12px 9px;
  border: 0.2vw solid #94DCBC;
  background-color: #94DCBC;
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn:hover {
  color: #0C1821;
}
.btn a {
  display: inline-block;
  text-decoration: none;
  color: #0C1821;
}

.header {
  width: 100%;
}
.header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.header__menuList {
  border: 0px;
  position: fixed;
  background-color: #CCC9DC;
  height: 100vh;
  left: -100%;
  bottom: 0;
  top: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 310;
  width: 20rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__menuList nav {
  width: 100%;
}
.header__menuList nav ul {
  text-align: center;
  padding: 0px;
  list-style: none;
}
.header__menuList nav ul li a {
  color: #0C1821;
  list-style: none;
  line-height: 6vh;
  text-decoration: none;
}
.header__menuList nav p {
  text-align: center;
}
.header__btn {
  position: absolute;
  display: block;
  z-index: 311;
  background: 0;
  border: 0;
  height: 40px;
  width: 40px;
  -webkit-transform: translateY(70%);
  -moz-transform: translateY(70%);
  -ms-transform: translateY(70%);
  -o-transform: translateY(70%);
  transform: translateY(70%);
  padding: 5px;
}
.header__btn span {
  width: 100%;
  height: 2px;
  background: #0C1821;
  margin: 5px 0;
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* Active components */
body.active .header__menuList {
  border: 0px;
  left: 0%;
}
body.active .header__btn {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
body.active .header__btn:hover {
  -webkit-transform: rotate(90deg) translateX(70%);
  -moz-transform: rotate(90deg) translateX(70%);
  -ms-transform: rotate(90deg) translateX(70%);
  -o-transform: rotate(90deg) translateX(70%);
  transform: rotate(90deg) translateX(70%);
}
body.active .header__btn .first {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  -moz-transform: rotate(45deg) translate(5px, 5px);
  -ms-transform: rotate(45deg) translate(5px, 5px);
  -o-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}
body.active .header__btn .second {
  background-color: transparent;
}
body.active .header__btn .third {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
  -moz-transform: rotate(-45deg) translate(5px, -5px);
  -ms-transform: rotate(-45deg) translate(5px, -5px);
  -o-transform: rotate(-45deg) translate(5px, -5px);
  transform: rotate(-45deg) translate(5px, -5px);
}

@media screen and (min-width: 960px) {
  .mobile {
    display: none;
  }

  .header__menu {
    -webkit-box-pack: right;
    -webkit-justify-content: right;
    -moz-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
  }

  .menu__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 7vh;
    margin-left: 5%;
  }
  .menu__list li {
    list-style: none;
    text-decoration: none;
    margin-right: 4vw;
    border: 0.1vw solid #0C1821;
    padding: 1% 10%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  .menu__list li:nth-of-type(2) {
    border: 0.1vw solid #E94F37;
  }
  .menu__list li:nth-of-type(2) a {
    color: #E94F37;
  }
  .menu__list a {
    color: #0C1821;
    font-family: "UbuntuMono-Regular";
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    text-decoration: none;
  }
  .menu__list a:hover {
    text-decoration: none;
    color: #E94F37;
  }
  .menu__list a:hover li {
    border: 0.1vw solid #E94F37;
  }

  .legalhead li {
    list-style: none;
    text-decoration: none;
    margin-right: 4vw;
    border: 0.1vw solid #0C1821;
    padding: 1% 10%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }
  .legalhead li:nth-of-type(2) {
    border: 0.1vw solid #0C1821;
  }
  .legalhead li:nth-of-type(2) a {
    color: #0C1821;
  }
  .legalhead li:nth-of-type(3) {
    border: 0.1vw solid #E94F37 !important;
  }
  .legalhead li:nth-of-type(3) a {
    color: #E94F37 !important;
  }
}
@media screen and (max-width: 960px) {
  .bureau {
    display: none;
  }

  .header__menu {
    height: 15vh;
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -moz-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
  }

  .logo {
    width: 100%;
  }

  .userIcone {
    margin-top: 5%;
  }
}
@media screen and (min-width: 960px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(3);
    grid-auto-columns: 30%;
    background-color: #CCC9DC;
    padding-top: 4%;
    -webkit-column-gap: 5%;
    -moz-column-gap: 5%;
    column-gap: 5%;
  }

  .footer_col1 {
    grid-column: 1;
  }

  .footer_col2 {
    grid-column: 2;
  }

  .footer_col3 {
    grid-column: 3;
  }

  footer {
    margin-top: 7%;
  }
  footer p {
    text-align: center;
    font-size: 18px;
  }
  footer .mentions {
    text-align: center;
    padding-bottom: 2%;
    padding-top: 2%;
    margin: 0;
  }
  footer .mentions a {
    text-decoration: none;
    color: #E94F37;
    font-weight: bold;
  }
  footer .mentions a:hover {
    text-decoration: underline;
  }
  footer .btn {
    width: 40%;
    margin-left: 30%;
    padding-top: 7px;
  }

  .logoFoot {
    width: 70%;
    margin-left: 17.5%;
  }

  .res {
    width: 40%;
    margin-left: 30%;
  }
}
@media screen and (max-width: 960px) {
  footer {
    background-color: #CCC9DC;
    margin-bottom: 10%;
  }
  footer p {
    text-align: center;
    font-weight: bold;
  }
  footer .mentions {
    text-align: center;
    padding-bottom: 2%;
    padding-top: 2%;
    margin-top: 10vh;
    width: 80%;
    margin-left: 5%;
  }
  footer .mentions a {
    text-decoration: none;
    color: #E94F37;
    font-weight: bold;
  }
  footer .mentions a:hover {
    text-decoration: underline;
  }
  footer .btn {
    width: 40%;
    margin-left: 30%;
  }

  .logoFootMobile {
    margin-bottom: 10%;
    padding-top: 10%;
    border-top: solid #0C1821 0.2vw;
  }
  .logoFootMobile .logoFoot {
    width: 65%;
    margin-left: 17.5%;
  }

  .res {
    width: 65%;
    margin-left: 17.5%;
  }

  .footer_col1, .footer_col3 {
    margin-bottom: 10%;
  }
}
.filter {
  margin-bottom: 3rem;
}
.filter h2 {
  font-family: "Playball";
  text-align: center;
  margin: 1rem 0 2rem 0;
  color: #323232;
}
.filter h2::after {
  content: " ";
  position: absolute;
  height: 2px;
  margin: auto;
  width: 50px;
  text-align: center;
  background-color: #323232;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-1rem);
  -moz-transform: translateY(-1rem);
  -ms-transform: translateY(-1rem);
  -o-transform: translateY(-1rem);
  transform: translateY(-1rem);
}
.filter ul {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.filter ul li {
  list-style: none;
  cursor: pointer;
  margin: 5px;
  padding: 15px;
  border: 2px solid #323232;
  color: #323232;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.filter ul li.actif {
  margin: 5px;
  padding: 15px;
  border: 2px solid #c89446;
  color: #c89446;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 960px) {
  .scrollInvitation {
    margin-top: 20%;
    font-size: 1.2vw;
    text-align: center;
  }

  .mainTitre {
    text-align: center;
  }
  .mainTitre svg {
    fill: #0C1821;
  }

  .galerywork {
    margin-top: 25%;
  }
  .galerywork h2 {
    text-align: center;
    font-size: 2vw;
  }
  .galerywork p {
    text-align: center;
    font-size: 1.2vw;
  }

  .more {
    text-align: center;
    font-size: 2vw;
    font-family: "UbuntuMono-Regular";
  }

  .etoiletitre {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 5%;
    margin-bottom: -10%;
  }
  .etoiletitre p {
    width: 20%;
    text-align: right;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -webkit-justify-content: right;
    -moz-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
  }
  .etoiletitre p svg {
    fill: #E94F37;
  }

  #galery {
    margin-bottom: 10%;
    margin-top: 10%;
  }
  #galery a img {
    margin-bottom: 15%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 960px) {
  .scrollInvitation {
    margin-top: 25vh;
    font-size: 4vw;
    text-align: center;
  }

  .titre {
    width: 100%;
    margin-top: 10vh;
  }

  .mainTitre {
    text-align: center;
  }
  .mainTitre svg {
    fill: #0C1821;
    width: 100%;
    height: auto;
  }

  .galerywork {
    margin-top: 10vh;
  }
  .galerywork h2 {
    text-align: center;
    font-size: 5vw;
  }
  .galerywork p {
    text-align: center;
    font-size: 4vw;
  }

  .more {
    text-align: center;
    font-size: 4.5vw;
    font-family: "UbuntuMono-Regular";
  }

  .etoiletitre {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 20vh;
    margin-bottom: -10%;
  }
  .etoiletitre p {
    width: 40%;
    text-align: right;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -webkit-justify-content: right;
    -moz-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
  }
  .etoiletitre p svg {
    fill: #E94F37;
  }

  .containHome {
    width: 90% !important;
  }

  #galery {
    margin-bottom: 15%;
    margin-top: 15%;
  }
  #galery a img {
    margin-bottom: 15%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (min-width: 960px) {
  .ArchiveArticles h1 {
    width: 45%;
  }
  .ArchiveArticles p {
    margin-bottom: 5%;
  }
  .ArchiveArticles h2 {
    text-shadow: 2px 2px #94DCBC;
  }

  .CardArticle {
    border: #0C1821 solid 0.2px;
    padding: 5% 2%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin-right: 3%;
    margin-top: 40px;
    background: -webkit-radial-gradient(circle, rgba(198, 144, 219, 0.5) 0%, white 75%);
    background: -moz-radial-gradient(circle, rgba(198, 144, 219, 0.5) 0%, white 75%);
    background: -o-radial-gradient(circle, rgba(198, 144, 219, 0.5) 0%, white 75%);
    background: radial-gradient(circle, rgba(198, 144, 219, 0.5) 0%, white 75%);
  }

  .btnPlus {
    margin-top: 5%;
    width: 15%;
    margin-left: 42.5%;
    margin-bottom: 15%;
  }

  .post-content {
    margin-top: 10%;
    margin-bottom: 20%;
  }
}
@media screen and (max-width: 960px) {
  .ArchiveArticles p {
    margin-bottom: 5%;
  }
  .ArchiveArticles h2 {
    text-shadow: 2px 2px #94DCBC;
  }

  .CardArticle {
    border: #0C1821 solid 0.2px;
    padding: 10% 7%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin-right: 15px;
    margin-left: 15px;
    margin-top: 40px;
    background: -webkit-radial-gradient(circle, rgba(198, 144, 219, 0.75) 0%, white 75%);
    background: -moz-radial-gradient(circle, rgba(198, 144, 219, 0.75) 0%, white 75%);
    background: -o-radial-gradient(circle, rgba(198, 144, 219, 0.75) 0%, white 75%);
    background: radial-gradient(circle, rgba(198, 144, 219, 0.75) 0%, white 75%);
  }

  .btnPlus {
    margin-top: 15%;
    width: 40%;
    margin-left: 30%;
    margin-bottom: 15%;
  }

  .post-content {
    margin-top: 10%;
    margin-bottom: 20%;
    margin-left: 15px;
    margin-right: 15px;
  }

  .colArticleGauche img {
    width: 75%;
    height: inherit;
    margin-left: 12.5%;
    margin-top: 10%;
    margin-bottom: 15%;
  }
}
@media screen and (min-width: 960px) {
  #mentions {
    margin-left: 5%;
    margin-right: 10%;
  }
  #mentions h1 {
    font-size: 4vw;
    margin-top: 8%;
    margin-bottom: 5%;
    text-align: center;
  }
  #mentions h2 {
    color: #0C1821;
    margin-bottom: 4%;
  }
  #mentions a {
    text-decoration: none;
    color: #0C1821;
    font-weight: bold;
  }
  #mentions a:hover {
    font-style: italic;
  }
  #mentions p {
    font-size: 1vw;
  }
}
@media screen and (max-width: 960px) {
  #mentions {
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 5vh;
  }
  #mentions h1 {
    font-size: 9vw;
    margin-top: 20vh;
    margin-bottom: 10vh;
    text-align: center;
  }
  #mentions h2 {
    color: #0C1821;
    margin-bottom: 5vh;
    margin-top: 5vh;
  }
  #mentions a {
    text-decoration: none;
    color: #0C1821;
    font-weight: bold;
  }
  #mentions a:hover {
    font-style: italic;
  }
}
@font-face {
  font-family: "UbuntuMono-Bold";
  src: url("./components/fonts/UbuntuMono-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "UbuntuMono-Regular";
  src: url("./components/fonts/UbuntuMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #CCC9DC;
}

footer {
  background-color: #CCC9DC;
}

@media screen and (max-width: 960px) {
  .desktop {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .mobile {
    display: none;
  }
}