
*{
  margin: 0;
  padding: 0;
}

/* Fonts */
@font-face {
  font-family: 'Didot Italic';
  src: url('../fonts/Didot\ Italic.ttf') format('truetype'); 
}

@font-face {
  font-family: 'californian bold italic';
  src: url('../fonts/times\ new\ roman\ bold\ italic.ttf') format('truetype'); 
}
@font-face {
  font-family: 'californian bold';
  src: url('../fonts/times\ new\ roman\ bold.ttf') format('truetype'); 
}
@font-face {
  font-family: 'californian italic';
  src: url('../fonts/times\ new\ roman\ italic.ttf') format('truetype'); 
}
@font-face {
  font-family: 'californian';
  src: url('../fonts/times\ new\ roman.ttf') format('truetype'); 
}
@font-face {
  font-family: 'californian';
  src: url('../fonts/CALIFB.TTF') format('truetype'); 
  src: url('../fonts/CALIFI.TTF') format('truetype'); 
  src: url('../fonts/CALIFR.TTF') format('truetype'); 
}


@font-face {
  font-family: 'montserrat-extrabold';
  src: url('../fonts/Montserrat/Montserrat-ExtraBold.ttf') format('truetype'); 
}

@font-face {
  font-family: 'futura';
  src: url('../fonts/Futura\ Std\ Light.otf') format('truetype'); 
}


:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Cardo", sans-serif;
}


/* shadows */
.text-shadow{
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.405);
}

.box-shadow{
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.405);
}


/* Colors */
:root {
  --color-default: #fafafa;
  --color-primary: #white;
  --color-secondary: #161718;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background-color: #000;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}


@keyframes hueRotate {
  0% {
    filter: hue-rotate(0) blur(30px);
  }
  100% {
    filter: hue-rotate(360deg) blur(30px);
  }
}
.gradient-line:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -75px;
  height: 75px;
  filter: blur(30px);
  -webkit-filter: blur(30px);
  background-image: conic-gradient(from 180deg at 50% 100%, transparent 0, transparent 27%, #ff3998 27%, #d764ff 36.04%, #00b5ff 58.23%, #0fd 63%, #54fa43 73%, transparent 73%, transparent 100%);
  animation: hueRotate 2.5s linear infinite;
}


/*--------------------------------------------------------------
# Bootstrap remplace
--------------------------------------------------------------*/
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.position-relative {
  position: relative;
}

.justify-content-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.h-100 {
  height: 100%;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
header{
  color: white;
  text-align: center; 
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0 0px 0;
  transition: all 0.5s;
  background-color: #000;
  z-index: 1000;
  border-bottom: 1px solid #ffffff48;
}

header h1{
  font-family: 'californian', Times, serif;
  font-size: xx-large;
  letter-spacing:0.8cap;
  
}
header h2{
  margin-top: 10px;
  margin-bottom: 3px;
  font-family: 'californian', Times, serif;
  letter-spacing: 0.2ch;
  font-size: small;
}

h3 {
  font-family: 'montserrat-extrabold', Times, serif;
}

#name{
  width: 100%;
  height: 50px;
  z-index: 1;
}

#navbar{
  text-align: center; 
  display: flex;
  justify-content: center;
  z-index: 1;
}

.section-header {
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-primary);
}

.section-header h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #5bd9a9;
  margin: 4px 10px;
}

.section-header p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-secondary);
  color: #fff;
}



/*---  glowing-wrapper-button---*/

.glowing-wrapper-button {
	z-index: 1;
	color: #fff;
	letter-spacing: -.01em;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 62.5rem;
	padding: .7rem 1.5rem;
	font-size: 26px;
	line-height: 1.42;
	text-decoration: none;
	position: relative;
	max-width: 100%;
	display: inline-block;
}



.glowing-wrapper {
	border-radius: 62.5rem;
	display: inline-block;
	position: relative;
	overflow: hidden;
  margin: 30px;
}

.glowing-wrapper.glowing-wrapper-active {
	background-color: #000
}

.glowing-wrapper-borders-masker {
	width: 100%;
	opacity: 0;
	border-radius: 62.5rem;
	padding: .11rem;
	line-height: 100%;
	transition: opacity 1s;
	position: absolute;
	top: 0;
	left: 0
}

.glowing-wrapper .button-text {
	z-index: 2;
	color: #fff;
	position: relative
}

