
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hallo {
  padding-top: 0px;
}

.hallo .carousel {
  width: 100%;
  min-height: 60vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hallo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hallo .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hallo .carousel-item:before {
 /* content: "";*/
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hallo .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: -90px;
  z-index: 3;
}

.hallo h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hallo h2 {
    font-size: 30px;
  }
}

.hallo p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hallo h2,
  .hallo p {
    max-width: 60%;
  }
}

.hallo .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hallo .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hallo .carousel-control-prev,
.hallo .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hallo .carousel-control-prev:focus,
.hallo .carousel-control-next:focus {
  opacity: 0.5;
}

.hallo .carousel-control-prev:hover,
.hallo .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hallo .carousel-control-prev,
  .hallo .carousel-control-next {
    width: 5%;
  }
}

.hallo .carousel-control-next-icon,
.hallo .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hallo .carousel-indicators {
  list-style: none;
}

.hallo .carousel-indicators li {
  cursor: pointer;
}



@media (max-width: 768px) {
  .about .about-image .annee-academique {
    min-width: 100px;
    min-height: 100px;
    padding: 15px;
    right: 0;
  }
}

.about .about-image .annee-academique .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .about .about-image .annee-academique .years {
    font-size: 2rem;
  }
}

.about .about-image .annee-academique .text {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
}