
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,400i,700');

:root {
  --website-color-primary: #0b70ce;
  --website-neutral-dark: #333333;
  --website-layout-size-maxwidth: 1400px;
}

body, * {
	font-family: 'Titillium Web', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	padding: 0;
	margin: 0;
}

html, body {
  background: #fbfaf9;
  width: 100%;
  height: 100%;
}

.relative {
	position: relative;
}

.full {
	width: 100%;
	height: 100%;
}

.full-height {
	height: 100%;
}

.hidden {
	display: none;
}

.resizer {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 0px;
	height: 100%;
}

.unselectable {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

#app {
	position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.page {
  position: relative;
  width: 100%;
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.header {
  display: grid;
  grid-template-columns: 200px 1fr;
  position: relative;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  padding: 10px 50px 10px 10px;
  background: #fbfaf9;
  z-index: 10;
  flex-shrink: 0;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  background: url(/images/logo.png) no-repeat center;
  background-size: contain;
  width: 145px;
  height: 20px;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  font-family: Noto Sans;
  line-height: 1.5;
  font-size: 17px;
  font-weight: 480;
  gap: 30px;
  color: #333;
}

.nav .link {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(to right, var(--website-color-primary) 50%, var(--website-neutral-dark) 50%);
  transition: background-position 300ms ease;
  background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav .link:hover {
  background-position: 0%;
}

.section-max-width {
    width: 100%;
    max-width: var(--website-layout-size-maxwidth);
}

.body-large {
    font-size: 18px;
    font-family: Noto Sans;
    line-height: 1.5;
}

td.fitwidth {
  width: 0px;
  white-space: nowrap;
}

.click-through {
  pointer-events: none;
}

.click-all {
  pointer-events: all;
}

.button-blue {
    background-color: #195ee2;
    font-size: 17px;
    fill: white;
    color: white;
    cursor: pointer;
    display: flex;
    transition: 0.3s;
    align-items: center;
    font-weight: bold;
    padding-top: 7px;
    white-space: nowrap;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 7px;
    border: 0;
    border-radius: 30px;
    justify-content: center;
}

@media (max-width: 1400px) {
  .page {
    padding: 0 30px 0 30px;
    box-sizing: border-box;
  }
}


.footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 0 50px 0;
    box-sizing: border-box;
}

.footer .logo-wrapper {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer .footer-logo {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: url(/images/logo.png) no-repeat center;
    width: 145px;
    height: 20px;
}

.footer .links {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 5px 0 20px 0;
    box-sizing: border-box;
}

.footer a, .footer a:visited {
    font-size: 16px;
    font-family: Noto Sans;
    font-weight: 400;
    color: #333;
    text-decoration: none;
}

.footer .line-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
}

.footer .line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.5px;
    background: #333;
    transform: translateY(-50%);
}

.footer .text {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    height: auto;
    padding: 0 0 20px 0;
    box-sizing: border-box;
    font-size: 17px;
    font-family: Noto Sans;
    font-weight: 400;
    color: black;
}

.footer .text-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}