.glowing-wrapper-animations {
	width: 100%;
	opacity: 0;
	transition: opacity 1s;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.glowing-wrapper-mask {
	opacity: 1
}

.glowing-wrapper-glow {
	opacity: .12;
	filter: blur(8px)
}

.glowing-wrapper-borders {
	width: 100%;
	opacity: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.glowing-wrapper-mask-wrapper {
	opacity: 1
}

.glowing-wrapper-button:after {
	background: radial-gradient(85% 120% at 50% 120%, rgba(255, 255, 255, .24) 0%, rgba(255, 255, 255, 0) 100%);
	border-radius: 999px;
	content: "";
	height: calc(100% + 4px);
	left: -2px;
	opacity: 0;
	position: absolute;
	top: -2px;
	transition: 1s all;
	width: calc(100% + 4px)
}

.glowing-wrapper-button:hover:after {
	opacity: .7
}


.glowing-wrapper-active .glowing-wrapper-animations,
.glowing-wrapper-active .glowing-wrapper-borders-masker {
	opacity: 1
}

.glowing-wrapper-animations:before,
.glowing-wrapper-borders:before {
	content: "";
	float: left;
	padding-top: 100%
}

.glowing-wrapper-animations:after,
.glowing-wrapper-borders:after {
	clear: both;
	content: "";
	display: block
}

.glowing-wrapper-animations {
	pointer-events: none;
}

.glowing-wrapper-animations * {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.glowing-wrapper-borders,
.glowing-wrapper-glow,
.glowing-wrapper-mask {
	animation: borderTurn 2.5s infinite linear;
	background-image: conic-gradient(from 0 at 50% 50%, rgba(255, 255, 255, .5) 0deg, rgba(255, 255, 255, 0) 60deg, rgba(255, 255, 255, 0) 310deg, rgba(255, 255, 255, .5) 360deg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover
}

.glowing-wrapper-mask-wrapper {
	-webkit-mask: url("data:image/svg+xml,url('data:image/svg+xml,%253Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%253E%253Crect width='28' height='24' fill='black'/%253E%253C/svg%253E%250A');");
	mask: url("data:image/svg+xml,url('data:image/svg+xml,%253Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%253E%253Crect width='28' height='24' fill='black'/%253E%253C/svg%253E%250A');");
	mask-repeat: repeat;
	-webkit-mask-size: auto;
	mask-size: auto
}

.glowing-wrapper-borders {
	animation-name: borderTurnWithTranslate
}

.glowing-wrapper-borders-masker {
	content: "";
	inset: 0;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: xor;
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

@keyframes borderTurn {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(360deg)
	}
}

@keyframes borderTurnWithTranslate {
	0% {
		transform: translate(-50%, -50%) rotate(0)
	}

	to {
		transform: translate(-50%, -50%) rotate(360deg)
	}
}




.glowing-wrapper svg{
  height: 30px;
  margin: 0 10px -6px 0;
}


.main-header {
  margin-top: 170px;
  position: relative;
  display: flex;
  justify-content: center;
}

.page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}



.page-header p {
  color: rgb(244, 211, 0);
}

.cta-btn {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  display: flex;
  padding: 12px 0px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
  background: var(--color-primary);
  border: solid 1px white;
  margin-top: 15px;
  width: 210px;
  justify-content: center;
}

.cta-btn svg{
  height: 20px;
  margin-right: 10px;
}



.cta-btn:hover {
  color: rgb(255, 221, 0);
  border: solid 1px rgb(255, 221, 0);
} 


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: rgb(0, 0, 0);
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: #999;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% {
    height: 0%;
  }

  100% {
    height: 100%;
  }
}

@keyframes linemove {
  0% {
    transform: translateY(200%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes preloaderfinish {
  0% {
    width: 5 0%;
  }

  100% {
    width: 0%;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header .logo {
  transition: 0.3s;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 400;
  color: #fff;
  font-family: var(--font-secondary);
}

.header .logo i {
  font-size: 32px;
  margin-right: 8px;
  line-height: 0;
}

.header .header-social-links {
  padding-right: 15px;
}


/*----------------------------------------------------------------------------------------------------------------------------
# Contact Section
----------------------------------------------------------------------------------------------------------------------------*/
#contact {
  margin-top: 2%;
  display: flex;
  justify-content: center;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--color-primary);
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color:  rgb(255, 221, 0);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--color-primary);
  color: #fff;
}

.info-item img {
  width: 100%;
}

.contact .php-email-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .php-email-form .form-group {
  padding-bottom: 30px;
  width: 60%;
  display: flex;
}

.contact .php-email-form .success-message {
  color: #fff;
  background: #4caf50; /* Background color for success message */
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .success-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: var(--color-primary);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--color-secondary);
  text-align: center;
  padding: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-primary);
  border-top-color: var(--color-secondary);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  background-color: var(--color-secondary);
  border: 1px solid #2e3133;
  color: #fff;
  width: 100%;
}

.contact .php-email-form input {
  height: 50px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background-color: rgb(255, 221, 0);
  border: 0;
  padding: 10px 35px;
  color: #000000;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  color: white;
  background: rgb(201, 178, 0);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 225, 0, 0.199); /* Couleur de votre choix pour le placeholder */
}

