html, body {
  width: 100vw;
  max-width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  background-color: #333;
  color: #edeeef;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
}
html ::-moz-selection, body ::-moz-selection {
  color: black;
  background: #e0833c;
}
html ::selection, body ::selection {
  color: black;
  background: #e0833c;
}
html p, body p {
  letter-spacing: 1px;
}

.d-flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: start;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.align-self-center {
  align-self: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/*********************HEADER***********************/
header {
  height: 100px;
  box-shadow: 0px 0px 20px #111;
  width: 100vw;
  max-width: 100%;
  position: fixed;
  top: 0;
  letter-spacing: 2px;
  z-index: 1;
}
header .navigation {
  background-color: #333;
  height: 100px;
  padding-inline: 25px;
  justify-content: space-between;
}
header .navigation .d-desktop {
  display: none;
}
header .navigation #dropdown_menu {
  display: block;
}
header .navigation a {
  font-weight: 400;
  color: #edeeef;
  text-decoration: none;
  text-align: center;
  line-height: 100px;
  height: 100%;
  width: 150px;
}
header .navigation a:hover {
  background-color: #edeeef;
  color: #333;
}
header .navigation a .icone {
  margin: auto;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .navigation a .icone2 {
  margin: auto;
  height: 30%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .navigation .icone_social:hover .icone2 {
  mix-blend-mode: difference;
}
header .navigation .telephone {
  width: 300px;
}
header .navigation #menu_burger:hover .menu_bar,
header .navigation #menu_burger:focus .menu_bar,
header .navigation #menu_burger:active .menu_bar,
header .navigation .open_menu .menu_bar {
  background-color: #333;
}
header .navigation .menu_container {
  cursor: pointer;
  position: relative;
  width: 120px;
  flex-shrink: 0;
}
header .navigation .menu_container:hover, header .navigation .menu_container:focus, header .navigation .menu_container:active {
  background-color: #edeeef;
}
header .navigation .menu_container:hover #menu_burger div.menu_bar, header .navigation .menu_container:focus #menu_burger div.menu_bar, header .navigation .menu_container:active #menu_burger div.menu_bar {
  background-color: #333 !important;
}
header .navigation .menu_container #menu_burger {
  position: relative;
  top: 50%;
  width: 100%;
  background-color: #333;
}
header .navigation .menu_container #menu_burger:hover {
  background-color: #edeeef;
}
header .navigation .menu_container .menu_bar {
  background-color: #edeeef;
  height: 4px;
  width: 40px;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
}
header .navigation .menu_container .bar_1 {
  animation-delay: 0.1s;
  margin-bottom: 4px;
  top: 0px;
  transition: all 0.3s;
}
header .navigation .menu_container .bar_2 {
  animation-delay: 0.1s;
  top: 50%;
  transition: all 0.3s;
}
header .navigation .open_menu .bar_1 {
  left: 50%;
  margin-bottom: -4px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .navigation .open_menu .bar_2 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .navigation .close_menu_content {
  display: none;
}
header .navigation .dropdown-content {
  background-color: #333;
  position: relative;
  top: 96px;
  left: -79.14px;
  width: 200px;
  box-shadow: 3px 3px 8px rgba(17, 17, 17, 0.699);
  padding-block: 20px;
}
header .navigation .dropdown-content a {
  display: block;
  line-height: normal;
  height: auto;
  text-align: right;
  max-width: 200px;
  width: auto;
  padding-block: 18px;
  padding-inline: 25px;
}
header .navigation .dropdown-content .menu_socials {
  padding-inline: 15px;
  text-align: center;
}
header .navigation .dropdown-content .menu_socials .icone_social {
  display: inline-block;
}

/*********************INDEX************************/
#index {
  padding: 0;
  background: rgb(26, 26, 26);
  color: #edeeef;
  opacity: 0;
  animation: fadein 1s linear forwards;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#index #section1 {
  position: relative;
  height: 72vh;
  width: 100vw;
  max-width: 100%;
  background: url("../images/nik-owens-40OJLYVWeeM-unsplash.jpg") top no-repeat;
  background-size: cover;
  overflow: hidden;
}
#index #section1 .circle {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6803515351) 0%, rgba(0, 0, 0, 0) 60%);
  border-radius: 100%;
  transform: translate(-50%, -50%) scale(5);
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  min-height: 30vh;
  max-height: 50vh;
  width: 125px;
  max-width: 50%;
  filter: blur(15px);
}
#index #section1 .logo {
  transform: translate(-50%, -50%);
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  min-height: 30vh;
  max-height: 50vh;
  width: auto;
}
#index #section2 {
  background: rgb(26, 26, 26);
  margin: 0 0 0px 0;
  padding-block: 80px;
  width: 100vw;
  max-width: 100%;
}
#index #section2 .about_equipe {
  max-width: 800px;
  padding-inline: 30px;
  padding-bottom: 80px;
}
#index #section2 .about_equipe h1 {
  margin-top: 0px;
  color: #e0833c;
  text-align: center;
  font-size: 38px;
}
#index #section2 .about_equipe p {
  line-height: 2.5rem;
  text-align: center;
  font-size: 24px;
}
#index #section2 .cta_menu {
  margin-top: 40px;
}
#index #section2 .cta_menu .cta_text {
  display: none;
}
#index #section2 .cta_menu a {
  display: block;
  width: 70vw;
  font-weight: 700;
  color: #edeeef;
  text-decoration: none;
  padding: 15px;
  background-color: #e0833c;
  border-radius: 10px;
  text-align: center;
  box-shadow: 3px 3px 8px rgba(17, 17, 17, 0.699);
  letter-spacing: 2px;
  font-size: 24px;
}
#index #section2 .cta_menu a:hover {
  background-color: #edeeef;
  color: #333;
}

