.brand {
  font-size: 5rem;
  font-weight: bolder;
  text-transform: uppercase;
  color: var(--bs-primary);

	letter-spacing: -0.06em;
	font-weight: 900;
	line-height: 0.6;
	font-style: italic;

}
.lead {
  font-size: 4rem;
  font-weight: bolder;
  line-height: 0.8em;
}

.dnd-box {
  margin-left: auto !important; margin-right: auto !important;
  display: grid;
  height: 12rem;
  width: 12rem;
  margin: 1rem;
  border: 4px var(--bs-secondary) dashed;
  align-self: center;
  justify-content: center;
}

.drop-shadow {
  filter: drop-shadow(0px 0px 16px rgba(0,0,0,0.2));
}

.example {
  transform: scale(1, 1);
  opacity: 1;
  transition:all 0.6s ease-in-out;
}
.example:hover {
  transform: scale(1.01, 1.01);
  z-index: 500;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.2));
}
.carousel-item-prev:not(.carousel-item-end), .active.carousel-item-start {
  opacity:0;
}

.carousel-item-next:not(.carousel-item-start), .active.carousel-item-end {
  opacity:0; 
}

/* ------------------------ externe ----------------------------------------- */
/*form styles*/
#msform {
  min-height: 36rem;
}
#msform:focus {
  outline: 2px dashed var(--bs-primary);
  outline-offset: 8px;
}

#msform fieldset {
  box-sizing: border-box;
  width: 80%;
  margin: 0 10%;
  /*stacking fieldsets above each other*/
  position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#msform input, #msform textarea {
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  width: 33.33%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: white;
  border-radius: 3px;
  margin: 0 auto 5px auto;
  border: 1px rgba(0,0,0,0.1);
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 4px;
  border: 1px rgba(0,0,0,0.1);
  background: white;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
  background: var(--bs-primary);
  color: white;
}
