body,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #000;
  color: #fff;
}

.nav-link {
  color: #ffffff !important;
}

.nav-link:hover,
.nav-link:active {
  color: #ff1e5c !important;
}

nav {
  background-color: rgba(0, 0, 0, 1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.section {
  padding: 0;
  position: relative;
}

.bg-dark-section {
  background-color: #1c1c1c;
}

.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.red1 {
  background: #a12e38;
}

.red2 {
  background: #cf3b48;
}

.blue1 {
  background: rgb(80, 92, 193);
}

.blue2 {
  background: rgb(80, 103, 193);
}

.green1 {
  background: #daa520;
}

.green2 {
  background: #f4c220;
}

.grey {
  color: #5b5b5b;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: url('./img/vdo_bg.jpg') center center / cover no-repeat;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./img/vdo_bg.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
}

.vdoplayer {
  background-color: #000;
}

.vignette-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
  flex-wrap: wrap;
}

.vignette {
  width: 120px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.3s;
  opacity: 0.6;
}

.vignette:hover {
  opacity: 1;
}

.vignette.active {
  border-color: #007bff;
  opacity: 1;
}

.vignette img {
  width: 100%;
  display: block;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

h1 {

  font-weight:100;
}

h3 {
  font-size: 30px;
  margin-bottom: 60px;
  padding-bottom: 0;
  font-weight: 100;
}

.fade-transition {
  animation: fadeIn 1s ease-out both;
}

.p-6 {
  padding: 5rem !important;
}

.p-8 {
  padding: 5rem 8rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.left {
  font-size: 22px;
  word-break: break-word;
}

.rubrique {
  padding: 0 40px 30px 0;
}

.rubrique p {
  line-height: 25px;
}

.form-control,
.form-control:focus {
  border: 0;
  padding: 5px 0;
  width: 100%;
  line-height: 25px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 35px;
  text-indent: 10px;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid;
  box-shadow: none;
}

.form-control::placeholder {
  color: #fff;
  opacity: 1;
  /* Firefox */
}

.form-control:focus::placeholder {
  opacity: 0;
  /* Firefox */
}

.form-control:focus::-ms-input-placeholder {
  opacity: 0;
  /* Edge 12 -18 */
}

.form-control ::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #fff;
}

a.mail:link,
a.mail:visited,
a.tel:link,
a.social,
a.nav-link:link {
  color: #fff;
  text-decoration: none;
}

a.mail:hover,
a.tel:hover,
a.social:hover,
a.nav-link:hover {
  color: #ff1e5c;
  text-decoration: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .p-8 {
    padding: 1rem !important;
  }

  .p-6 {
    padding: 1rem !important;
  }


}