/*********************FOOTER************************/
footer {
  padding: 120px 0px 30px;
}
footer .footer_info {
  flex-direction: column;
  gap: 50px;
  align-items: center;
  text-align: center;
}
footer .footer_info .footer_address img {
  margin-top: 10px;
  width: 200px;
}
footer .footer_info .footer_address p {
  margin-top: 30px;
  line-height: 1.5rem;
  letter-spacing: 2px;
}
footer .footer_info .footer_links {
  flex-shrink: 0;
  margin: 0;
  padding-inline-start: 0px;
}
footer .footer_info .footer_links li {
  list-style: none;
  line-height: 3rem;
}
footer .footer_info .footer_links li a {
  text-decoration: none;
  color: #edeeef;
}
footer .footer_info .footer_links li a:hover {
  color: #e0833c;
}
footer .footer_info .footer_links .footer_socials {
  margin-top: 20px;
  text-align: center;
}
footer .footer_info .footer_links .icone2 {
  padding: 8px;
  margin-top: 16px;
  margin-inline: 10px;
  width: 30px;
  border: 1px solid rgba(237, 238, 239, 0.2470588235);
  border-radius: 4px;
}
footer .footer_info .footer_links .icone2:hover {
  background-color: #e0833c;
}
footer .copy {
  margin-top: 100px;
}
footer .copy h5 {
  font-weight: 100;
}

/***********************MENU**********************/
#menu {
  background-color: #edeeef;
  color: #333;
  padding: 160px 0 60px;
}
#menu .section_menu {
  width: 100%;
  margin: 40px auto 0 auto;
  opacity: 0;
  animation: fadein 1s linear forwards;
}
#menu .section_menu h3 {
  margin: 0 0 20px 0;
  padding: 0;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#menu .section_menu .titre {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
#menu .section_menu .groupe_items {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2%;
}
#menu .section_menu .groupe_items .items {
  margin-block: 30px;
}
#menu .section_menu .groupe_items .items div h3 {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
#menu .section_menu .groupe_items .items div h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
#menu .section_menu .groupe_items .items p {
  font-size: 15px;
}
#menu .section_menu_midi {
  border: solid 1px #111;
  border-radius: 10px;
}
#menu .section_menu_midi .menu_midi {
  margin-block: 50px;
}

