@charset "utf-8";

:root {
  --widthMax: 1280px;
  --widthUsko: 720px;
  --bgPage: white;
  --bgPageMediumDark: hsl(40 10% 90%);
  --bgPageDark: hsl(40 10% 75%);
  --bgPageDark2: hsl(40 10% 35%);
  --accent: hsl(204, 74%, 48%);
  --accent2: hsl(91 50% 40%);
  --accent3: hsl(43 94% 54%);

  --shadow-color: 0 0% 30%;
  --shadow-elevation-low:
    0px 0.3px 0.3px hsl(var(--shadow-color) / 0.1),
    0px 0.5px 0.6px -1.2px hsl(var(--shadow-color) / 0.1),
    0px 1.2px 1.3px -2.5px hsl(var(--shadow-color) / 0.1);
  --shadow-elevation-medium:
    0px 0.3px 0.3px hsl(var(--shadow-color) / 0.11),
    0px 1px 1.1px -0.8px hsl(var(--shadow-color) / 0.11),
    0px 2.5px 2.8px -1.7px hsl(var(--shadow-color) / 0.11),
    0px 6px 6.8px -2.5px hsl(var(--shadow-color) / 0.11);
  --shadow-elevation-high:
    0px 0.3px 0.3px hsl(var(--shadow-color) / 0.1),
    0px 1.7px 1.9px -0.4px hsl(var(--shadow-color) / 0.1),
    0px 3.3px 3.7px -0.7px hsl(var(--shadow-color) / 0.1),
    0px 5.3px 6px -1.1px hsl(var(--shadow-color) / 0.1),
    0px 8.5px 9.6px -1.4px hsl(var(--shadow-color) / 0.1),
    0px 13.3px 15px -1.8px hsl(var(--shadow-color) / 0.1),
    0px 20.3px 22.8px -2.1px hsl(var(--shadow-color) / 0.1),
    0px 29.9px 33.6px -2.5px hsl(var(--shadow-color) / 0.1);

  --wSpace: 20px;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scrollbar-gutter: stable;
  scroll-behavior: auto;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: var(--bgPage);
  font-family: "Barlow", sans-serif;
  padding: 0;
  margin: 0;
  background-size: 400px auto;
  background-attachment: scroll;
  overflow-y: auto;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Condensed", sans-serif;
  color: black;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

h1 {
  font-size: 1.7rem;
  text-shadow: 1px 1px 0 #fff;
}

h2 {
  font-size: 1.5rem;
  text-shadow: 1px 1px 0 #fff;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 300;
}

p {
  color: black;
  font-size: 1em;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.9rem;
}

p a {
  color: #0077cc;
  text-decoration: none;
  border: 2px solid #ddd;
  border-top-color: #ffffff;
  border-left-color: #f6f6f6;
  border-right-color: #c8c8c8;
  border-bottom-color: #bfbfbf;
  border-radius: 3px;
  padding: 0px 5px;
  transition: 0.2s ease;
}

p a:hover {
  color: #005999;
  border-top-color: #bfbfbf;
  border-left-color: #c8c8c8;
  border-right-color: #f6f6f6;
  border-bottom-color: #ffffff;
}

.smallprint {
  font-size: 0.8em;
  opacity: 0.8;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  font-weight: 400;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5rem;
  padding: 0.3rem 0;
}

strong {
  font-weight: 500;
}

.onlyDesk {
  display: flex;
}

.onlyMob {
  display: none !important;
}
.main {
  max-width: var(--widthUsko);
  margin: 0px auto;
  padding: 20px 20px 20px 20px;
}
.logo {
  margin-bottom: 40px;
}
.links {
  max-width: var(--widthUsko);
  margin: var(--wSpace) auto;
  padding: 0px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.links a {
  background-color: var(--accent);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  display: block;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: var(--shadow-elevation-high);
  text-decoration: none;
  flex: 1 1 auto;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  text-shadow: 0.5px 0.5px 2px hsla(0, 0%, 0%, 0.5);
}

.links a:hover {
  background-color: color-mix(in srgb, var(--accent) 80%, black);
  box-shadow: var(--shadow-elevation-low);
  transform: translateY(2px);
}
.map {
  max-width: var(--widthMax);
  margin: 0px auto;
}
.map img {
  max-width: 100%;
}
@media only screen and (max-width: 1080px) {
}

@media only screen and (max-width: 780px) {
  .onlyDesk {
    display: none !important;
  }

  .onlyMob {
    display: flex !important;
  }
  .links {
    padding: 0px 20px;
  }
}

@media only screen and (max-width: 340px) {
}
