/* Général */

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: #f1f1f1;
}
/* Nav */
/* DropDown anim */
/* Change this breakpoint if you change the breakpoint of the navbar */

@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

/* effet js*/
#main-nav {
  transition: all 0.3s ease;
}
/* Before the scroll down */
#main-nav .navbar-brand {
  /* font-family: "Kaushan Script"; */

  font-size: 24px;
}

.navbar a {
  font-size: 18px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}
/* After the scroll down */
.navbar.opaque .navbar-brand {
  font-size: 22px !important;
  transition: all 0.4s ease;
}

.navbar.opaque a {
  font-size: 17px;
}

.navbar li {
  height: 40px;
}
.navbar a:hover {
  color: #ffc107 !important;
  /* border-bottom: solid 3px #00a8e7; */
  /* background-color: rgba(0, 0, 0, 0.534);
  border-radius: 3px; */
}

/* Header */

header {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

/* Mettre la banner sur le dessus de la vidéo et l'overlay */
header .container-fluid {
  position: relative;
  z-index: 2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}

/* @media (pointer: coarse) and (hover: none) {
  header {
    background: url("#") black
      no-repeat center center scroll;
  }
  header video {
    display: none;
  }
} */

.logohero {
  width: 340px;
  
}

.social-icons {
  font-size: 42px;
}

.social-icons a {
  color: white;
}

.social-icons i {
  transition: all 0.4s;
}

.social-icons .fa-facebook:hover {
  color: #3c5a99;
}

.social-icons .fa-youtube:hover {
  color: #fd0100;
}

.social-icons .fa-linkedin:hover {
  color: #0077b5;
}

/* ------------------ Animations ------------------------- */

/* Animations */

.pulse-light {
  box-shadow: 0 0 0 0 #fff;
  animation: pulse 1.3s infinite;
}

.pulse-dark {
  box-shadow: 0 0 0 0 #333;
  animation: pulse 1.3s infinite;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.01);
  }
}
/* ---------------- Médias Queries ------------------------ */

@media screen and (max-width: 768px) {
  .hero-text {
    font-size: 40px;
  }
}

@media screen and (max-width: 500px) {
  .hero-text {
    font-size: 32px;
  }

  .under-text {
    font-size: 20px;
  }
}
