:root {
  --color-blue-dark: #27444C;
  --color-blue-light: #2c545e;
  --color-blue-lighter: #a0b2b6;
  --color-red: #a6465f;
  --font-default: 'Outfit';
  --font-header: 'Cormorant Infant';
  --bs-body-font-size: 16px;
  --section-padding-x: 20px;
  --section-narrow-padding-x: 20px;
  --nav-height: 90px;
}
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
html,
body {
  width: 100vw;
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-header);
}
.btn-primary {
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-padding-y: 0.75rem;
  background-color: var(--color-red);
  border-radius: 3px;
  color: white;
  border: unset;
  font-weight: bold;
}
.btn-primary:hover {
  background: var(--color-red);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}
.bi:before {
  vertical-align: -0.3rem;
}
body {
  font-family: var(--font-default), sans-serif;
  background-color: var(--color-blue-dark);
}
body > nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--nav-height);
  padding: 0 var(--section-padding-x);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-blue-lighter);
}
body > nav figure {
  height: 50px;
  margin: 0;
}
body > nav figure img {
  height: 100%;
}
body > nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
body > nav ul li {
  margin: 0 20px;
  padding: 0;
}
body > nav ul li a {
  display: block;
  color: unset;
  text-decoration: none;
  padding: 10px;
}
body > nav ul li a:hover {
  border-bottom: 2px solid var(--color-blue-dark);
}
body > nav ul li.active a {
  font-weight: bold;
}
body > nav ul li:last-child a {
  border: 1px solid var(--color-blue-dark);
  border-radius: 3px;
  font-weight: bold;
}
body > nav ul li:last-child a:hover {
  background-color: var(--color-blue-dark);
  color: var(--color-blue-lighter);
}
body > nav > button {
  display: block;
  -webkit-appearance: none;
  border: unset;
  outline: unset;
  background: unset;
  color: var(--color-blue-dark);
  margin: 0;
  padding: 10px;
}
body > nav > button span.bi {
  font-size: 30px;
}
body > nav.menu-visible {
  height: 100vh;
  background: var(--color-blue-light);
  align-content: flex-start;
}
body > nav.menu-visible ul {
  display: flex !important;
  order: 3;
  width: 100%;
  flex-direction: column;
}
body > nav.menu-visible ul li a {
  color: var(--color-blue-lighter);
}
body > header {
  color: var(--color-blue-dark);
  padding: 90px var(--section-padding-x) 20px var(--section-padding-x);
  background-color: var(--color-blue-lighter);
  background-image: url('/img/home_header_oma.png');
  background-repeat: no-repeat;
  background-position: right -200px bottom -100px;
  background-size: 600px;
}
body > header div.hero {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  min-height: 500px;
}
body > header div.hero > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body > header div.hero > div h1 {
  font-size: 3rem;
  word-spacing: 100vw;
  line-height: 1;
  font-weight: 300;
}
body > header div.hero > div h2 {
  font-family: unset;
  font-weight: 300;
  font-size: 1.5rem;
}
body > header div.hero > div ul {
  list-style-type: '\2713';
  margin: 0;
  padding: 20px;
  max-width: 60%;
}
body > header div.hero > div ul li {
  padding: 5px 0 5px 5px;
}
body > header div.hero > div div.buttons {
  display: flex;
  flex-direction: column;
  max-width: 50%;
  min-width: 200px;
  gap: 10px;
}
body > header div.hero > div div.buttons a.btn {
  font-weight: bold;
}
body > header div.hero > div div.buttons a.btn.btn-link {
  color: var(--color-blue-dark);
  text-decoration: unset;
}
body > article:not(.slider) {
  padding: 0 var(--section-padding-x);
  color: var(--color-blue-lighter);
}
body > article:not(.slider).narrow {
  padding: 0 var(--section-narrow-padding-x);
}
body > article.slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
body > article.slider > div {
  flex: 0 0 auto;
  width: 80vw;
  margin: 0 10px;
  background: var(--color-blue-light);
  color: var(--color-blue-lighter);
  border-radius: 3px;
}
body > article.slider > div a.btn-link {
  color: var(--color-blue-lighter);
  border: 1px solid var(--color-blue-lighter);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: bold;
}
body > article.slider > div.skelleton {
  background-color: unset;
  border: 1px dashed var(--color-blue-lighter);
}
body > article.slider::-webkit-scrollbar {
  display: none;
}
body > article.callout {
  margin-left: var(--section-padding-x) !important;
  margin-right: var(--section-padding-x) !important;
  background-color: var(--color-blue-light);
  color: var(--color-blue-lighter);
}
body footer {
  margin: 0 var(--section-padding-x);
  color: var(--color-blue-lighter);
}
body footer h4 {
  font-size: 1.2rem;
}
body footer a {
  color: var(--color-blue-lighter);
  text-decoration: none;
}
div.menu {
  background: var(--color-blue-dark);
}
div.menu div.offcanvas-header {
  height: var(--nav-height);
}
div.menu div.offcanvas-header .btn-close {
  padding: 20px;
  outline: none !important;
  box-shadow: none !important;
}
div.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
div.menu ul li {
  padding: 0;
  margin: 0;
}
div.menu ul li a {
  display: block;
  text-decoration: none;
  padding: 10px;
  color: var(--color-blue-lighter);
  text-align: center;
  font-size: 1.5rem;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
@media (min-width: 576px) {
  :root {
    --section-padding-x: calc((100vw - 540px) / 2);
  }
}
@media (min-width: 768px) {
  :root {
    --section-padding-x: calc((100vw - 720px) / 2);
  }
  body header {
    background-position: calc(var(--section-padding-x) - 150px) bottom;
    background-size: calc((100vw - var(--section-padding-x)*2) / 1.6);
  }
  body header div.hero {
    height: 50vh;
  }
  body header div.hero > div {
    width: 60%;
    justify-content: center;
  }
  body header div.hero > div h2 {
    font-size: 2rem;
  }
  body header div.hero > div ul {
    max-width: unset;
  }
  body header div.hero > div div.buttons {
    flex-direction: row;
    max-width: unset;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  :root {
    --section-padding-x: calc((100vw - 960px) / 2);
    --section-narrow-padding-x: calc(var(--section-padding-x) + 150px);
  }
  body header div.hero > div h1 {
    font-size: 5rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --section-padding-x: calc((100vw - 1140px) / 2);
  }
  body header div.hero > div {
    width: 50%;
  }
  body header div.hero > div h1 {
    font-size: 7rem;
  }
  body > article.narrow {
    padding: 0 var(--section-narrow-padding-x);
  }
  body > article.narrow h2 {
    position: relative;
  }
  body > article.narrow h2:after {
    --self-width: 40px;
    --self-height: 100px;
    --self-x-offset: calc(((var(--section-narrow-padding-x) - var(--self-width)) / 2) * -1);
    content: '';
    display: block;
    position: absolute;
    right: var(--self-x-offset);
    top: calc((var(--self-height) / 2) * -1);
    width: var(--self-width);
    height: var(--self-height);
    background-image: url('/img/line_dotted.svg');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100%;
  }
  body > article.narrow ~ .narrow h2:after {
    transform: scaleX(-1);
    right: unset;
    left: var(--self-x-offset);
  }
  body > article.slider > div {
    width: 40vw;
  }
}
@media (min-width: 1400px) {
  :root {
    --section-padding-x: calc((100vw - 1320px) / 2);
  }
}
