@charset "UTF-8";

@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-Light.otf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-Regular.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-SemiBold.otf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

*, a, img {
  box-sizing: border-box;
  border: none;
  outline: none;
}

html, body {
  width: 100%;
  height: 100%;
  font-size: 10px;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Axiforma', sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  position: relative;
}

a {
  display: block;
  color: #07838f;
  text-decoration: none;
}

a:focus {
  outline: 3px solid #cc0000;
  outline-offset: 3px;
}

.splash-wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  min-height: 100%;
  justify-content: center;
}

.splash--container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: stretch;
  width: 100%;
  position: absolute;
  top: 0;
  margin: 30px auto;
  transform: none;
}

.splash--box {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1rem;
  border: 3px solid #07838f;
  background: #fff;
}

.splash--image {
  width: 100%;
  height: auto;
}

.splash--link {
  text-align: center;
  background-color: #07838f;
  align-items: center;
  display: flex;
  flex-flow: column-reverse;
}

.splash--link-primary {
  background-color: #9d2f87;
}

.splash--link:hover .splash--label,
.splash--link:active .splash--label {
  text-decoration: underline;
}

.splash--label {
  color: white;
  display: inline-block;
  font-size: 1.4rem;
  margin: 10px 0;
  width: min-content;
}

.logo {
  display: block;
  width: 100%;
  padding: 20px 30px 15px;
  text-align: center;
}

.logo img {
  height: auto;
  width: auto;
  max-height: 110px;
  max-width: 100%;
}

.tourists .logo img {
  padding-bottom: 20px;
}

.site--links {
  display: block;
  padding: 1rem;
  text-align: center;
  margin-top: auto;
}

.splash-body > img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.button {
  display: inline-block;
  padding: 15px 25px;
  background: #07838f;
  color: #fff;
}

.button.primary:hover {
  background: #208f9a;
}

.splash--box.tourists a.button.primary {
  background: #e5f2f3;
  color: #000;
  border: 1px solid #07838f;
}

nav.links {
  min-width: 44px;
  min-height: 44px;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

nav.links li {
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

nav.links li:first-child {
  border-top: 1px solid;
}

nav.links a {
  position: relative;
  padding: 15px 30px;
  line-height: 1;
  hyphens: auto;
}

nav.links a:hover {
  background: #e6f3f4;
  text-decoration: underline;
  color: #067984;
}

.site--links a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.site--links a.button {
  margin-bottom: 15px;
}

.site--links a.language {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.site--links a.language:hover {
  text-decoration: underline;
}

.site--links a.flag--en:before {
  content: "";
  width: 24px;
  height: 12px;
  background-image: url('../images/flags/en.png');
}

.site--links a.arrow-right:after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url('data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMzIgMzIiPgogICAgPHBhdGggZmlsbD0iIzA3ODM4RiIgZD0iTTggNC42NGMtMC45Ni0wLjk2LTAuOTYtMi40IDAtMy4yIDAuOTYtMC45NiAyLjQtMC45NiAzLjIgMGwxMi44IDEyLjk2YzAuOTYgMC45NiAwLjk2IDIuNCAwIDMuMmwtMTIuOCAxMi45NmMtMC45NiAwLjk2LTIuNCAwLjk2LTMuMiAwLTAuOTYtMC45Ni0wLjk2LTIuNCAwLTMuMmwxMC40LTExLjM2LTEwLjQtMTEuMzZ6Ij48L3BhdGg+Cjwvc3ZnPgo=')
}

@media only screen and (min-width: 768px) {
  .splash--container {
    margin: 0 auto;
    transform: none;
    position: relative;
  }

  .splash--box {
    width: 350px;
    max-width: 100%;
    margin: 30px 25px;
  }

  .splash--image {
    height: 200px;
  }

  .splash--label {
    font-size: 2rem;
  }

  .logo {
    padding: 40px 20px 30px;
  }

  .logo img {
    max-width: 190px;
  }

  body {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }

  .splash--label {
    font-size: 1.4rem;
  }
}

.h-visually-hidden {
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
