@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
#burgerButton {
  display: none;
}

::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}

::-webkit-scrollbar-track-piece {
  background-color: white;
}

::-webkit-scrollbar-thumb:vertical {
  height: 30px;
  background-color: #939393;
}

footer {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  clear: both;
  padding: 3rem;
}
footer div {
  width: 90%;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
footer div hr {
  width: 100%;
  height: 6px;
  border-radius: 7px;
  background: #000000;
  border: none;
}

.error_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-around;
  padding: 3rem;
  gap: 6rem;
  height: 100%;
  margin-top: 5rem;
  align-items: center;
}
.error_container h2 {
  font-size: 60px;
}
.error_container img {
  width: 15%;
  animation-iteration-count: infinite;
  animation-name: error_loading;
  animation-duration: 3s;
}
.error_container p {
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
}
.error_container a {
  font-weight: 400;
  font-size: 25px;
  padding: 0.4rem;
  background: #FFFB96;
  text-decoration: none;
  border-radius: 3px;
  color: black;
  transition: 0.2s;
}
.error_container a:hover {
  font-size: 26px;
  background: #dad780;
}

@keyframes error_loading {
  0% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.connect_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.connect_container h5 {
  font-size: 60px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.connect_container h5:after {
  content: "";
  background: #FFFB96;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  bottom: -0.7rem;
  position: absolute;
  width: 100%;
  height: 7px;
}

.warning {
  position: absolute;
  opacity: 1;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  bottom: 0;
  background: #dad780;
}

.connect_form {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.connect_form form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  width: 60%;
}
.connect_form form div {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.connect_form form label {
  font-size: 19px;
  font-weight: 600;
}
.connect_form form input {
  margin-top: 0.8rem;
  width: 100%;
  border-radius: 7px;
  border: 1px solid black;
  padding: 0.8rem;
  font-size: 18px;
}
.connect_form form textarea {
  margin-top: 0.8rem;
  width: 100%;
  border-radius: 7px;
  border: 1px solid black;
  padding: 0.8rem;
  resize: none;
  font-size: 18px;
}
.connect_form form a {
  text-align: center;
  font-size: 18px !important;
  background: #FFFB96 !important;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: none;
}
.connect_form ul {
  list-style: none;
  padding: 1rem;
  width: 100%;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.connect_form ul li a {
  text-align: center;
  font-size: 18px !important;
  background: #FFFB96 !important;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: none;
}

.burgerMenu {
  width: 100%;
  padding: 1rem;
}
.burgerMenu #burgerButton {
  font-size: 45px;
  z-index: 999;
  position: fixed;
  color: #4a4646;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.25);
  left: 3rem;
  top: 2rem;
}
.burgerMenu .burgerList {
  transition: all 0.7s ease-in;
  display: none;
  width: 100%;
  top: 0;
  position: fixed;
  background: #fff;
  box-shadow: 0px 10px 22px 6px rgba(0, 0, 0, 0.25);
  left: 0;
  height: 20%;
  z-index: 99;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.burgerMenu .burgerList #closeBurger {
  padding: 1rem;
  font-size: 30px;
}
.burgerMenu .burgerList ul {
  padding: 2rem;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
  width: 100%;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.burgerMenu .burgerList ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  transition: 0.4s;
  padding: 1rem;
  font-size: 15px;
}
.burgerMenu .burgerList ul li a:before {
  background: #FFFB96;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease-in-out;
  z-index: -1;
}
.burgerMenu .burgerList ul li a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  font-family: "Ubuntu", sans-serif;
}

#validateArea, .listeArticle .listeFooter div button, .listeArticle .listeFooter div a, .createForm form a, #send_message, .chat_box .chat_footer a, .header_article ul li a, .news .slide_container .slider a, .news a, .news button, .box_container .box_infos .box_footer a, .connect_form form a, .connect_form ul li a {
  font-weight: 400;
  font-size: 25px;
  padding: 0.4rem;
  background: #FFFB96;
  text-decoration: none;
  border-radius: 3px;
  color: black;
  transition: 0.2s ease-in;
}
#validateArea:hover, .listeArticle .listeFooter div button:hover, .listeArticle .listeFooter div a:hover, .createForm form a:hover, #send_message:hover, .chat_box .chat_footer a:hover, .header_article ul li a:hover, .news .slide_container .slider a:hover, .news a:hover, .news button:hover, .box_container .box_infos .box_footer a:hover, .connect_form form a:hover, .connect_form ul li a:hover {
  font-size: 27px;
}

