html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  font-size: 1.1rem;
  color: #000000;
  background-color: #ffffff;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#home {
  opacity: 0;
  animation: fadein 1.25s ease-out forwards;
  padding-bottom: 70px;
}
@media (max-width: 640px) {
  #home {
    padding-top: 100px;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.size-1 {
  font-size: 0.8em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: #000000;
}

h1 {
  font-size: 2em;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.5em;
}

p {
  margin-bottom: 20px;
}

strong {
  font-weight: 600;
}

a {
  color: #000000;
  transition: color 0.25s;
}
a:link, a:visited {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}
a:hover {
  text-decoration: none;
  color: #000000;
}

img, video {
  max-width: 100%;
  height: auto;
}

.left-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 20px;
  background: #ff6948;
  z-index: 1000;
}
@media (min-width: 640px) {
  .left-bar {
    position: fixed;
    height: auto;
    bottom: 0;
  }
}

@keyframes sizein {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
* + .uk-grid-margin-small,
.uk-grid + .uk-grid-row-small,
.uk-grid + .uk-grid-small,
.uk-grid-row-small > .uk-grid-margin,
.uk-grid-small > .uk-grid-margin {
  margin-top: 20px !important;
}

.header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.uk-subnav {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
}
.uk-subnav li {
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1;
}
.uk-subnav li a {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  color: #000000 !important;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  box-shadow: none !important;
}
.uk-subnav li a[aria-selected=true] {
  text-decoration: none;
  color: #ff6948 !important;
}
@media (max-width: 640px) {
  .uk-subnav {
    justify-content: flex-start;
  }
}

.langnav {
  min-width: 80px;
}

.uk-container {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
@media (max-width: 640px) {
  .uk-container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