#contact-page h2 {
  color: rgb(255, 221, 0);
}

.container-contact {
  width: 100%;
}

.name-mail {
  display: flex;
  justify-content: space-between;
  width: 60%;
}


.name-mail div {
  width: 45%!important;
}

::placeholder {
  margin-left: 30px;
}

.tel-mail {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.yellow {
  color: rgb(255, 221, 0);
  
}

/*----------------------------------------------------------------------------------------------------------------------------
# Static contact 
----------------------------------------------------------------------------------------------------------------------------*/


.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; /* Couleur du bouton */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #0056b3; /* Couleur du bouton au survol */
}


.video-wrapper {
position: relative;
width: 100%; /* Définissez la largeur et la hauteur selon vos besoins */
height: 100%; /* Définissez la largeur et la hauteur selon vos besoins */
}

.overlay {
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0); /* Couleur de fond semi-transparente */
z-index: 1; /* Assurez-vous que l'overlay est au-dessus de la vidéo */
}



/*----------------------------------------------------------------------------------------------------------------------------
# Sent Section
----------------------------------------------------------------------------------------------------------------------------*/

#sent {
  height: 320px;
}

.col-lg-7 {
  width: 100%;
}




/*----------------------------------------------------------------------------------------------------------------------------
# Video Section
----------------------------------------------------------------------------------------------------------------------------*/
#video_section{
  margin: auto;
}

#video_1-1 {
  width: 100%;
}

#video_1-2 {
  width: 100%;
}

#video_1-3 {
  width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  font-family: 'montserrat-extrabold';
  text-transform: uppercase;

  display: flex;
  justify-content: center;
  }

.video-container h3 {
  font-size: 3rem; 
  color: white;
  }

.video-container h4 {
 font-size: 1rem;
 font-family: 'montserrat-extrabold';
 text-transform: uppercase;
 text-align: left;
 width: 85%;
 margin-top: 2px;
 line-height: 23px;
}



.content-video {
  position: absolute;
  top: 25%;
  left: 0%;
  color: #f1f1f1;
  width: 32%;
  padding: 20px;
  font-size: 50px;
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0) 100%);
}

.content-video h1 {
 font-size: 2rem;
 margin-bottom: 10px;
}

.content-video h2{
 font-size: 1.5rem;
 color: white;
 font-family: 'californian';
 font-weight: 100;
}





.myBtn {
  width: auto;
  font-size: 1rem;
  padding: 10px;
  border: none;
  background: #fff;
  color: #000000;
  cursor: pointer;
  margin-top: 20px;
  font-family: 'montserrat-extrabold';
  text-transform: uppercase;
  border-radius: 8px;
}

.myBtn:hover {
  background: #ddd;
  color: black;
}


/*----------------------------------------------------------------------------------------------------------------------------
# Restauration
----------------------------------------------------------------------------------------------------------------------------*/
#text-page-header {
  flex: 0 0 auto;
  display: flex;
  width: 50%;
  flex-direction: column;
  align-items: center;
  font-family: ui-rounded;
}

#text-page-header h2 {
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 25px;
}

#text-page-header p {
  font-size: 24px;
  line-height: 28px;
}


.video-1-2-3-4 video{
  width: 100%;
  height: auto;
}


.col-xl-34 {
  width: 20%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px;
}

.col-xl-3 {
  width: 37%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px;
}