/**********************ADRESSE*******************/
.section_adresse {
  width: 100%;
  opacity: 0;
  animation: fadein 1s linear forwards;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section_adresse div {
  margin: 150px auto 0;
}
.section_adresse div h2 {
  color: #e0833c;
  width: auto;
  margin-bottom: 0px;
}
.section_adresse .carte {
  margin: 20px 0 100px;
  max-width: 100%;
  width: 100vw;
  height: 450px;
}
.section_adresse .horaire {
  padding: 0 0 100px;
  height: 500px;
  width: 100%;
}
.section_adresse .horaire h2 {
  padding-inline: 30px;
}
.section_adresse .horaire .heures_jours {
  margin: 40px 30px 0;
}
.section_adresse .horaire .heures_jours ul {
  width: 100%;
  min-width: 125px;
  padding: 0;
}
.section_adresse .horaire .heures_jours ul li {
  text-decoration: none;
  list-style: none;
  margin: 0;
  font-size: 15px;
}
.section_adresse .horaire .heures_jours ul li.jours {
  width: 100%;
  max-width: 142.92px;
  margin-right: 1.5rem;
}
.section_adresse .horaire .heures_jours ul .h_fermeture {
  text-align: end;
}
.section_adresse .horaire .heures_jours ul .temps li .space {
  display: none;
}
.section_adresse .adresse {
  margin-inline: 30px;
}

h3.admin_jour {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

/**********************MEDIA QUERIES*******************/
@media only screen and (min-width: 300px) {
  #menu .section_menu {
    max-width: 85%;
  }
  #menu .section_menu .titre {
    text-align: left;
    margin-left: 2.5rem;
  }
  #menu .section_menu .groupe_items .items div {
    /*display: flex;
    justify-content: space-between;
    align-items: flex-start;*/
  }
  #menu .section_menu .groupe_items .items div h3 {
    font-size: 19px;
    font-weight: 600;
    margin-right: 40px;
  }
  #menu .section_menu .groupe_items .items div p {
    font-size: 16px;
    padding-right: 2.5rem;
  }
  #menu .section_menu_midi .groupe_items {
    padding-inline: 10%;
  }
}
@media only screen and (min-width: 576px) {
  .navigation {
    padding-inline: 65px;
  }
  #index #section2 h1 {
    font-size: 50px !important;
  }
  #index #section2 p {
    font-size: 26px !important;
    padding-inline: 75px;
  }
  #index #section2 .cta_menu .cta_text {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    font-weight: bold;
  }
  #index #section2 .cta_menu a {
    width: auto !important;
    padding-inline: 30px;
    margin-left: 20px;
    width: 100px;
  }
  #menu .section_menu {
    max-width: 85%;
  }
  #menu .section_menu .titre {
    text-align: left;
    margin-left: 2.5rem;
  }
  #menu .section_menu .groupe_items .items div {
    /*display: flex;
    justify-content: space-between;
    align-items: flex-start;*/
  }
  #menu .section_menu .groupe_items .items div h3 {
    font-size: 19px;
    font-weight: 600;
    margin-right: 40px;
  }
  #menu .section_menu .groupe_items .items div p {
    font-size: 16px;
    padding-right: 2.5rem;
  }
  .section_adresse div h2 {
    text-align: center;
  }
  .section_adresse .horaire .heures_jours {
    margin-inline: 30px;
    min-width: 320px;
  }
  .section_adresse .horaire .heures_jours ul li {
    font-size: 16px;
  }
  .section_adresse .horaire .heures_jours ul li.jours {
    width: 100%;
    margin-right: 2rem;
  }
  .section_adresse .horaire .heures_jours ul .temps li .space {
    display: inline;
  }
  .section_adresse .horaire .heures_jours ul .ul2 {
    margin-top: 0.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .navigation {
    padding-inline: 100px;
  }
  #index #section2 {
    padding-block: 115px;
  }
  #index #section2 p {
    font-size: 20px;
    padding-inline: 75px;
  }
  #menu .section_menu {
    max-width: 80%;
  }
  #menu .section_menu .titre {
    text-align: left;
  }
  #menu .section_menu .titre h2 {
    padding-right: 40px;
  }
  footer {
    padding: 115px 0px 50px;
  }
}
@media only screen and (min-width: 992px) {
  #index #section2 p {
    font-size: 26px;
    padding-inline: 50px;
  }
  #menu .section_menu {
    width: 70%;
  }
  footer .footer_info {
    flex-direction: row !important;
    justify-content: space-around;
    gap: 50px;
    text-align: left !important;
    align-items: start !important;
  }
  footer .footer_info .footer_links li {
    line-height: 2.5rem !important;
  }
  footer .footer_info .footer_links .footer_socials {
    text-align: left !important;
  }
  footer .footer_info .footer_links img.icone2 {
    padding: 8px;
    margin: 16px 20px 0px 0px;
    width: 30px;
    border: 1px solid rgba(237, 238, 239, 0.2470588235);
    border-radius: 4px;
  }
  footer .footer_info .footer_links img.icone2:hover {
    background-color: #e0833c;
  }
}
@media only screen and (min-width: 1200px) {
  #index #section2 {
    padding-block: 200px;
  }
  #index #section2 p {
    padding-inline: 0px;
  }
  .d-desktop {
    display: block !important;
  }
  #dropdown_menu {
    display: none !important;
  }
  .navigation .icone2 {
    position: relative;
    transform: translateY(-50%);
    top: 50%;
  }
  #menu .section_menu {
    width: 65%;
    min-width: 1150px;
  }
  #menu .section_menu .titre {
    /*text-align: center;*/
  }
  #menu .section_menu .groupe_items {
    grid-template-columns: 1fr 1fr;
  }
  #menu .section_menu .groupe_items .items {
    margin-inline: 40px;
  }
  #menu .section_menu_midi {
    margin-bottom: 80px;
  }
  #menu .section_menu_midi .groupe_items {
    padding-inline: 0;
  }
}
@media only screen and (min-width: 1400px) {
  #index #section1 {
    height: 85vh;
  }
  #menu .section_menu {
    width: 70%;
    max-width: 1200px;
  }
}/*# sourceMappingURL=style.css.map */