@-webkit-keyframes topAnimation {
  from {
    transform: translate(0rem, 0);
  }
  to {
    transform: translate(0rem, 3.5rem);
  }
}
@keyframes topAnimation {
  from {
    transform: translate(0rem, 0);
  }
  to {
    transform: translate(0rem, 3.5rem);
  }
}
@-webkit-keyframes bottomAnimation {
  from {
    transform: translate(-11.5rem, 0);
  }
  to {
    transform: translate(0rem, 0);
  }
}
@keyframes bottomAnimation {
  from {
    transform: translate(-11.5rem, 0);
  }
  to {
    transform: translate(0rem, 0);
  }
}
@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
html {
  scroll-behavior: smooth;
}
.bg-black {
  background-color: black;
}
body {
  background-color: black;
  color: white !important;
  font-size: 20px;
}
body .navbar-dark .navbar-nav .nav-link {
  color: white;
}
body section {
  background-color: black;
}
body #home-bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  background: url("../videos/BARBERSHOP.jpg") no-repeat;
  background-size: cover;
}
body #home-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
body .home-content {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body .home-content .home-content-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
body .home-content .home-content-inner .btn-reserve {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  position: relative;
  letter-spacing: 0.15em;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  background: transparent;
  outline: none;
  font-size: 28px;
  color: white;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s;
  border: 1px solid white;
}
body .home-content .home-content-inner .btn-reserve::after {
  border: 0;
  content: "";
  position: absolute;
  height: 40%;
  width: 12%;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
  border-radius: 50%;
  background-color: white;
  top: 3rem;
  left: 13rem;
  -webkit-animation: bottomAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s infinite alternate;
  animation: bottomAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s infinite alternate;
}
body .home-content .home-content-inner .btn-reserve::before {
  content: "";
  position: absolute;
  height: 40%;
  width: 12%;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
  border-radius: 50%;
  border: 0;
  background-color: #e4e4e4;
  top: -0.75rem;
  left: 0.5rem;
  -webkit-animation: topAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s infinite alternate;
  animation: topAnimation 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s infinite alternate;
}
body .home-content .home-content-inner .btn-reserve:hover {
  color: black;
}
body .home-content .home-content-inner .btn-reserve:hover::before {
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 0;
  -webkit-animation: none;
  animation: none;
  top: 0.5rem;
  left: 0.35rem;
}
body .home-content .home-content-inner .btn-reserve:hover::after {
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 0;
  -webkit-animation: none;
  animation: none;
  left: 0;
}
body .home-content .home-content-inner .fa.icone {
  font-size: 30px;
  color: white;
  -webkit-animation: flickerAnimation 2s infinite;
  -moz-animation: flickerAnimation 2s infinite;
  -o-animation: flickerAnimation 2s infinite;
  animation: flickerAnimation 2s infinite;
}
body .home-content .home-content-inner .btn-group-men-women {
  margin-top: 15px;
}
body .home-content .home-content-inner .btn-group-men-women a {
  margin: 0 10px;
  width: auto;
  background-color: white;
  border-radius: 0;
  font-weight: 600;
}
@media (max-width: 768px) {
  body .navbar .social-media {
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
  }
  body .navbar .social-media .nav-item i {
    font-size: 24px;
  }
}
.google-maps iframe {
  width: 100%;
}
.business-hours {
  color: white;
  padding: 40px 14px;
  margin-top: -15px;
  position: relative;
}
.business-hours:before {
  content: '';
  width: 23px;
  height: 23px;
  background: #111;
  position: absolute;
  top: 5px;
  left: -12px;
  transform: rotate(-45deg);
  z-index: -1;
}
.business-hours .title {
  font-size: 20px;
  text-transform: uppercase;
  padding-left: 5px;
  border-left: 4px solid #ffac0c;
  margin-bottom: 15px;
}
.business-hours li {
  line-height: 30px;
  border-bottom: 1px solid #333;
}
.business-hours li:last-child {
  border-bottom: none;
}
.business-hours .opening-hours li.today {
  color: #ffac0c;
}
.button-book {
  background-color: white !important;
  color: black !important;
  border-radius: 0 !important;
  font-weight: bold !important;
}
.button-book:hover {
  background-color: black;
  color: white;
  border: 1px solid white;
}
#Teams .img-thumbnail {
  width: 80%;
}
@media (max-width: 768px) {
  #Teams .col-xs-6 {
    width: 50%;
  }
  #Teams .img-thumbnail {
    width: 100%;
  }
}
.copyrights {
  text-align: center;
  font-size: 14px;
}
.nos-services {
  padding: 5rem 0;
  background-color: #000000;
}
.nos-services .row {
  height: 100%;
}
.nos-services .row h1 {
  text-align: center;
}
.nos-services .row .card {
  background-color: #191919;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.34);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.34);
  height: 100%;
}
.nos-produits {
  padding: 5rem 0;
  background-color: black;
}
.nos-produits .card {
  background-color: transparent;
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.34);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.34);
  height: 100%;
  align-items: center;
}
.nos-produits .card .card-img-top {
  transition: transform 0.2s;
  width: auto;
  height: 100%;
  max-height: 150px;
}
.nos-produits .card .card-img-top:hover {
  transform: scale(1.1);
}
.not-yet {
  opacity: 0;
}
.spikes {
  position: relative;
  background: #171717;
}
.spikes:after {
  content: '';
  position: absolute;
  right: 0;
  left: 0%;
  top: 100%;
  z-index: 10;
  display: block;
  height: 10px;
  background-size: 10px 100%;
  background-image: linear-gradient(135deg, #171717 25%, transparent 25%), linear-gradient(225deg, #171717 25%, transparent 25%);
  background-position: 0 0;
}
.come-in {
  transform: translateY(10px);
  opacity: 0;
  animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 1s;
}
.come-in-bg {
  transform: translateY(10px);
  opacity: 0;
  animation: come-in 0.8s ease forwards;
}
@keyframes come-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .d-xs-none {
    display: none !important;
  }
}
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 5rem 0;
}
.pricing .pricing-item {
  border-bottom: 1px dashed #474a4d;
  width: 100%;
  height: 100%;
  padding: 0 0 15px;
}
.pricing .pricing-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.pricing .pricing-item h4 {
  margin: 0;
  font-size: 16px;
}
@media (max-width: 768px) {
  .hide-xs {
    display: none !important;
  }
}
.divider {
  height: 0.5px;
  background: #000;
  background: -webkit-linear-gradient(left, #ffffff 0%, #323232 50%, #ffffff 100%);
}
.divider.light {
  background: #fff;
  background: -webkit-linear-gradient(left, #5a5a5a 0%, #ffffff 50%, #5a5a5a 100%);
}
.divider.light:before {
  position: relative;
  float: left;
  background: linear-gradient(to right, rgba(100, 100, 100, 0), #646464 50%);
  margin-top: 2px;
  width: 50%;
  height: 0.5px;
  content: "";
}
.divider.light:after {
  position: relative;
  float: right;
  background: linear-gradient(to left, rgba(100, 100, 100, 0), #646464 50%);
  margin-top: 2px;
  width: 50%;
  height: 0.5px;
  content: "";
}
/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
#frequent-questions .accordion-item {
  border-radius: 0;
  border: #000000;
}
#frequent-questions .accordion-button {
  color: #ffffff !important;
  letter-spacing: 0;
  font-size: 18px;
  border-radius: 0 !important;
  border: none;
  position: relative;
  background: #181818;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.32);
}
#frequent-questions .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#frequent-questions .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f0f0f0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#frequent-questions .accordion-body {
  padding: 1.5rem !important;
  background: #1b1e22;
  -webkit-box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.22);
  box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
#frequent-questions button[aria-expanded="true"] {
  color: #ffffff !important;
  background: #181818 !important;
  border-color: #181818 !important;
  -webkit-box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.5) !important;
  -moz-box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0px 7px 24px -19px rgba(0, 0, 0, 0.5) !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
