@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --primary:#F9D43E;
  --primary-hover:#e4c138;
  --white:#ECECEC;
  --black:#202020;
  --black-opacity:#202020b0;
  --black-hover:#131313;
  --light-black:#404040;
  --dark-gray:#a5a5a5;
  --gray:#DCDCDC;
  --error: #F21628;
  --error-hover: #d41525;
  --success: #22C52D;
}

/**
 * Permet de définir les propriétés flexbox d'un élément.
 */
/**
 * Permet d'ajouter une bordure rouge sur un élément.
 */
html {
  scroll-padding-block: 2.9rem;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--black);
  background-color: var(--white);
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

[v-cloak] {
  display: none;
}

a {
  text-decoration: none;
  color: var(--black);
}

h1 {
  font-size: 5rem;
  font-weight: 800;
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 7rem;
  }
}

h2 {
  font-size: 4rem;
  font-weight: 800;
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 5rem;
  }
}

h3 {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -0.2rem;
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 3rem;
  }
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-weight: 800;
}

p {
  font-size: 1.5rem;
  letter-spacing: -0.3px;
}
@media screen and (min-width: 1200px) {
  p {
    font-size: 2rem;
  }
}

.block {
  display: block;
}

.bold {
  font-weight: 800;
}

.semi-bold {
  font-weight: 700;
}

.btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background-color: var(--primary-hover);
}

.btn-up {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 997;
  background-color: var(--primary);
  box-shadow: 1px 1px 10px var(--black);
  border-radius: 0.5rem;
}
.btn-up a i {
  font-size: 3rem;
  color: var(--light-gray);
}

.btns-submit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.btns-submit input {
  margin-bottom: 0.5rem;
  width: 100%;
}
.btns-submit button {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .btns-submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .btns-submit input {
    margin: 0;
    margin-right: 0.5rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .btns-submit button {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.btn-plus {
  margin-top: 1rem;
}

::-webkit-scrollbar {
  background-color: var(--black);
}

::-webkit-scrollbar-button {
  background-color: var(--black);
}

::-webkit-scrollbar-thumb {
  background-color: var(--light-black);
}

.user-interaction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}
.user-interaction .info-txt {
  font-size: 1rem;
}
.user-interaction a {
  text-decoration: underline;
}

.error {
  background-color: var(--error);
  color: var(--white);
}

.success {
  background-color: var(--success);
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  width: 100%;
}
form .inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
form .inputs input {
  width: 100%;
}
form .inputs input:not(:last-child) {
  margin-bottom: 0.5rem;
}
form .inputs input[type=text], form .inputs input[type=email], form .inputs input[type=password], form .inputs select, form .inputs textarea, form .inputs .image-file {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 2px solid var(--black);
  background-color: transparent;
  color: var(--black);
  font-family: "Plus Jakarta Sans", sans-serif;
}
form .inputs input[type=text]::-moz-placeholder, form .inputs input[type=email]::-moz-placeholder, form .inputs input[type=password]::-moz-placeholder, form .inputs select::-moz-placeholder, form .inputs textarea::-moz-placeholder, form .inputs .image-file::-moz-placeholder {
  color: var(--light-black);
  font-size: 1rem;
}
form .inputs input[type=text]::placeholder, form .inputs input[type=email]::placeholder, form .inputs input[type=password]::placeholder, form .inputs select::placeholder, form .inputs textarea::placeholder, form .inputs .image-file::placeholder {
  color: var(--light-black);
  font-size: 1rem;
}
form .inputs input[type=text]:focus, form .inputs input[type=email]:focus, form .inputs input[type=password]:focus, form .inputs select:focus, form .inputs textarea:focus, form .inputs .image-file:focus {
  outline: none;
}
form .inputs input:-webkit-autofill,
form .inputs input:-webkit-autofill:hover,
form .inputs input:-webkit-autofill:focus,
form .inputs textarea:-webkit-autofill,
form .inputs textarea:-webkit-autofill:hover,
form .inputs textarea:-webkit-autofill:focus,
form .inputs select:-webkit-autofill,
form .inputs select:-webkit-autofill:hover,
form .inputs select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--light-black);
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  font-size: 1rem;
}
form .inputs .checkbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 200px;
  margin-bottom: 0.5rem;
}
form .inputs .checkbox .checkbox-label input {
  margin: 0;
}
form .inputs .checkbox .checkbox-label p {
  font-size: 0.9rem;
}
form .inputs .checkbox .checkbox-label:not(:last-child) {
  margin-bottom: 0.5rem;
}
form .inputs select, form .inputs textarea, form .inputs .image-file {
  width: 100%;
  margin-bottom: 0.5rem;
}
form .inputs option:checked {
  display: none;
}