.chat_box .chat_footer, .chat_box .chat_content, .header_article ul, .box_container .box_infos .box_footer, header nav ul div, header nav ul, .connect_form ul {
  display: flex;
  flex-direction: row;
}

.chat_box .chat_content .chat_info, .chat_box, #chat_section, .header_article, .news .slide_container .slider, .news, .box_container .box_infos, .article_container {
  display: flex;
  flex-direction: column;
}

header {
  width: 100%;
  background: #fff;
  box-shadow: 0px 10px 22px 6px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  z-index: 99;
  animation-name: navBarFadeIn;
  animation-duration: 1.5s;
}
header nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav ul {
  list-style: none;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
header nav ul div {
  gap: 1rem;
}
header nav ul h1 {
  font-size: 45px;
}
header nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  transition: 0.4s;
  padding: 0.3rem;
  font-size: 24px;
}
header nav ul li a:before {
  background: #FFFB96;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease-in-out;
  z-index: -1;
}
header nav ul li a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

section {
  padding: 2rem;
  margin-top: 4rem;
  z-index: 1;
}

.article_container {
  gap: 3rem;
  animation-name: titleFadein;
  animation-duration: 1s;
}

.box_container {
  margin-top: 5rem;
  display: flex;
  width: 100%;
  justify-content: space-around;
  gap: 1rem;
}
.box_container:nth-child(even) {
  flex-direction: row-reverse;
}
.box_container .box_infos {
  width: 40%;
  gap: 1rem;
}
.box_container .box_infos h5 {
  font-size: 45px;
  font-weight: 500;
}
.box_container .box_infos p {
  font-weight: 400;
  word-wrap: break-word;
  font-size: 25px;
}
.box_container .box_infos .box_footer {
  justify-content: space-between;
  width: 100%;
  align-items: baseline;
}
.box_container .box_infos .box_footer span {
  color: #939393;
  font-weight: 400;
  font-size: 15px;
}
.box_container .box_infos .box_footer a {
  font-size: 18px;
}
.box_container img {
  width: 40%;
  border-radius: 40px;
}

.news {
  gap: 2rem;
  align-items: center;
  width: 100%;
  padding: 2rem;
  height: 100%;
}
.news button {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  bottom: -1rem;
  text-align: center;
  transition: 1s;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  background: #bcffad;
}
.news button:hover {
  opacity: 0.4;
}
.news span {
  text-decoration: underline;
}
.news h5 {
  font-size: 45px;
  font-weight: 500;
}
.news p {
  font-size: 24px;
  padding: 1rem;
  color: #000;
  font-weight: 500;
}
.news .slide_container {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  border: 1px solid #f1f1f1;
  gap: 1rem;
  justify-content: space-around;
}
.news .slide_container .slider {
  width: 30%;
  gap: 2rem;
  position: relative;
  border-radius: 4px;
  display: flex;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.news .slide_container .slider img {
  background-size: cover;
  object-fit: cover;
  flex-shrink: 0;
  height: 100%;
  border-radius: 8px;
}
.news .slide_container .slider a {
  position: absolute;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  bottom: -1rem;
  text-align: center;
  transition: 3s ease-in-out;
  border-radius: 3px;
}

#login {
  width: 50%;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
#login:hover {
  opacity: 0.5;
}

.header_article {
  gap: 1rem;
  padding: 4rem;
  width: 100%;
  height: 100vh;
}
.header_article h5 {
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 600;
}
.header_article p {
  font-weight: 400;
  font-size: 25px;
}
.header_article span {
  color: #939393;
  font-weight: 400;
  font-size: 20px;
}
.header_article img {
  background-size: cover;
  object-fit: cover;
  height: 50%;
  width: 100%;
  border-radius: 8px;
}
.header_article ul {
  list-style: none;
  gap: 1rem;
}
#chat_section {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 6rem;
}

.chat_container {
  border: 2px solid black;
  width: 100%;
  border-radius: 7px;
}

.chat_box {
  gap: 1rem;
}
.chat_box hr {
  border: 1px solid #D9D9D9;
}
.chat_box .chat_content {
  gap: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.chat_box .chat_content .chat_info {
  align-items: center;
  height: 100%;
  justify-content: space-between;
  gap: 1rem;
}
.chat_box .chat_content .chat_info p {
  font-weight: 600;
  font-size: 20px;
}
.chat_box .chat_content .chat_info img {
  width: 50%;
}
.chat_box .chat_content .chat_text p {
  font-size: 18px;
  font-weight: 360;
  color: #939393;
}
.chat_box .chat_footer {
  width: 95%;
  justify-content: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.chat_box .chat_footer a {
  background: #77778a;
  font-size: 15px;
  color: #fff;
}
.chat_box .chat_footer a:hover {
  background: lightcoral;
  font-size: 17px;
}

form {
  width: 100%;
  position: relative;
}

#message_input {
  border: 2px solid black;
  width: 100%;
  border-radius: 7px;
  padding: 1.5rem;
  margin-top: 3rem;
  font-size: 20px;
  position: relative;
}
#message_input::placeholder {
  font-size: 20px;
}

