/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Green theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 24px !important;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px; 
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: transparent;
  color: #f5ff00;
  text-decoration: none; 
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default; 
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; 
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline; 
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #f5ff00; 
}


.owl-theme .owl-nav{
  position: absolute;
  top: 46%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  height: 0;
}
.owl-theme .owl-nav button.owl-prev, .owl-theme .owl-nav button.owl-next{
  font-size: 36px !important;
}
.owl-theme .owl-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.owl-carousel {
  z-index: 0;
}
.owl-item .item{
  position: relative;
}
.owl-item .item .texte{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 3rem;
  /* max-width: 45%; */
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 50;
  text-align: center;
}

.owl-item .item .copyright{
  position: absolute;
  bottom: -10px; /* Ajustez la distance du bas */
  left: 98%; /* Ajustez la distance de la droite */
  width: max-content;
  /* height : 30px;*/
  max-width: calc(100% - 20px); 
  font-size: 0.8rem;
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  opacity: 1;
  padding: 3px;
  transition: opacity 0.3s ease-in-out;
  transform-origin: 0% 0%;
  transform: rotate(-90deg);
  z-index: 10;
}

.copyright .fa-copyright{
}

.copyright .txt {
  transform: translateY(20px); /* Rotation de -90° et décalage initial vers le bas */
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.copyright:hover {
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.copyright:hover .txt {
  transform: translateY(0);
  opacity: 1;
}

.owl-carousel + .main{
  margin-top: 0;
}

.owl-carousel + .main .home__choose{
  margin-top: 0;
}
@media screen and (max-width: 1920px) {
  .owl-item .item .texte{
    font-size: 2.9rem;
  }
}

@media screen and (max-width: 999px) {
  .owl-item .item .texte{
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px){
  .owl-item .item .texte{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 575px){

  .owl-item .item .texte{
    position: absolute;
    /* top: 45%; */
    font-size: 1.0rem;
    padding: 6px;
  }
  .owl-theme .owl-nav{
    top: 30%;

  }
}