input[type=submit], button[type=submit] {
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: var(--black);
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
input[type=submit]:hover, button[type=submit]:hover {
  background-color: var(--black-hover);
}

button[type=submit] {
  background-color: var(--error);
}
button[type=submit]:hover {
  background-color: var(--error-hover);
}

.add {
  margin-top: 1rem;
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 2rem;
  background-color: var(--primary);
  z-index: -100;
}

.marquee-content {
  display: flex;
  justify-content: space-around;
  flex-shrink: 0;
  min-width: 100%;
  gap: 2rem;
  z-index: 0;
}
@media screen and (min-width: 1200px) {
  .marquee-content {
    justify-content: center;
    min-width: 0;
  }
}
.marquee-content p {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 4rem;
  color: var(--black);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}
.scroll {
  animation: scroll 10s linear infinite;
}

.logo {
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  text-transform: uppercase;
  color: var(--primary);
}

.medias {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  width: 9rem;
}

.admin-panel-index {
  position: sticky;
  top: 0;
  padding: 1rem;
  background-color: var(--primary);
  z-index: 1000;
}
.admin-panel-index .admin-mobile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.admin-panel-index .admin-desktop {
  display: none;
}
@media screen and (min-width: 1200px) {
  .admin-panel-index .admin-mobile {
    display: none;
  }
  .admin-panel-index .admin-desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .admin-panel-index .admin-desktop a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-decoration: underline;
  }
  .admin-panel-index .admin-desktop a i {
    margin-right: 0.5rem;
    font-weight: 700;
  }
}

.error404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.error404 img {
  width: 300px;
  margin: 2rem 0;
}
.error404 p {
  margin-bottom: 2rem;
}

.main-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--black);
  padding: 1rem;
  z-index: 999;
}
.main-header div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.main-header div nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .main-header div nav {
    display: block;
  }
}
.main-header div nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.main-header div nav ul li a {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
}
.main-header div nav ul li a:hover {
  text-decoration: underline;
}
.main-header div nav ul li:not(:last-child) {
  margin-right: 3rem;
}
.main-header div .burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  color: var(--primary);
}
@media screen and (min-width: 1200px) {
  .main-header div .burger {
    display: none;
  }
}

.panel {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  height: 90vh;
  padding: 4rem 1rem;
  background-color: var(--white);
  z-index: 1000;
}
.panel ul li {
  font-size: 2rem;
  font-weight: 600;
}
.panel ul li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.panel .link-panel {
  margin-top: 1rem;
}

.link-panel {
  text-decoration: underline;
}
.link-panel address {
  margin-bottom: 0.8rem;
}
.link-panel address span:not(:last-child) {
  margin-bottom: 0.2rem;
}

.open {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (min-width: 1200px) {
  .panel {
    display: none;
  }
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-height: 80vh;
  text-align: center;
  background-color: var(--white);
}
.hero .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 460px;
  height: 100%;
}
.hero .txt p {
  margin: 1rem 0;
}
.hero img {
  display: none;
}
@media screen and (min-width: 1200px) {
  .hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: start;
  }
  .hero div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
  }
  .hero div .txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 650px;
  }
  .hero div img {
    display: block;
    height: 700px;
  }
}

.menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  background-color: var(--black);
}
.menu .category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  width: 100%;
}
.menu .category h3 {
  margin-bottom: 3rem;
}
.menu .category .items {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 2rem;
}
@media screen and (min-width: 680px) {
  .menu .category .items {
    grid-template-columns: repeat(2, 1fr);
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1200px) {
  .menu .category .items {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    width: 100%;
  }
}
.menu .category .items .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.menu .category .items .item img {
  width: 100%;
  height: 300px;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu .category .items .item .pills {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 1rem 0;
}
.menu .category .items .item .pills .tags {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.menu .category .items .item .pills p {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--black);
  background-color: var(--primary);
}
.menu .category .items .item .pills p:not(:last-of-type) {
  margin-right: 0.5rem;
}
@media screen and (min-width: 680px) {
  .menu .category .items .item h4 {
    margin-bottom: 1rem;
  }
}
.menu .category .items .item .description {
  display: none;
}
@media screen and (min-width: 680px) {
  .menu .category .items .item .description {
    display: block;
    max-width: 300px;
    font-size: 1rem;
  }
}

.category:nth-of-type(2n) {
  background-color: var(--white);
  color: var(--black);
}

.about {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  text-align: center;
  background-color: var(--primary);
}
.about div {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.about div .about-title {
  max-width: 500px;
}
.about div .about-title h2 {
  margin: 2rem 0 1rem 0;
}
@media screen and (min-width: 1024px) {
  .about div .about-title h2 {
    margin: 0;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .about div .about-title {
    max-width: 700px;
  }
}
.about div img {
  width: 300px;
  height: 400px;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .about div img {
    width: 450px;
    height: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .about div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: start;
  }
}
@media screen and (min-width: 1200px) {
  .about div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.history {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4rem 1rem;
}
.history div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.history div div {
  text-align: center;
}
.history div div img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.history div div p {
  margin-top: 1rem;
  max-width: 500px;
}
.history div div:not(:last-child) {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .history div div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: start;
  }
  .history div div p {
    margin-top: 0;
    margin-left: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .history div div img {
    width: 400px;
    height: 400px;
  }
}

.comments {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 80vh;
  padding: 6rem 1rem;
  text-align: center;
  color: var(--white);
  background-image: url("../img/groupe_bg.jpg");
  background-position: center;
  background-size: cover;
}
.comments .content {
  z-index: 1;
  max-width: 600px;
}
.comments .content .comment {
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .comments .content .comment {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.comments .content div {
  color: var(--primary);
  margin: 2rem 0;
}
.comments .content div i:not(:last-child) {
  margin-right: 0.3rem;
}
.comments .content .name {
  font-style: italic;
  font-size: 1rem;
}
.comments .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.5;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3rem 1rem;
  background-color: var(--black);
  color: var(--primary);
}
.contact div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}
.contact div h2 {
  margin-bottom: 1rem;
}
.contact div iframe {
  border-radius: 0.5rem;
  margin: 2rem 0;
}
@media screen and (min-width: 1200px) {
  .contact div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: start;
  }
}

.newsletter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3rem 1rem;
  text-align: center;
  background-color: var(--primary);
}
.newsletter div {
  width: 100%;
  max-width: 600px;
}
.newsletter header {
  margin-bottom: 1rem;
}
.newsletter header h2 {
  margin-bottom: 1rem;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
}
footer .top-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
footer .top-footer .nav-footer {
  margin-bottom: 1rem;
}
footer .top-footer .nav-footer div h5 {
  margin-bottom: 0.5rem;
}
footer .top-footer .nav-footer div nav ul li:not(:last-child) {
  margin-bottom: 0.3rem;
}
footer .top-footer .nav-footer div nav ul li a {
  text-decoration: underline;
}
footer .top-footer .nav-footer div div a {
  text-decoration: underline;
}
footer .top-footer .nav-footer div div address {
  margin-bottom: 0.5rem;
  max-width: 200px;
  line-height: 1.2rem;
}
footer .top-footer .nav-footer div:not(:last-child) {
  margin-bottom: 1rem;
}
footer .top-footer .links-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
footer .top-footer .links-footer .full-logo {
  width: 200px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  footer .top-footer .links-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin: 0;
  }
}
@media screen and (min-width: 600px) {
  footer .top-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: start;
    margin-bottom: 2rem;
  }
}
footer .bot-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
footer .bot-footer .copyright {
  font-size: 1.5rem;
  font-family: "Quantico", sans-serif;
  font-weight: 700;
  margin-right: 1rem;
}
footer .bot-footer a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  margin-top: 1rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
footer .bot-footer a:hover {
  background-color: var(--primary-hover);
}
@media screen and (min-width: 600px) {
  footer .bot-footer a {
    margin-top: 0;
  }
}
@media screen and (min-width: 600px) {
  footer .bot-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
  }
}