#send_message {
  cursor: pointer;
  position: absolute;
  bottom: -1rem;
  right: 0;
  border: none;
}

.empty_chat {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  font-size: 50px;
}

.openSectionArticle {
  display: none;
}

.createContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.createContainer h5 {
  font-size: 60px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.createContainer h5:after {
  content: "";
  background: #FFFB96;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  bottom: -0.7rem;
  position: absolute;
  width: 100%;
  height: 7px;
}

.createForm {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.createForm form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  width: 60%;
}
.createForm form div {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.createForm form label {
  font-size: 19px;
  font-weight: 600;
}
.createForm form input {
  margin-top: 0.8rem;
  width: 100%;
  border-radius: 7px;
  border: 1px solid black;
  padding: 0.8rem;
  font-size: 18px;
}
.createForm form textarea {
  margin-top: 0.8rem;
  width: 100%;
  border-radius: 7px;
  border: 1px solid black;
  padding: 0.8rem;
  resize: none;
  font-size: 18px;
}
.createForm form a {
  text-align: center;
  font-size: 18px !important;
  background: #FFFB96 !important;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: none;
}

.listeArticle {
  width: 100%;
  display: flex;
  border: 2px solid #939393;
  flex-direction: column;
  padding: 1rem;
}
.listeArticle h4 {
  font-weight: 400;
  text-align: center;
  padding: 1rem;
  font-size: 20px;
  text-decoration: none;
}
.listeArticle span {
  font-weight: 500;
}
.listeArticle .listeFooter {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.listeArticle .listeFooter div {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.listeArticle .listeFooter div a {
  background: #77778a;
  font-size: 15px;
  color: #fff;
  margin-left: 1rem;
}
.listeArticle .listeFooter div a:hover {
  background: lightcoral;
  font-size: 17px;
}
.listeArticle .listeFooter div button {
  background: #77778a;
  font-size: 15px;
  cursor: pointer;
  border: none;
  color: #fff;
  margin-left: 1rem;
}
.listeArticle .listeFooter div button:hover {
  background: lightcoral;
  font-size: 17px;
}
.listeArticle .listeContent {
  position: relative;
}
.listeArticle .listeContent textarea {
  margin-top: 1rem;
  resize: none;
  width: 100%;
  padding: 1rem;
  font-size: 17px;
}
.listeArticle .listeContent textarea #displayArea form {
  position: relative;
  width: 100% !important;
}

#validateArea {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15%;
}

@media screen and (max-width: 1024px) {
  #burgerButton {
    display: flex;
  }
  .listeArticle .listeFooter {
    flex-direction: column;
  }
  .box_container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .box_container .box_infos {
    width: 100%;
  }
  .box_container img {
    width: 100%;
  }
  .box_container:nth-child(even) {
    flex-direction: column;
    display: flex;
  }
  .header_article h5 {
    font-size: 35px;
  }
  .header_article img {
    background-size: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 8px;
  }
  #chat_section {
    margin-top: 33rem;
  }
  .news h5 {
    font-size: 35px;
  }
  .news .slide_container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .news .slide_container div {
    width: 90%;
  }
  .createForm form {
    width: 100%;
  }
  .news p {
    font-size: 14px;
  }
  #login {
    width: 100%;
  }
  header {
    display: none;
  }
  .connect_container h5 {
    font-size: 35px;
  }
  .connect_form {
    flex-wrap: wrap;
  }
  .connect_form form {
    width: 100%;
  }
  .connect_form ul {
    width: 100%;
    gap: 1rem;
    flex-wrap: inherit;
  }
  .error_container h2 {
    font-size: 50px;
  }
  .error_container img {
    width: 50%;
  }
  .empty_chat {
    font-size: 25px;
  }
  .header_article {
    padding: 0;
  }
  #chat_section {
    padding: 2rem;
  }
  .chat_box .chat_content .chat_info {
    width: 40%;
  }
  .chat_box .chat_content {
    gap: 2rem;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}
@keyframes feedback {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes titleFadein {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes navBarFadeIn {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

/*# sourceMappingURL=main.css.map */
