/*******
  GLOBAL
*/




/*********
 HERO 
 *********/

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  z-index: -20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/backgrounds/hero-bg.webp');
  background-repeat: no repeat;
  background-position: center center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.3);
}

.hero-ctr {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
}
.hero-wrapper p {
  color: var(--white);
}
.slogan {
  font-family: 'metropolis-bold';
  font-size: 25px;
  line-height: 30px;
}


/*********
 SERVICES 
 *********/

.select-services-section {
  position: relative;
  height: 544px;
}

.select-services-section .container-fluid,
.select-services-section .row,
.select-services-section .col-sm-12 {
  height: 100%;
  margin: 0;
  padding: 0;
}

.select-services-section .container-fluid {
  padding: 0;
}
.hover-img {
  background-color: #000;
  color: #fff;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.hover-img * {
  box-sizing: border-box;
  transition: all 0.45s ease;
}

.hover-img::before,
.hover-img::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-top: 150px solid rgba(0, 0, 0, 0.5);
  border-bottom: 150px solid rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scaleY(2);
  z-index: 1;
  transition: all 0.3s ease;
}

.hover-img:hover::before,
.hover-img:hover::after {
  transform: scale(1);
  opacity: 1;
}

.hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  backface-visibility: hidden;
}

.hover-img:hover img {
  opacity: 0.7;
}

.hover-img figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  transition-delay: 0.1s;
  font-size: 24px;
  font-family: 'metropolis-bold', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  padding: 0 10px;
  text-align: center;
  line-height: 1.2;
}

.hover-img:hover figcaption {
  opacity: 1;
}

figcaption h3 {
  color: var(--white);
}

/*********
 ABOUT 
 *********/

.about .img-wrapper {
  position: relative;
  padding: 20px;
}

.about .shape-img {
  position: absolute;
  z-index: -10;
  right: -10px;
  bottom: -30%;
}

.about .text-content {
  padding: 20px;
}

.btn-ctr {
  display: flex;
  padding: 20px;
}

/******************
  OCCASION SECTION
*******/

.occasion p {
  margin-bottom: 3rem;
}

.occasion .slick-slider,
.vans .slick-slider,
.trailers .slick-slider {
  margin-bottom: 3rem !important;
}

.occasion .btn-ctr {
  display: flex;
  justify-content: center;
}


/*******************
  CTA BANNER SECTION
*************/
.cta-banner-1 {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.cta-banner-1 {
  background-image: url('../imgs/content/cta-bg-min.webp');
}

.cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-content {
  padding: 80px 20px;
  min-height: 400px;
  background: rgba(0, 0, 0, 0.4);
}

.cta-text {
  max-width: 800px;
}

.cta-text h2,
.cta-text p {
  color: var(--white);
}

.cta-text h2 {
  margin-bottom: 1rem;
}

.cta-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta-banner-1 .btn-ctr {
  display: flex;
  justify-content: center;
  
}

/* Bande des marques */
.brand-bar {
  background-color: var(--black);
  padding: 30px 0;
  overflow-x: auto;
}

.brand-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

.brand-item {
  white-space: nowrap;
}

.brand-name {
  font-family: var(--sofachrome);
  font-size: 24px;
  color: var(--secondary);
}


/* CTA 2*/
.cta-content-2 .col-lg-8 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-content-2 .btn-ctr a {
  align-items: center;
}
