/* Notre Objectif */
.notre-objectif {
  width: 100%;
  max-width: 1248px;
  margin-inline: auto;
  margin-top: 48px;
  margin-bottom: 0;
  background-color: #1e386d;
  border-radius: 32px;
  min-height: 271px;
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}

.notre-objectif__inner {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.notre-objectif__circle-outline {
  position: absolute;
  left: 58px;
  top: -14px;
  width: 45px;
  height: 45px;
  border: 9px solid #019255;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.notre-objectif__circle-dot {
  position: absolute;
  right: 91px;
  bottom: 39px;
  width: 19px;
  height: 19px;
  background-color: #019255;
  border-radius: 50%;
  pointer-events: none;
}

.notre-objectif__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.notre-objectif__title {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 57.06px;
  font-weight: 500;
  line-height: 1.2;
  color: #f8f6f2;
  flex-shrink: 0;
}

.notre-objectif__line {
  width: 130px;
  height: 2px;
  background-color: #f8f6f2;
  flex-shrink: 0;
}

.notre-objectif__text {
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
  color: #f8f6f2;
  max-width: 555px;
  font-family: 'Satoshi';
}

@media (max-width: 1279px) {
  .notre-objectif__content {
    gap: 24px;
  }
}

@media (max-width: 639px) {
  .notre-objectif {
    margin-top: 32px;
    margin-bottom: 32px;
    min-height: 0;
    padding: 48px 24px;
    border-radius: 24px;
  }

  .notre-objectif__circle-outline {
    left: 24px;
    top: -6px;
    width: 36px;
    height: 36px;
    border-width: 6px;
  }

  .notre-objectif__circle-dot {
    right: 16px;
    bottom: 16px;
    width: 14px;
    height: 14px;
  }

  .notre-objectif__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .notre-objectif__title {
    font-size: 32px;
  }

  .notre-objectif__line {
    width: 80px;
  }

  .notre-objectif__text {
    font-size: 16px;
  }
}