.block-4videos {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.block-2videos {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.block-2videos video{
  width: 47%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px;
}

.restauration-images {
  height: auto;
}


.gallery {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}


.gallery .gallery-item img {
  transition: 0.3s;
  width: 40vh;
  border-radius: 10px;
  margin: 10px;
}



/*----------------------------------------------------------------------------------------------------------------------------
# Presentation
----------------------------------------------------------------------------------------------------------------------------*/
#presentation{
  font-family:'Didot italic';
  background-image: url('../img/18.webp'); 
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  background-size:cover;
  background-position-y: 128px;
  margin-top: 78px;
}

#presentation h1{
  font-family:'Didot italic';
}

.presentation-block {
  position: relative;
  width: 60%; /* 60% de la largeur de la page */
  margin: 0 auto; /* Centrer horizontalement */
  background-color: rgba(0, 0, 0, 0.877); /* Fond noir */
  color: white; /* Texte blanc */
  overflow: hidden; /* Masquer le débordement de l'image */
}

.presentation-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* Redimensionner l'image pour couvrir l'intégralité du bloc */
  background-position: center; /* Centrer l'image */
  z-index: -1; /* Positionner l'image en arrière-plan */
}

.content-presentation {
  position: relative; /* Pour que le contenu apparaisse au-dessus de l'image */
  padding: 50px;
}

.content-presentation p{
  padding: 20px 0 0 0;
}

h1, p {
  margin: 0;
  font-size: 2rem;
}

.presentation-block h1 {
  font-size: 2em;
  text-align: center;
}

.presentation-block p {
  font-family: futura;
  text-align: center;
  font-size: 1.2em;
}

#more {display: none;}

.presentation-p {
  margin-top: 30px;
}




/*----------------------------------------------------------------------------------------------------------------------------
# Footer
----------------------------------------------------------------------------------------------------------------------------*/
.footer {
  margin-top: 30px;
  padding: 30px 0;
  font-size: 14px;
  border-top: 1px solid #ffffff48;
}

.container-footer h1, h4{
  text-align: center;
  font-family: 'californian', Times, serif;
}

.footer .copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.logo-container {
  text-align: center; /* Centrer le contenu à l'intérieur du conteneur */
}

.center-image {
  display: inline-block;
  height: 200px;
  margin: 0px;
}

.flag-container {
  display: flex; /* Utilisation de Flexbox pour centrer le drapeau horizontalement et verticalement */
  justify-content: center; /* Centrer horizontalement */
  align-items: center; /* Centrer verticalement */
  height: 100vh; /* Taille de la vue sur la hauteur */
}

.flag-horizontal {
  width: 120px; /* Largeur totale du drapeau */
  height: 50px; /* Hauteur du drapeau */
  display: flex; /* Utilisation de Flexbox pour aligner les bandes horizontalement */
  margin-top: 10px;
}

.blue-stripe, .white-stripe, .red-stripe {
  height: 3px; /* Hauteur de chaque bande */
}

.blue-stripe {
  width: 40px; /* Largeur de la bande bleue */
  background-color: #0055A4; /* Couleur bleue */
}

.white-stripe {
  width: 40px; /* Largeur de la bande blanche */
  background-color: #FFFFFF; /* Couleur blanche */
}

.red-stripe {
  width: 40px; /* Largeur de la bande rouge */
  background-color: #EF4135; /* Couleur rouge */
}


.container-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container-footer-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* hamburger icon ----------------------------------------------*/

* {
  margin: 0;
  padding: 0; 
}

#nav-icon {
  width: 30px;
  height: 10px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  right: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(2) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 0px;
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 19px;
  left: 0px;
}


#video-gallery-2 {
  height: auto;
  width: 100%;
}

/*nouvelle gallerie*/

.container-gallery {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  width: 80%;
}

.gallery img{
  width: 100%;
}

.a-image-gallery {
  margin: 10px ;
}

/*----------------------------------------------------------------------------------------------------------------------------
# Responsive
----------------------------------------------------------------------------------------------------------------------------*/
.mobile-texts {
  padding: 0 20px;
  margin: 10px 0;
  font-family: ui-rounded;
}

/*----------------------------------------------------------------------------------------------------------------------------
# Desktop Navigation
----------------------------------------------------------------------------------------------------------------------------*/

.sculpture-video {
  width: 60%;
}

.sculpture-photo {
  margin-top: 0;
  width: 30%;
}

.sculpture-gallery {
  min-height: 50vh;
}


#buttons-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

#block {
  height: 100%;
  width: 30%;
  border-left: solid 0.1px #0000007d;
  border-right: solid 0.1px #0000007d;
}

