:root {
  --white: #fff;
  --black: #000;
  --grey: #cfcfcf;
  --dark-grey: #a5a4a4;
  --light-grey: #c3c2c2;
  --dark-green: #1e3932;
  --bg-green: #d4e9e2;
  --bg-light-green: #f1f8f6;
  --bg-grey: #f3f1e7;
  --green: #008248;
  --green-hover: #029c57;
  --star-clr: #d3a021;
}

.grid-container {
  grid-template-columns: 50% 50%;
  width: 95%;
}

.test {
  grid-column: 1 / 3;
  border-bottom: none;
}

.grid-container .test {
  border-bottom: none;
  margin-bottom: 1em;
}

.grid-container-info {
  width: 95%;
}

/* --------- FOOTER ---------------- */

.footer-flex a:link,
.footer-flex a:visited {
  display: none;
}
.footer-flex-big {
  flex-direction: column;
  width: 95%;
}
.footer-flex {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.dropdown-arrow {
  display: inline-block;
  width: 24px;
  cursor: pointer;
  border-radius: 50%;
  border: none;
}

.dropdown-arrow:hover {
  background-color: var(--light-grey);
  transition: 200ms ease-out;
}

.extra-info {
  flex-direction: column;
  gap: 1em;
}
.extra-info a:link,
.extra-info a:visited {
  padding: 0;
  border-right: none;
}
