:root {
  --primary-color: #1C1E1B;
  --paragraph-color: #131313;
  --secondary-color: #EEEEEE;
  --secondary-paraphraph-color: #DEDEDE;
  --gap: 1.5rem;
  --mobile-breakpoint: 768px;
  font-family: Bricolage Grotesque;
  --bold-text: 700;
  --mid-text: 550;
  --light-text: 350;
  --big-text: 40px;
  --normal-text: 24px;
}

.WIG-bold {
  font-weight: var(--bold-text);
  font-size: 250px;
}


.WIF-title-card {
  align-items: center;
  text-align: center;
  font-weight: var(--bold-text);
  font-size: clamp(30px, 2.5vw, 60px);
  margin-bottom: 0;
  margin-top: 2rem;
}

.WIF-options {
  position: absolute;
  font-weight: var(--mid-text);
  font-size: 24px;
  margin-block: 0;
  color: var(--secondary-color);
  top: 375px;
  line-height: 50px;
  margin-left: 1.25rem;
}



.WIF-options-paragraph {
  position: absolute;
  font-weight: var(--light-text);
  font-size: 20px;
  margin-block: 0;
  color: var(--secondary-color);
  top: 425px;
  line-height: 25px;
  width: 275px;
  margin-left: 1.25rem;
}



.WIF-title-paragraph-text {
  margin-top: 0;
  line-height: 135%;
  width: clamp(300px, 60vw, 500px);
  justify-self: center;
  text-align: center;
  justify-items: center;
  text-wrap: pretty;
  word-wrap: break-word;
}

.WIF-grid-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-items: center;
  margin-top: 2rem;
  position: relative;
}

.meet-the-team-images {
  max-width: 420px;
  object-fit: cover;
  border-radius: 15px;
}


body {
  margin: 0;
}

.nav-logo {
  width: min(20rem, 6rem);
  margin: min(2rem, 1rem);
}

#header {
  justify-items: center;
  margin-top: 15dvh;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  position: sticky;
  top: 0;
  background-color: white;
}


.nav-links {
  display: flex;
  gap: var(--gap);
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: gray;
}

#info-baner {
  background-color: #72B135;
  color: var(--secondary-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-block: 1rem;
  text-decoration: none;
}

#info-baner a {
  color: var(--secondary-color);
  margin-right: 0.5rem;
  text-decoration: none;
}

#info-baner a:hover {
  text-decoration: underline;
  text-decoration-color: var(--secondary-color);
}

#close-banner {
  background-color: transparent;
  outline: none;
  border-style: none;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1rem;
}

.nav-bar-doesnt-work {
  position: sticky;
  top: 0;
  z-index: 999;
}

@media (width < 1400px) {
  .WIF-grid-div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .meet-the-team-images {
    max-width: 325px;
  }
}