.fixed-buttons {
  position: fixed;
  bottom: 20px;
  z-index: 9999;
  background-color: white;
  border-radius: 25px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 50%;
  height: 50px;
  
}


.icon-fixed {
  height: 20px;
  margin-top: 5px;
}

/*----------------------------------------------------------------------------------------------------------------------------
# Mobile Navigation
----------------------------------------------------------------------------------------------------------------------------*/


@media (max-width: 320px) {
  header h1 {
    font-size: 27px;
    letter-spacing: 0;
    margin: 2px 10px 0 0;
  }
  .main-header {
    margin-top: 120px;
  }

  #text-page-header {
    width: 90%;
    font-family: ui-rounded;
  }

  .video-container h1 {
    font-size: 15px;
    width: 215px;
  }

  .video-container h4 {
    line-height: 11px;
    font-size: 10px;
    margin-top: 4px;
  }

  .myBtn {
    font-size: 10px;
    padding: 5px;
    width: 145px;
    margin-top: 7px;
  }

  #video_section {
    width: 100%;
    padding: 6px;
    margin-top: 8px;
  }

  .video-container {
    width: 100%;
    height: 240px;
  }

  video {
    width: 100%;
    height: 250px;
  }

  .content-video {
    width: 52%;
    top: 45%;
    font-size: 7px;
    padding: 13px 0px 0px 15px;
  }

  
  #video_1-1 {
  margin-top: 0;
  }



  #video_1-3 {
    margin-top: 3px;
  }

  #content-video-2 {
    margin-top: 10px;
  }

  #content-video-3 {
    margin-top: 0px;
  }

  .presentation-block h1 {
    font-size: 23px;
  }

  .presentation-block p {
    font-size: 16px;
  }

  .content-presentation {
    padding: 10px;
  }

  .content-presentation p {
    padding: 10px 0 0 0;
  }

  .presentation-block {
    width: 90%;
  }

  #presentation {
    margin: 0;
  }

  .d-flex {
    display: flex !important;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 320px) and (max-width: 800px) {
  
  header h2 {
    margin: 10px 0 10px;
  }

  header h1 {
    font-size: 30px;
    letter-spacing: 0;
    margin: 2px 10px 0 0;
  }
  .main-header {
    margin-top: 120px;
  }

  #text-page-header {
    width: 90%;
    font-family: ui-rounded;
  }

  .video-container h1 {
    font-size: 15px;
    width: 215px;
  }

  .video-container h4 {
    line-height: 11px;
    font-size: 10px;
    margin-top: 4px;
  }

  #content-video-1 {
    margin-top: 50px;
  }
  #content-video-2 {
    margin-top: 10px;
  }
  #content-video-3 {
    margin-top: 10px;
  }

  .myBtn {
    font-size: 10px;
    padding: 5px;
    width: 106px;
    margin-top: 7px;
  }

  #video_section {
    width: 100%;
  }

  .video-container {
    width: 100%;
  }

  video {
    width: 100%;
  }

  .content-video {
    width: 52%;
    top: 45%;
    font-size: 7px;
    background-color: #00000000;
  }

  #video_1-1 {
    height: auto;
    width: 100vw;
    margin:0;
    position: relative;
    top: 44px;
  }


  #video_1-3 {
    height: 100%;
    margin: 0;
  }


  #presentation {
    background: none;
    margin-top: 37px;
  }

  .presentation-block h3 {
    font-size: 23px;
    text-align: center;
    margin: 15px 0;
  }

  .presentation-block p {
    font-size: 16px;
  }

  .content-presentation {
    padding: 10px;
  }

  .content-presentation p {
    padding: 10px 0 0 0;
  }

  .presentation-block {
    width: 90%;
  }

  #presentation {
    margin: 0;
  }

  .d-flex {
    display: flex !important;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  #text-page-header p {
    font-size: 15px;
    line-height: 17px;
    max-width: 84%;
  }

  .mobile-none{
    display: none;
  }
  

  .block-4videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .col-xl-3 {
    width: 80%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px;
  }

  .block-2videos video {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px;
  }
  
  #video-gallery-1 {
    margin-top: 15px;
  }

  .a-image-gallery {
    margin: 5px 10px;
  }

  .glowing-wrapper-button {
    font-size: 20px;
    padding: 0.6rem 1.2rem;;
  }

  .glowing-wrapper svg {
  height: 20px;
  margin: 0 10px -3px 0;
  }

  .mobile-nav-show {
    top: 26px;
    right: 2px;
  }
  .mobile-texts {
    padding: 15px 0;
  }
  .content-presentation p {
    width: 95%;
  }
  .content-presentation {
    padding: 10px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .info-item img {
    width: 70%;
  }

  .name-mail {
    display: flex;
    flex-direction: column;
  }

  .name-mail div {
  width: 100% !important;
  }

  .contact .php-email-form .form-group {
    padding-bottom: 25px;
  }

  .content-video {
    width: 90%;
    font-size: 7px;
    padding: 13px 0px 13px 15px;
  }

  .content-video {
    background: none;
    top: 60px;
    left: 13px;
  }
  #content-video-1{
    margin: 0;
  }
  .content-video h2{
    width: 50%;
    line-height: 32px;
  }
}