.login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--gray);
  height: 100vh;
  margin: 0;
  padding: 6rem 1rem;
}
.login div {
  width: 100%;
  max-width: 600px;
}
.login div header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.login div header .login-logo {
  width: 100%;
  margin-bottom: 1rem;
}
.login .retour {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.login .retour a {
  text-decoration: underline;
}

.admin-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--gray);
  padding: 1rem;
  z-index: 999;
}
.admin-header div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.admin-header div .logo {
  color: var(--black);
}
.admin-header div nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .admin-header div nav {
    display: block;
  }
}
.admin-header div nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.admin-header div nav ul li a {
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 600;
}
.admin-header div nav ul li a:hover {
  text-decoration: underline;
}
.admin-header div nav ul li:not(:last-child) {
  margin-right: 3rem;
}
.admin-header div .burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  color: var(--black);
}
@media screen and (min-width: 1200px) {
  .admin-header div .burger {
    display: none;
  }
}
.admin-header div .active {
  color: var(--dark-gray);
  pointer-events: none;
}
.admin-header div .active:hover {
  border-bottom: none;
}

.panel-admin {
  background-color: var(--dark-gray);
}
.panel-admin div a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-decoration: underline;
}
.panel-admin div a:not(:last-child) {
  margin-bottom: 1.5rem;
}
.panel-admin div a i {
  margin-right: 0.5rem;
}
.panel-admin .active {
  color: var(--gray);
  pointer-events: none;
}
.panel-admin .active:hover {
  border-bottom: none;
}

.admin-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
}
.admin-main .tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.admin-main .tab .add-mobile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 1rem 0;
}
@media screen and (min-width: 1200px) {
  .admin-main .tab .add-mobile {
    display: none;
  }
}
.admin-main .tab .list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 1rem;
  padding: 1rem;
  background-color: var(--gray);
  border-radius: 0.5rem;
}
.admin-main .tab .list .add-desktop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}
.admin-main .tab .list .add-desktop h2 {
  font-size: 2rem;
  text-align: center;
}
.admin-main .tab .list .add-desktop a {
  display: none;
}
@media screen and (min-width: 1200px) {
  .admin-main .tab .list .add-desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .admin-main .tab .list .add-desktop a {
    display: block;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.admin-main .tab .list .list-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--black);
  padding: 1rem 0;
  transform: scale(0.98);
  transition: all 0.2s ease-in-out;
}
.admin-main .tab .list .list-item article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.admin-main .tab .list .list-item article .btn-edit {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
  text-decoration: underline;
}
.admin-main .tab .list .list-item article .btn-edit p {
  display: none;
}
@media screen and (min-width: 1200px) {
  .admin-main .tab .list .list-item article .btn-edit p {
    display: block;
    margin-right: 0.5rem;
  }
}
.admin-main .tab .list .list-item p {
  font-size: 1.2rem;
}
.admin-main .tab .list .list-item .edit {
  font-size: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .admin-main .tab .list .list-item .edit {
    font-size: 1rem;
  }
}

.admin-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 100vh;
  background-color: var(--black-opacity);
  z-index: 998;
}
.admin-form .content-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  padding: 1rem;
  width: calc(100% - 2rem);
  max-width: 600px;
  border-radius: 0.5rem;
  background-color: var(--white);
}
.admin-form .content-form header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.admin-form .content-form header h3 {
  font-size: 1.5rem;
  text-align: start;
}
.admin-form .content-form header a {
  font-size: 2rem;
}
.admin-form .content-form div {
  width: 100%;
}/*# sourceMappingURL=style.css.map */