/*--------------------------------------------------------------
# Academy Section
--------------------------------------------------------------*/
.academy-cover-pic {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../images/academy-cover-min.jpg);
  background-position: center center, center center;
  background-size: cover, cover;
  background-repeat: repeat, repeat;
}
#academy-classes {
  background-color: #121212 !important;
}
.bg-faq-cover {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../images/barbershop-min.jpg);
}
.bg-produit-cover {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(../images/cutting-hair-bg.jpg);
}
.bg-positions {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  background-position: right bottom;
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;
}
#section-formateurs {
  background-color: #121212 !important;
}
#section-formateurs .bg-primary {
  background-color: #1b2021 !important;
}
#SoonerOrLater {
  background-color: rgba(0, 0, 0, 0.7);
}
#SoonerOrLater .modal-content {
  background-color: black;
  text-align: center;
  padding: 3rem 0;
}
#SoonerOrLater .modal-content .modal-title {
  text-align: center;
}
#SoonerOrLater .modal-content ul {
  padding: 0;
}
#SoonerOrLater .modal-content video {
  height: auto;
  max-width: 220px;
  margin: 20px 0;
}
#SoonerOrLater .modal-content .btn-white {
  background-color: white;
  border-color: white;
  border-radius: 0;
  color: black;
  font-size: 20px;
  margin-top: 30px;
  padding: 0 5px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}
