@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.bg-dark-blue {
  background-color: #01334d;
}

.color-dark-blue {
  color: #01334d;
}

.bg-light-blue {
  background-color: #72a9c7;
}

.color-light-blue {
  color: #72a9c7;
}

.bg-orange {
  background-color: #f9a40d;
}

.color-orange {
  color: #f9a40d;
}

.bg-white {
  background-color: #ffffff;
}

.color-white {
  color: #ffffff;
}

.color-white-2 {
  color: #ffffffa0;
}

html {
  scroll-behavior: smooth;
}

/* SLIDER */
.embla,
.embla2,
.embla3 {
  position: relative;
  overflow: hidden;
}

.embla__container {
  display: flex;
  height: 80vh;
}

.embla2__container,
.embla3__container {
  display: flex;
}

.embla__slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  min-width: 0;
}

.embla2__slide {
  background-color: #ffffff;
  border: #f9a40d 7px solid;
  min-width: 0;
  color: #01334d;
}

.embla__slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.5);
}

.embla__controls {
  position: absolute;
  width: 100%;
  bottom: 20px;
}

.embla__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.embla__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}
.embla__dot.is-selected {
  background: #f9a40d;
}

/* Global */
h2 {
  font-size: xx-large;
  line-height: 40px;
}

.button {
  font-size: smaller;
  color: #ffffff;
  background-color: #f9a40d;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  display: block;
  max-width: max-content;
  text-transform: uppercase;
  margin-top: 20px;
  transition: background-color 0.3s ease-in-out;
}

.button:hover {
  background-color: #a46b08;
}

.contactbtn:hover > span {
  background-color: #a46b08;
}

.contactbtn > span {
  background-color: #f9a40d;
  padding: 4px 20px 4px 12px;
  border: #01334d 3px solid;
  border-radius: 10px;
  position: relative;
  transition: background-color 0.3s ease-in-out;
}

.contactbtn > span::after {
  content: "➚";
  position: absolute;
  top: -3px;
  right: 4px;
  font-size: large;
}

.contactbtn > img {
  background-color: #72a9c7;
  padding: 4px 12px;
  border: #01334d solid;
  border-width: 3px 3px 0 3px;
  border-radius: 40px 40px 0 0;
}

/* Annimation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-marquee {
  display: flex;
  width: 200%; /* double de la largeur pour boucle continue */
  animation: marquee 15s linear infinite;
}