@media (min-width : 300px) and (max-width : 500px) {
    .tel-mail {
      display: flex;
      justify-content: start;
      margin-bottom: 30px;
      flex-wrap: wrap;
      margin: 25px 15%;
  }
}

@media (min-width: 600px) and (max-width: 800px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    width: 80%;
  }
  .block-2videos video {
    width: 75%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px;
  }
  #content-video-1 {
    margin-top: 20px;
    margin-left: 20px;
  }
}

@media (min-width: 600px) {
  #video_1-1 {
    display: none;
  }
  .content-video {
    background: none;
    top: 100px;
  }
}

@media (max-width: 600px) {
  #video_1-1-desktop {
    display: none;
  }
}

@media (max-width: 690px) {

  .content-video {
    width: 93%;
    bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .content-video h2 {
    font-size: 20px;
    line-height: 30px;
    width: 50%;
  }
  .content-video h3 {
    font-size: 15px;
  }
}

@media (min-width: 800px) {
  #buttons-section {
    display: none;
  }
  .myBtn {
    font-size: 10px;
    padding: 5px;
    width: 106px;
    margin-top: 7px;
  }

  header h2 {
    margin-bottom: 6px;
  }
}

@media (max-width: 560px) {
  .content-video {
    width: auto;
    background: rgba(0, 0, 0, 0);
  }
  .content-video h3 {
    font-size: 20px;
  }
}

@media (min-width: 801px) and (max-width: 1200px) {
  .content-video h1 {
    font-size: 1.3rem;
  }
    .content-video h2 {
      font-size: 1.5rem;
      line-height: 35px;
      width: 66%;
  }

  video {
    height: auto;
    width: 100%;
  }

  .block-2videos video {
    width: 80%;
  }

  #text-page-header {
    width: 100%;
  }

  #text-page-header p{
    width: 80%;
  }

    #presentation {
    margin-top: 10px;
  }
  .content-presentation {
    padding: 0;
  }

  .video-container {
    padding: 0;
  }
  #content-video-1 {
    margin-top: 10px;
  }

  .content-video {
    width: 90%;
    font-size: 7px;
    padding: 13px 0px 13px 15px;
  }

  .content-video {
    background: none;
    top: 10%;
  }
  #content-video-1{
    margin: 0;
  }
  #content-video-1 {
    width: 60%;
    margin-top: 80px;
    margin-left: 20px;
  }
}

@media (min-width: 800px) and (max-width: 5000px) {
    .desktop-none{
    display: none;
  }
}

@media (min-width: 1201px) and (max-width: 1920px) {

  #video-1-1 {
  margin: 0;
  }
  

  .content-video h2 {
    font-size: 1.2rem;
  }
  .block-2videos video {
    width: 67%;
  }
  #text-page-header h2{
    font-size: 2rem;
    margin: 20px;
  }
}

@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: 0.3s;
    text-align: center;
    align-content: center;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid black;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    position: absolute;
    top: 20px; /* Position en haut */
    right: 20px; /* Position à droite */
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(22, 23, 24, 0.8);
    z-index: 9996;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    position: absolute;
    top: 20px;
    right: 20px;
  }

}

@media (min-width: 1200px) {
  #video_1-1-desktop video {
    width: 100%;
  }

  .content-video h2 {
    font-size: 1.5rem;
    line-height: 35px;
    width: 66%;
  }

  #content-video-1 {
    width: 60%;
    margin-top: 80px;
    margin-left: 20px;
  }
}

@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #fff;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }

  #video_section h3{
    font-size: 15px;
  }

  #video_video {
    height: auto;
    width: 100%;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}




