:root {
  --m-purple-medium: #9985ae;
  --m-white_big: #faf9fd;
  --purple-bg-gradient: linear-gradient(
    85deg,
    #2f105b -1.69%,
    #2f105b 22.14%,
    #551da4 67.06%,
    #3e0e48 92.61%
  );
}

.manifesto {
  padding: 50px 0px;
  gap: 30px;
  background: var(--purple-bg-gradient);
}

.manifesto h1 {
  width: 80%;
  font-size: 2rem;
}

.manifesto .nav-link {
  padding: 0;
  text-underline-offset: 10px;
  color: var(--m-purple-medium);
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
}

.manifesto .nav-link:hover {
  color: var(--m-white_big);
}

.manifesto .nav-link.active {
  color: var(--m-white_big);
  text-decoration: underline;
}

.manifesto #manifesto-tabs {
  gap: 15px;
}

@media (min-width: 992px) {
  .manifesto #manifesto-tabs {
    gap: 36px;
  }
}

.manifesto .manifesto-nav-container {
  gap: 60px;
}

.manifesto .manifesto-nav-container .nav {
  width: 100%;
}

@media (min-width: 992px) {
  .manifesto {
    padding: 100px 0px;
    background-image: var(--purple-bg-gradient);
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .manifesto h1 {
    font-size: 2.25rem;
  }

  .manifesto .nav-link {
    line-height: initial;
    font-size: 1.5rem;
    text-wrap: nowrap;
  }

  .manifesto .manifesto-nav-container {
    gap: 40px;
  }

  .manifesto .manifesto-nav-container .nav {
    width: auto;
  }
}
