body {
  background-color: #f8f8f8;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

main {
  margin-bottom: 120px;
}

header {
  height: 80px;
  background: var(--Background-Container, #FFF);
  color: #000000;
  padding: 10px 50px 10px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
}

.journeys {
  display: flex;
  padding: 0px 50px;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  border-bottom: 1px solid var(--Background-Divider, #E1E1E1);
}

.journey-item {
  display: flex;
  padding: 20px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: var(--Text-Secondary-text, #9B9B9B);

  /* Body/Bold */
  font-family: "Open Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.journey-item__selected {
  color: var(--Text-Main-text, #000);
  border-bottom: 2px solid var(--Main-3, #2C74FF);
}

footer {
  background-color: #0b1c40;
  color: #fff;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;

  color: var(--Main-Main-1, #fff);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer p {
  margin: 0;
  opacity: 0.7;
}

footer a {
  margin: 0;
  opacity: 0.7;
}

.logo {
  margin-top: 4px;
  margin-right: 34px;
}

.logo-text {
  color: var(--Main-Main-1, #fff);
  font-family: "Roboto Condensed";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.navigation {
  display: flex;
  align-items: center;
}

.navigation a {
  text-decoration: none;
  padding: 0px 10px 0px 10px;
  margin-right: 20px;
  color: var(--Primary-White, #000000);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  /* 178.571% */
}

.navigation a.selected {
  opacity: 1;
  color: #fff;
}

.user-info {
  display: flex;
  height: 37px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.user-name {
  display: flex;
  height: 37px;
  padding: 0px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid var(--Primary-Azure, #2c74ff);
}

.user-info button {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;

  color: var(--Primary-White, #000000);

  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  /* 178.571% */
}

.icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin: 6.5px;
}

.footer-links {
  display: flex;
  align-items: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links .separator {
  margin: 0 15px;
  color: var(--Main-Main-1, #fff);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.7;
}