:root {
  font-family: "Source Sans Pro", system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-feature-settings:
    "liga" off,
    "clig" off;
  line-height: 1.5;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  --Main: #0077bf;
  --White: #fff;
  --Secondary-Grey-100: #f5f5f5;
  --Neutrals-300: #dee2e6;
  --Text-Default: #16235f;
  --Text---Secondary: rgba(22, 35, 95, 0.8);
  --Text---Primary: #16235f;
  --Secondary-Button: #f4f5f5;
  --Light-Background-Paper: #fff;
  --Light-Text-Secondary: rgba(1, 16, 18, 0.6);
  --Light-Text-Disabled: rgba(1, 16, 18, 0.38);
  --Neutrals-300: #dee2e6;
  --Common-Grey-400: #bdbdbd;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.15px;
}

h1 {
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Source Sans Pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0.5px;
}

h2 {
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Source Sans Pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0.25px;
}

h3 {
  font-family: "Source Sans Pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0px;
}

h4 {
  font-family: "Source Sans Pro";
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.25px;
}

p {
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Source Sans Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  /* max-width: 1440px; */
  margin: 0px auto;
}

header {
  display: flex;
  padding: 0px 24px 0px 40px;
  align-items: center;
  /*background: var(--White);*/
}

@media only screen and (max-width: 600px) {
  header {
    padding: 0px 16px 0px 8px;
  }
}

header .logo {
  /* display: flex; */
  width: 187px;
  height: 79px;
  padding: 11.98px 7.857px 11.552px 0px;
  align-items: center;
  gap: 8.539px;
  flex-shrink: 0;
}

aside.sidebar ul li a {
  display: flex;
  height: 40px;
  padding: 0px 2px 0px 14px;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  align-self: stretch;
  text-decoration: none;
  color: var(--Text---Secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.15px;
}

aside.sidebar ul li:hover a {
  border-radius: 12px;
  background: var(--Secondary-Grey-100);
  color: var(--Text---Secondary);
  line-height: 175%;
}

aside.sidebar ul li a.active {
  border-radius: 12px;
  background: var(--Secondary-Grey-100);
  color: var(--Text---Primary);
  line-height: 175%;
}

aside.sidebar ul li a:active {
  background: #e9ecef;
  border-radius: 12px;
}

img {
  box-sizing: content-box;
}
