html {
  width: 100%;
  font-size: 12px; }

body {
  width: 100%;
  font-family: 'Lato', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh; }
  @media (max-width: 767.98px) {
    body {
      padding-top: 78px; } }
#header {
  padding: 20px;
  position: relative;
  background: white;
  z-index: 20; }
  @media (max-width: 767.98px) {
    #header {
      padding: 10px;
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      box-shadow: 0 4px 4px 0 #00000027; } }
  #header .logo-wrapper {
    display: flex;
    width: 250px; }
    @media (max-width: 767.98px) {
      #header .logo-wrapper {
        width: 200px; } }
    #header .logo-wrapper .logo {
      display: flex; }
    #header .logo-wrapper > a, #header .logo-wrapper img {
      width: 100%; }
    @media (min-width: 768px) and (max-width: 991.98px) {
      #header .logo-wrapper {
        margin-left: auto;
        margin-right: auto; } }
  #header #menu-toggle {
    color: #3f3a5f;
    border-radius: 4px;
    padding: 4px;
    align-self: center;
    margin-left: auto;
    display: none;
    margin-top: -3px; }
    #header #menu-toggle.active {
      background-color: #eee; }
    @media (max-width: 767.98px) {
      #header #menu-toggle {
        display: block; } }
    #header #menu-toggle svg {
      width: 35px;
      height: 35px; }
      @media (max-width: 767.98px) {
        #header #menu-toggle svg {
          width: 30px;
          height: 30px; } }
  #header .menu-wrapper .menu-item {
    font-size: 16px; }
    #header .menu-wrapper .menu-item a {
      text-decoration: none;
      color: #3f3a5f; }
  #header #desktop-menu {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    user-select: none; }
    @media (min-width: 768px) and (max-width: 991.98px) {
      #header #desktop-menu {
        margin-right: auto;
        margin-top: 5px; } }
    #header #desktop-menu .menu-item {
      display: inline-flex;
      margin-left: 30px;
      position: relative; }
      #header #desktop-menu .menu-item a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #3f3a5f;
        visibility: hidden;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s; }
      #header #desktop-menu .menu-item a:hover:before, #header #desktop-menu .menu-item.active a:before {
        visibility: visible;
        -webkit-transform: scaleX(1);
        transform: scaleX(1); }
  #header #mobile-menu {
    position: absolute;
    top: 100%;
    z-index: 20;
    background: white;
    width: 100%;
    left: 0;
    box-shadow: 0 4px 4px 0 #00000027; }
    @media (min-width: 768px) {
      #header #mobile-menu {
        display: none; } }
    #header #mobile-menu .menu-item {
      text-align: center;
      border-bottom: 1px solid #f1f1f2; }
      #header #mobile-menu .menu-item:nth-child(2), #header #mobile-menu .menu-item:first-child {
        border-top: 1px solid #f1f1f2; }
      #header #mobile-menu .menu-item:nth-child(odd) {
        border-right: 1px solid #f1f1f2; }
      #header #mobile-menu .menu-item a {
        display: flex;
        justify-content: center;
        padding: 20px 0; }
      #header #mobile-menu .menu-item.active {
        background-color: #f1f1f2; }

#content {
  flex: 1;
  display: flex;
  flex-direction: column; }

.content-header {
  background-color: #3f3a5f;
  color: white;
  padding: 20px 0; }
  .content-header h1 {
    margin-bottom: 0; }

#footer {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  background: #f1f1f2;
  clear: both; }
  #footer #values-title {
    font-size: 14px; }
  #footer div {
    margin-left: auto;
    margin-right: auto; }

.content-top-margin {
  margin-top: 20px; }
