/* root */

:root {

  --font-sans-serif: 'Stem', sans-serif;

  --color-blue-light:  #0575ff;
  --color-blue-medium: #6395c3;
  --color-blue-dark:   #163c77;

  --color-gray-light:  #f2f3f7;
  --color-gray-medium: #dddddd;

  --color-red-korus:   #b40d1f;
  --color-blue-korus:  #446aa5;

}


/* main */

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

html {
  font-size: 18px;
}

body {
  font-family: var(--font-sans-serif);
  font-weight: 200;
  letter-spacing: .125em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans-serif);
  font-weight: 300;
  letter-spacing: .125em;
}

.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6 {
  font-family: var(--font-sans-serif);
  font-weight: 300;
  letter-spacing: .125em;
}

.uk-heading-2xlarge, .uk-heading-xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small  {
  font-family: var(--font-sans-serif);
  font-weight: 100;
  letter-spacing: .125em;
}

.uk-button {
  font-family: var(--font-sans-serif);
}


/* custom */

header img {
  height: 100px;
}


/* fixes */

.uk-text-large {
  font-weight: 100;
}


.uk-list > li:nth-child(n+2), .uk-list > li > ul {
  margin-top: 0;
}

.uk-nav-primary > li > a {
  font-size: 1.25rem;
}



/* media query */

@media (max-width: 640px) {

  body {
    font-weight: 300;
  }

  .uk-text-large {
    font-weight: 200;
  }

  .uk-heading-small  {
    font-family: var(--font-sans-serif);
    font-weight: 200;
    letter-spacing: .125em;
  }

  header .uk-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  header img {
    width: 100%;
    height: auto;
  }

  #content {
    padding-left: 0;
    padding-right: 0;
  }

  #content > .uk-grid-large > .uk-grid-margin {
    margin-top: 0;
  }

  #content .uk-padding-large {
    padding-top: 60px;
  }

  #contact {
    padding: 40px 30px 0 70px;
  }

}

/* marquee */

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee .line {
  display: inline-block;
  animation: marquee 60s linear infinite;
}

.marquee .line {
  display: inline-block;
  animation: marquee 60s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}


