/************/
/* première */
/************/
.front {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100vw;
  margin-bottom: 5vw;
}

.front h1 {
  width: 100vw;
  text-align: center;
  position: absolute;
  top: 15vw;
  font-size: 8vw;
}

.front p {
  --width: min(calc(60vw + 15rem), 90vw);
  position: relative;
  text-align: center;
  margin-top: 27vw;
  margin-bottom: calc(5vw + 1rem);
  width: var(--width);
  font-size: 2rem;
}

.front .arrow {
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 7vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.front .arrow .img {
  height: calc(1vw + 1rem);
  aspect-ratio: 1/1;
}
/******************************/
/* Erasmus Mundus scholarship */
/******************************/
.erasmus {
  margin: 7vw 3vw;
  position: relative;
  text-align: center;
}
.erasmus h3 {
  font-size: 3rem;
  font-weight: var(--light);
}
.erasmus p {
  font-size: 1.7rem;
  font-weight: var(--light);
  margin: 2vw 0;
}
/*********************/
/* CoDaS scholarship */
/*********************/
.codas {
  margin: 7vw 3vw;
  position: relative;
  text-align: center;
}
.codas h3 {
  font-size: 3rem;
  font-weight: var(--light);
}
.codas p {
  font-size: 1.7rem;
  font-weight: var(--light);
  margin: 2vw 0;
}

/****************/
/* contribution */
/****************/
.contribution {
  margin: 7vw 3vw;
  position: relative;
  text-align: center;
}
.contribution h3 {
  font-size: 3rem;
  font-weight: var(--light);
}
.contribution p {
  font-size: 1.7rem;
  font-weight: var(--light);
  margin: 2vw 0;
}

.contribution li {
  list-style: lower-alpha;
  font-size: 2rem;
  font-weight: var(--light);
  text-align: left;
  margin: 0.5vw 0;
  margin-left: calc(48.5vw - 4rem);
}

/*****************/
/* Programme fee */
/*****************/
.fee {
  --couleur: var(--green);
  margin: 7vw 3vw;
  position: relative;
  text-align: center;
}
.fee h3 {
  font-size: 3rem;
  font-weight: var(--regular);
}
.fee p {
  font-size: 2rem;
  font-weight: var(--light);
  margin: 2vw 0;
}

.fee li {
  position: relative;
  font-size: 1.7rem;
  font-weight: var(--light);
  margin: 0.5vw 0;
  margin-left: 1vw;
}

.fee li::before {
  content: "";
  font-size: 0;
  position: absolute;
  top: 0.7rem;
  left: -0.8rem;
  padding: 0.25rem;
  border-radius: 50%;
  background-color: rgb(var(--darkest));
}

.fee div {
  text-align: left;
  margin: 2vw 2vw;
  padding: 2vw 3vw;
  border-radius: 1vw;
}

.fee div h4 {
  font-size: 2rem;
  font-weight: var(--light);
}

.fee div p {
  font-size: 1.7rem;
  font-weight: var(--light);
}

.fee .included {
  background-color: rgba(var(--couleur), 10%);
}
.fee .not-included {
  background-color: rgba(var(--couleur), 20%);
}
