@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");

@font-face {
  font-family: "marzo";
  src: url(/fonts/fonnts.com-marzo_WebFont.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  scrollbar-width: none;
}

/*-------------------------------- Les variables -----------------------------------*/
:root {
  --nav-bg-color: rgba(0, 0, 0, 0.4);
  --nav-text: #ffffff;
  --nav-icons: #ffffff;
  --nav-icons-2: rgb(114, 233, 114);
  --text-color-1: black;
  --color-win1: rgb(0, 0, 0);
  --text-color-2: rgb(255, 255, 255);
  --color-win2: rgb(255, 255, 255);
}

/*-------------------------------- Corps du site -----------------------------------*/
html,
body {
  background: #e4dfda;
}

/*-------------------------------- Boutons de Navigation ( menu; rechercher; membre ) -----------------------------------*/
.nav {
  position: fixed;
  margin-top: 1.9%;
  margin-left: 1.7%;
  z-index: 5;
}

/*container-menu*/

.btn-menu {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--nav-bg-color);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.btn-menu i {
  font-size: 1.6rem;
  color: white;
}

.btn-menu i:hover {
  color: var(--nav-icons-2);
}

/*container-rechercher*/

::placeholder {
  color: black;
  opacity: 1;
}

.bar-search {
  display: flex;
  margin-top: 1rem;
}

.search_box_bar {
  position: relative;
  width: 250px;
  height: 50px;
}

.search_box_bar .search-box {
  width: 100%;
  height: 50px;
}

.search_box_bar .search-box .input_search {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  border: 0;
  height: 50px;
  padding: 12px 0px;
  padding-left: 50px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-radius: 3.5rem;
  font-size: 1.2rem;
  color: black;
  transition: all 0.5s ease;
  outline: none;
}

.search_box_bar .icon {
  display: flex;
}

.search_box_bar .search_btn,
.search_box_bar .close_btn {
  width: 50px;
  height: 50px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.search_box_bar .search_btn {
  top: 0;
  left: 0;
  background: var(--nav-bg-color);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  color: white;
  font-size: 1.4rem;
  z-index: 999;
}

.search_box_bar .search_btn:hover {
  color: var(--nav-icons-2);
}

.search_box_bar .close_btn {
  color: white;
  background: var(--nav-bg-color);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  font-size: 1.2rem;
  top: 0;
  left: 0;
  opacity: 0;
}

.search_box_bar.active3 .search_btn {
  top: 5px;
  left: 5px;
  width: 40px;
  height: 40px;
  color: var(--nav-icons-2);
}

.search_box_bar.active3 .close_btn {
  opacity: 1;
  transform: rotate(360deg);
  top: 65px;
  color: white;
}

.search_box_bar.active3 .search-box .input_search {
  padding: 12px 30px;
  padding-left: 60px;
  width: 100%;
  transform: all 0.5s ease;
  transition-delay: 0.75s;
  background-color: #f0f0f0a8;
}

/*-------------------------------- Fenêtre menu de Navigation -----------------------------------*/
.container-fenetre-menu {
  visibility: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  transition: visibility 0.4s;
}

.container-fenetre-menu.active8 {
  visibility: visible;
}

.container-fenetre-menu .overlay {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  transition: opacity 0.4s 0.2s ease-out;
}

.container-fenetre-menu.active8 .overlay {
  opacity: 1;
  transition: opacity 0.4s ease-out;
}

.container-fenetre-menu .fenetre {
  opacity: 0;
  width: auto;
  height: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0.5%;
  transition: opacity 0.4s ease-out;
}

.container-fenetre-menu.active8 .fenetre {
  opacity: 1;
  transition: opacity 0.4s 0.2s ease-out;
}

.fenetre .fenetre-menu {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  padding: 90px 30px 30px 30px;
  border-radius: 2.5rem;
}

.close-menu {
  position: absolute;
  top: 1.6rem;
  left: 1.4rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--nav-bg-color);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.close-menu i {
  font-size: 1.6rem;
  color: white;
}

.fenetre-menu .nav-links {
  background-color: rgba(255, 0, 0, 0);
  height: 100%;
  padding: 30px 0 50px 0;
  overflow: auto;
}

.fenetre-menu .nav-links::-webkit-scrollbar {
  display: none;
}

.fenetre-menu .nav-links li {
  position: relative;
  list-style: none;
  padding: 6px;
  transition: all 0.4s ease;
}

.fenetre-menu .nav-links li i:hover,
.fenetre-menu .nav-links li .presta-links-a:hover {
  color: #9b8f7c;
}

.fenetre-menu .nav-links li .amma-massage:hover {
  cursor: none;
}

.fenetre-menu .nav-links .nav-gory {
  padding-top: 40px;
  font-style: italic;
}

.fenetre-menu .nav-links .nav-gory1 a {
  padding-top: 50px;
  font-size: 2rem;
}

.fenetre-menu .nav-links li .iocn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.fenetre-menu .nav-links li i {
  min-width: 78px;
  text-align: center;
  color: black;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fenetre-menu .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
  color: #9b8f7c;
}

.fenetre-menu .nav-links li.showMenu a {
  color: #9b8f7c;
}

.fenetre-menu .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  color: #000000;
}

.fenetre-menu .nav-links li .sub-menu {
  padding: 6px 6px 0px 6px;
  /* display: none;*/
}

.fenetre-menu .nav-links li.showMenu .sub-menu {
  display: block;
}

.fenetre-menu .nav-links li .sub-menu a {
  color: #0f0f0f;
  font-size: 1.1rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.fenetre-menu .nav-links li .sub-menu a:hover {
  color: #9b8f7c;
}

/*-------------------------------- Audio ( AUDIO HOME ) --------------------------------*/

.btn-audio {
  position: fixed;
  top: 1%;
  right: 2%;
  z-index: 100;
}

.btn-audio label {
  width: 70px;
  height: 30px;
  position: relative;
  display: block;
  background: var(--nav-bg-color);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 200px;
  box-shadow: inset 0px 5px 15px rgba(0, 0, 0, 0.4),
    inset 0px -5px 15px rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.5s;
}

.btn-audio label::after {
  content: "";
  width: 35px;
  height: 28px;
  position: absolute;
  left: 1.1px;
  background: var(--nav-icons-2);
  border-radius: 5rem;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.btn-audio input {
  width: 0;
  height: 0;
  visibility: hidden;
}

.btn-audio input:checked + label {
  background-color: var(--nav-bg-color);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.btn-audio input:checked + label::after {
  left: 69px;
  transform: translateX(-100%);
  background: var(--nav-bg-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-audio label:active::after {
  width: 37px;
}

.btn-audio label i {
  position: absolute;
  font-size: 1.4rem;
  z-index: 100;
}

.btn-audio label i.on {
  left: 7.5px;
  color: rgb(0, 0, 0);
  transition: 0.5s;
}

.btn-audio label i.off {
  left: 40px;
  color: #b9b9b9;
  transition: 0.5s;
}

.btn-audio input:checked + label i.on {
  color: #b9b9b9;
}

.btn-audio input:checked + label i.off {
  color: var(--nav-icons-2);
}

/*-------------------------------- Page chargement d'accueil ( page chargement ) --------------------------------*/
.loader {
  z-index: 3;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100svh;
  background: #e4dfda;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  animation: ring 2s linear infinite;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
    box-shadow: 1px 3px 2px #0f0f0f;
  }
  50% {
    transform: rotate(180deg);
    box-shadow: 1px 3px 2px #0f0f0f;
  }
  100% {
    transform: rotate(360deg);
    box-shadow: 1px 3px 2px #0f0f0f;
  }
}

.ring::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.logo-loader {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-loader {
  width: 300px;
  height: 300px;
  padding: 20px;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.fondu-out {
  opacity: 0;
  transition: opacity 2s 5s ease-out;
}

/*-------------------------------- Main ( HOME ) ------------------------------------------------*/
main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100%;
}

/*-------------------------------- Accueil sliser ( HOME ) ------------------------------------------------*/

.slider-home {
  width: 100%;
  height: 100svh;
  padding: 0.5%;
  background-color: #e4dfda;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider .list .item {
  position: absolute;
  inset: 0 0 0 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.slider .list .item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3rem;
}

.slider .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3rem;
}

.slider .list .item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3rem;
}

.slider .list .item.active1 {
  opacity: 1;
}

/*---------- Item 1 : Accueil ----------*/

/* Logo & Marque */
.box-logo {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.circle {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  border-radius: 50%;
}

.img-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  background-size: cover;
  border-radius: 50%;
}

.text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 40s linear infinite;
}
@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.text span {
  position: absolute;
  left: 50%;
  font-size: 1em;
  color: white;
  transform-origin: 0 200px;
  font-family: "marzo";
  font-weight: 600;
}

/* animation & text */
.slider .list .item .content1 {
  position: absolute;
  bottom: 2%;
  left: 2%;
  color: white;
  width: 600px;
  max-width: 80%;
  z-index: 1;
}

/* animation */
.slider .list .item.active1 h3,
.slider .list .item.active1 h2,
.slider .list .item.active1 p {
  transform: translateY(30px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 0.7s ease-in-out 1 forwards;
}

@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.slider .list .item.active1 h2 {
  animation-delay: 1s;
}

/* Text */
.slider .list .item .content1 h2 {
  font-family: "Source Serif 4", serif;
  font-style: italic;
  font-size: 6rem;
  font-weight: 400;
  margin: 0;
}

/*---------- Item 2 : Présentation ----------*/

/* Images 1 */
.slider .list .item .images2 .box1-presentation {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 150px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px;
  border-radius: 2.5rem;
}

.slider .list .item .images2 .box1-presentation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

/* Images 2 */
.slider .list .item .images2 .box2-presentation {
  position: absolute;
  bottom: 17%;
  left: 20%;
  width: 400px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px;
  border-radius: 3rem;
}

.slider .list .item .images2 .box2-presentation video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.5rem;
}

/* Animation & text */
.slider .list .item .content2 {
  position: absolute;
  top: 10%;
  right: 2%;
  color: rgb(0, 0, 0);
  width: 600px;
  max-width: 80%;
  z-index: 1;
  text-align: end;
}

/* Animation */
.slider .list .item.active1 .box1-presentation,
.slider .list .item.active1 .box2-presentation,
.slider .list .item.active1 h3,
.slider .list .item.active1 h2,
.slider .list .item.active1 p {
  transform: translateY(30px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 0.7s ease-in-out 1 forwards;
}

@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.slider .list .item.active1 .content2 h3 {
  animation-delay: 1s;
}

.slider .list .item.active1 .content2 h2 {
  animation-delay: 1.2s;
}

.slider .list .item.active1 .content2 p {
  animation-delay: 1.3s;
}

/* Text */
.slider .list .item .content2 h3 {
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 0.8rem;
  font-weight: 100;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.slider .list .item .content2 h2 {
  font-size: 8rem;
  font-weight: 500;
  margin: 10px;
  color: #b8af9f;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.slider .list .item .content2 p {
  font-size: 1.2rem;
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-style: italic;
  color: #413420;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/*---------- Item 3 : Présentation2 ----------*/

/* Images 1 */
.slider .list .item .images3 .box1-presentation {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 400px;
  height: 620px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px;
  border-radius: 2.5rem;
}

.slider .list .item .images3 .box1-presentation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.slider .list .item .images3 .box1-presentation video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

/* animation & text */
.slider .list .item .content3 {
  position: absolute;
  top: 20%;
  left: 10%;
  color: white;
  width: 500px;
  max-width: 80%;
  z-index: 1;
}

/* Animation */
.slider .list .item.active1 .box1-presentation,
.slider .list .item.active1 h2,
.slider .list .item.active1 p {
  transform: translateY(30px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 0.7s ease-in-out 1 forwards;
}

@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.slider .list .item.active1 .content3 h2 {
  animation-delay: 1.2s;
}

.slider .list .item.active1 .content3 p {
  animation-delay: 1.3s;
}

/* Text */
.slider .list .item .content3 h2 {
  font-size: 8rem;
  font-weight: 500;
  margin: 10px;
  color: #b8af9f;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.slider .list .item .content3 p {
  font-size: 1.2rem;
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-style: italic;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/*-------------------- Arrows --------------------*/

.arrows {
  z-index: 10;
  position: absolute;
  bottom: 5%;
  right: 2%;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 10rem;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--nav-bg-color);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.arrows .prev:hover {
  width: 45px;
  color: var(--nav-icons-2);
}

.arrows .next:hover {
  width: 45px;
  color: var(--nav-icons-2);
}

/*-------------------------------- Signal Info footer ( HOME ) --------------------------------*/

.signal {
  width: 100%;
  height: 10svh;
  background-color: #0f0f0f;
}

.signal-box {
  width: 100%;
  height: 10svh;
  background-color: #e4dfda;
  border-radius: 0 0 3rem 3rem;
  position: relative;
}

.signal-box-footer {
  position: absolute;
  bottom: 0;
  right: 10.5%;
}

.footer-signal a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  padding: 10px 20px;
  border-radius: 1.2rem 1.2rem 0 0;
  font-size: 16px;
  color: white;
  gap: 10px;
  border: none;
  background: #0f0f0f;
  cursor: pointer;
}

/*-------------------------------- Pied de page ( Footer ) --------------------------------*/
.footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 72svh;
}

.box-footer {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0f0f0f;
}

/*Infos dans Pied de page ( Footer )*/

.box-info-footer {
  padding-top: 1%;
  padding-left: 1%;
  display: flex;
  gap: 30px;
}

.info-footer li {
  padding-top: 10px;
  list-style: none;
}

.info-footer a {
  padding: 10px;
  color: white;
  font-size: 0.9rem;
}

/*Réseaux Sociaux dans Pied de page ( Footer )*/
.réseaux-sociaux-footer {
  position: absolute;
  top: 2%;
  right: 2%;
}

.réseaux-sociaux-footer i {
  padding: 10px;
  color: white;
  font-size: 1.5rem;
}

/*Contact dans Pied de page ( Footer )*/
.contact-footer li {
  padding-top: 10px;
  list-style: none;
}

.contact-footer a {
  padding: 10px;
  color: white;
}

/*Titre MAISON DU BARBE dans Pied de page ( Footer )*/

.titre-footer {
  margin-top: 10rem;
  font-size: 300px;
  overflow: hidden;
  user-select: none;
  display: flex;
  gap: 20rem;
}

.titre-footer ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20rem;
  animation: roulant 200s linear infinite;
}

@keyframes roulant {
  to {
    transform: translateX(calc(-100% - 300px));
  }
}

.h1-footer {
  color: white;
  font-family: "marzo";
  font-weight: 500;
}

/*Copyright dans Pied de page ( Footer )*/
.copyright-footer {
  position: absolute;
  bottom: 3%;
  right: 1%;
}

.copyright {
  color: white;
  font-size: 0.8rem;
  font-weight: 100;
}

/*-------------------------------- Modal téléphone ( Footer ) --------------------------------*/

.telephone {
  position: fixed;
  bottom: 0;
  left: 10rem;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 99;
  transition: 0.4s ease-out;
  transform: translateY(100%);
}

.telephone:target {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}

.rebord-telephone_content {
  width: 250px;
  max-width: 15%;
  height: auto;
  padding: 10px 10px 0 10px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem 2rem 0 0;
}

.telephone_content {
  width: 100%;
  height: auto;
  padding: 20px;
  border-radius: 1.5rem 1.5rem 0 0;
  background: #f0f0f0;
  cursor: pointer;
  position: relative;
}

.telephone_content a {
  color: rgb(0, 0, 0);
}

.btn_close-phone {
  position: absolute;
  top: 3.5px;
  right: 9px;
  color: #000000;
  font-size: 1.8rem;
  text-decoration: none;
}

/*-------------------------------- Modal mail ( Footer ) --------------------------------*/

.mail-footer {
  position: fixed;
  bottom: 0;
  left: 10rem;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 99;
  transition: 0.4s ease-out;
  transform: translateY(100%);
}

.mail-footer:target {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}

.rebord-content {
  width: 700px;
  max-width: 90%;
  height: auto;
  padding: 10px 10px 0 10px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem 2rem 0 0;
}

.mail-footer_content {
  width: 100%;
  height: auto;
  padding: 20px;
  border-radius: 1.5rem 1.5rem 0 0;
  background: #f0f0f0;
  cursor: pointer;
  position: relative;
}

.mail-footer_content form {
  margin: 35px 30px;
}

form .dbl-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.dbl-field .field {
  height: 40px;
  width: calc(100% / 2 - 13px);
  margin-bottom: 25px;
  position: relative;
}

form .field input,
form .message textarea {
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0 18px 0 50px;
  font-size: 16px;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #000000;
}

form .field input::placeholder,
form .message textarea::placeholder {
  color: #afafaf;
}

form .field input:focus,
form .message textarea:focus {
  border-bottom: 1px solid #9b8f7c;
}

.mail-footer_content form i {
  position: absolute;
  left: 18px;
  top: 40%;
  color: #000000;
  font-size: 23px;
  pointer-events: none;
  transform: translateY(-50%);
}

form .field input:focus ~ i,
form .message textarea:focus ~ i {
  color: #9b8f7c;
}

form .message {
  position: relative;
}

form .message i {
  top: 22px;
  font-size: 23px;
}

form .message textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 120px;
  max-height: 300px;
  padding: 15px 20px 0 50px;
}

form .button-area {
  margin: 25px 0;
}

.button-area button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  text-decoration: none;
  border: none;
  width: 120px;
  height: 40px;
  background: var(--nav-bg-color);
  color: white;
  font-size: 1rem;
  transition: 0.6s ease;
  cursor: pointer;
}

.button-area button:hover {
  transform: scale(1.03);
  color: var(--nav-icons-2);
}

.button-area .message-span {
  color: #a8a8a8;
  position: absolute;
  left: 30%;
  bottom: 4.2rem;
  display: none;
}

.btn_close-mail {
  position: absolute;
  top: 3.5px;
  right: 9px;
  color: #000000;
  font-size: 1.8rem;
  text-decoration: none;
}

/*-------------------------------- Cookies ( HOME ) ------------------------------------------------*/

.cookie-banner {
  position: fixed;
  top: 4%;
  right: 2%;
  padding: 0;
  z-index: 1000;
}

.border-box-banner {
  width: 550px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px;
  border-radius: 2.5rem;
}

.box-banner {
  width: 100%;
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ensavoirplus {
  color: black;
}

.ensavoirplus:hover {
  border-bottom: 1px solid black;
}

.btn-cookies {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accept-cookies {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  text-decoration: none;
  width: 100px;
  height: 40px;
  background: var(--nav-bg-color);
  color: white;
  font-size: 1rem;
  transition: 0.6s ease;
  border: none;
  cursor: pointer;
}

.accept-cookies:hover {
  color: var(--nav-icons-2);
}

.refuser-cookies {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  text-decoration: none;
  width: 100px;
  height: 40px;
  background: transparent;
  border: 1px solid black;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  transition: 0.6s ease;
  cursor: pointer;
}

.refuser-cookies:hover {
  background-color: var(--nav-icons-2);
}

/*-- RESPONSIVE ( Ordinateur: 2000px ) --*/

@media (max-width: 2000px) {
}

/*-- RESPONSIVE ( Ordinateur: 1700px ) --*/

@media (max-width: 1700px) {
}

/*-- RESPONSIVE ( Ordinateur: 1400px ) --*/

@media (max-width: 1400px) {
}

/*-- RESPONSIVE ( Ordinateur: 1200px ) --*/

@media (max-width: 1200px) {
}

/*-- RESPONSIVE ( Tablettes Pro ) --*/

@media (max-width: 1030px) {
}

/*------------------------ RESPONSIVE ( Iphone SE ) ---------------------*/
@media (max-width: 678px) {
  .custom-cursor {
    display: none;
  }

  /*-------------------------------- Boutons de Navigation ( menu; rechercher; membre ) -----------------------------------*/
  .nav {
    position: fixed;
    margin-top: 5%;
    margin-left: 5%;
    z-index: 5;
  }

  /*-------------------------------- Fenêtre menu de Navigation -----------------------------------*/

  .container-fenetre-menu .overlay {
    background-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .container-fenetre-menu .fenetre {
    width: 100%;
    height: 100%;
    padding: 8px;
    margin: 0%;
    box-shadow: 0 4px 30px transparent;
  }

  .fenetre .fenetre-menu {
    width: 100%;
    height: 100%;
  }

  .close-menu {
    top: 1.1rem;
    left: 1.1rem;
  }

  /*-------------------------------- Audio ( AUDIO HOME ) ----------------------------*/

  .btn-audio {
    position: fixed;
    top: 0;
    right: 1.6rem;
    z-index: 100;
  }

  /*-------------------------------- Page chargement d'accueil ( page chargement ) ----------------------------*/

  .ring {
    width: 200px;
    height: 200px;
  }

  .img-loader {
    width: 200px;
    height: 200px;
    padding: 10px;
  }

  /*-------------------------------- Accueil sliser ( HOME ) --------------------------------*/

  .slider-home {
    width: 100%;
    height: 100svh;
    padding: 2%;
  }

  .slider .list .item video {
    border-radius: 2.5rem;
  }

  .slider .list .item img {
    border-radius: 2.5rem;
  }

  .slider .list .item::after {
    border-radius: 2.5rem;
  }

  /*---------- Item 1 : Accueil ----------*/
  /* Logo & Marque */

  .circle {
    width: 250px;
    height: 250px;
  }

  .logo {
    width: 200px;
    height: 200px;
    padding: 10px;
  }

  .text span {
    font-size: 0.9em;
    transform-origin: 0 125px;
    font-weight: 600;
  }

  /* animation & text */
  .slider .list .item .content1 {
    position: absolute;
    bottom: 2%;
    left: 4%;
    color: white;
    width: 500px;
    max-width: 80%;
    z-index: 1;
  }

  /* text */
  .slider .list .item .content1 h2 {
    font-family: "Source Serif 4", serif;
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0;
  }

  /*---------- Item 2 : Présentation ----------*/

  /* Images 1 */
  .slider .list .item .images2 .box1-presentation {
    bottom: 2%;
    left: 4%;
    width: 130px;
    height: 200px;
    border-radius: 2.5rem;
  }

  .slider .list .item .images2 .box1-presentation img {
    border-radius: 2rem;
  }

  /* Images 2 */
  .slider .list .item .images2 .box2-presentation {
    display: none;
  }

  .slider .list .item .images2 .box2-presentation img {
    display: none;
  }

  /* Text */
  /* Animation & text */
  .slider .list .item .content2 {
    position: absolute;
    top: 9%;
    right: 5%;
    color: rgb(0, 0, 0);
    width: 700px;
    max-width: 80%;
    z-index: 1;
    text-align: end;
  }

  .slider .list .item .content2 h3 {
    font-size: 0.9rem;
  }

  .slider .list .item .content2 h2 {
    font-size: 3.2rem;
    color: #b8af9f;
  }

  .slider .list .item .content2 p {
    font-size: 1rem;
    color: #ffffff;
  }

  /*---------- Item 3 : Présentation2 ----------*/

  /* Images 1 */
  .slider .list .item .images3 .box1-presentation {
    position: absolute;
    top: 8%;
    right: 5%;
    width: 200px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px;
    border-radius: 2.5rem;
  }

  /* animation & text */
  .slider .list .item .content3 {
    position: absolute;
    top: 22%;
    left: 5%;
    color: white;
    width: 90%;
    z-index: 1;
  }

  /* Text */
  .slider .list .item .content3 h2 {
    font-size: 5rem;
    font-weight: 500;

    color: #b8af9f;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  .slider .list .item .content3 p {
    font-size: 1rem;
    margin: 0;
    font-family: "Source Serif 4", serif;
    font-style: italic;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  /*-------------------------------- Arrows --------------------------------*/

  .arrows {
    z-index: 4;
    position: absolute;
    bottom: 2%;
    right: 2%;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  /*-------------------------------- Signal Info footer ( HOME ) --------------------------------*/
  .signal {
    width: 100%;
    height: 15svh;
    background-color: #0f0f0f;
  }

  .signal-box {
    width: 100%;
    height: 100%;
    background-color: #e4dfda;
    border-radius: 0 0 2.5rem 2.5rem;
    position: relative;
  }

  .signal-box-footer {
    left: 44%;
  }

  /*-------------------------------- Pied de page ( Footer ) --------------------------------*/
  .footer {
    height: 65vh;
    position: relative;
  }

  /*Infos dans Pied de page ( Footer )*/

  .box-info-footer {
    gap: 10px;
  }

  /*Réseaux Sociaux dans Pied de page ( Footer )*/
  .réseaux-sociaux-footer {
    top: 2%;
    right: 2%;
  }

  .réseaux-sociaux-footer i {
    padding: 5px;
  }

  /*Titre MAISON DU BARBE dans Pied de page ( Footer )*/
  .titre-footer {
    margin-top: 3rem;
    font-size: 200px;
    overflow: hidden;
    user-select: none;
    display: flex;
    gap: 20rem;
  }

  /*Copyright dans Pied de page ( Footer )*/
  .copyright-footer {
    bottom: 3%;
    right: 5%;
  }

  .copyright {
    font-size: 0.7rem;
  }

  /*----------Modal téléphone ( Footer )----------*/

  .telephone {
    position: fixed;
    bottom: 0;
    left: 0%;
    right: 0%;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    transition: 0.4s ease-out;
    transform: translateY(100%);
  }

  .telephone:target {
    visibility: visible;
    opacity: 1;
    transform: translateY(0%);
  }

  .rebord-telephone_content {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 10px 10px 0 10px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem 2rem 0 0;
  }

  .telephone_content {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 1.5rem 1.5rem 0 0;
    background: #f0f0f0;
    cursor: pointer;
    position: relative;
  }

  .telephone_content a {
    color: rgb(0, 0, 0);
  }

  .btn_close-phone {
    position: absolute;
    top: 3.5px;
    right: 9px;
    color: #000000;
    font-size: 1.8rem;
    text-decoration: none;
  }

  /*---------- Modal mail ( Footer ) ----------*/

  .mail-footer {
    position: fixed;
    bottom: 0;
    left: 0rem;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    transition: 0.4s ease-out;
    transform: translateY(100%);
  }

  .mail-footer:target {
    visibility: visible;
    opacity: 1;
    transform: translateY(0%);
  }

  .rebord-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .mail-footer_content form {
    margin: 30px 5px;
  }

  .dbl-field .field {
    height: 40px;
    width: 100%;
    margin-bottom: 25px;
    position: relative;
  }

  form .message i {
    top: 22px;
    font-size: 23px;
  }

  form .message textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 120px;
    max-height: 300px;
    padding: 15px 20px 0 50px;
  }

  form .button-area {
    margin: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .button-area button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3rem;
    text-decoration: none;
    border: none;
    width: 120px;
    height: 40px;
    background: var(--nav-bg-color);
    color: white;
    font-size: 1rem;
    transition: 0.6s ease;
    cursor: pointer;
  }

  .button-area .message-span {
    position: absolute;
    left: 5%;
    bottom: 1rem;
  }

  .btn_close-mail {
    position: absolute;
    top: 3.5px;
    right: 9px;
    color: #000000;
    font-size: 1.8rem;
    text-decoration: none;
  }

  /*---------- Cookies ( HOME ) ----------*/

  .cookie-banner {
    top: 0;
    right: 0;
    padding: 2%;
    z-index: 1000;
  }

  .ensavoirplus {
    border-bottom: 1px solid black;
  }

  .border-box-banner {
    width: 100%;
    box-shadow: 0 4px 30px transparent;
  }

  .box-banner {
    flex-direction: column;
  }

  .btn-cookies {
    flex-direction: row;
  }
}
