
.nav-item a{
      font-size: 50px;
      color: #fff;
  }


  .nav-item a:hover{
      color: #D3B973;
  }

  .navbar-nav {
          background-color: rgba(0, 0, 0, 0);
          padding: 10px;
          margin-top: 0px;
      }


.loader-wrapper {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: #000;
display: flex;
justify-content: center;
align-items: center; 
z-index: 15;
}

.loader {
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	border: 4px solid #fff;
	animation: loader 2s infinite ease;
	z-index: 15;
}

.loader-inner {
	vertical-align: top;
	display: inline-block;
	height: 100%;
	width: 100%;
	background-color: #fff;
	animation: loader-inner 2s infinite ease-in;
	z-index: 15;
}

.navbar
{
   position: fixed;
   width: 100%;
   height: 140px;
   top: 0px;
   background-color: rgba(0, 0, 0, 0.6);
   z-index: 10;
   border-bottom: 10px;
   border-bottom-color: #FFF;
   margin-top: 0px !important;
}

.texte_centrer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer {
	background-color: #000;
	height: 250px;
	padding-top: 2%;
}

.footer h5{
	color: #FFFFFF;
	text-align: center;
}

.footer a{
	color: #FFFFFF;
}

.footer a:link{
	text-decoration: none;
}
.footer a:hover{
	color: #D3B973;
}

.footer p{
	padding-top: 3%;
	color:#FFFFFF;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
}

.image{
	width: 100%;
	height: 100%;
}

.image img{
	-webkit-transition: all 1s ease; /*Safari et Chrome*/
	-moz-transition: all 1s ease; /*Firefox*/
	-ms-transition: all 1s ease; /*Internet Explorer 9*/
	-o-transition: all 1s ease; /*Opera*/
	transition: all 1s ease; 
}
.image:hover img{
	-webkit-transform: scale(1.25); /*Safari et Chrome*/
	-moz-transform: scale(1.25); /*Firefox*/
	-ms-transform: scale(1.25); /*Internet Explorer 9*/
	-o-transform: scale(1.25); /*Opera*/
	transform: scale(1.25); 
	position: relative;
	z-index: 10;
}
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 200px;
  border: 1px solid #f1f1f1;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #000;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: #D3B973;
  color: white;
  transform: rotateY(180deg);
}