@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body, html {
    margin: 0;
}
*, *:before, *:after {
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
}
.logo {
    z-index: 101;
    cursor: pointer;
}
.logo img {
    display: block;
    width: 194px;
    height: 44px;
}

.legal-page {
    padding: 32px max(5%, calc(100vw - 1440px));
    color: #002F47;
}
.legal-page a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}
.legal-page a:hover {
    text-decoration: underline;
}
.legal-page h1,
.legal-page h2,
.legal-page h3 {
    font-weight: 500;
}
.legal-page h1 {
    font-size: max(2.67vw, 25px);
    margin: 64px 0 32px;
}
.legal-page h2,
.legal-page h3,
.legal-page .small-heading {
    font-size: max(1.5vw, 14px);
    font-weight: 400;
    color: #406375;
}
.legal-page h3 {
    margin: 24px 0 16px;
}
.legal-page table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}
.legal-page table th {
    font-weight: 700;
    text-align: left;
}
.legal-page table td {
    padding: 8px 0;
    border-top: 1px solid;
}
.legal-page table th,
.legal-page table td {
    padding-right: 1em;
    vertical-align: top;
}
.legal-page address {
    font-style: normal;
}
.legal-page ul {
    list-style: disc;
    padding-left: 1em;
}
.legal-page ul li {
    margin-bottom: 0.5em;
}

.legal-page .xxl {
    font-size: clamp(48px, 8vw, 88px);
    line-height: 1.1;
}

footer {
    background: #002F47;
    color: #fff;
    padding: 10px max(14%, calc(100vw - 1440px));
    font-size: 14px;
    text-align: center;
    display: flex;
    gap: 6px;
    justify-content: space-between;
    align-items: center;
}
footer a {
    color: inherit;
    text-decoration: none;
}
footer p {
    margin: 0;
}
@media(max-width: 999px) {
    footer {
        flex-direction: column;
        padding: 10px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: rgba(255,255,255,0.8);
    padding: 24px 16px;
    font-size: 14px;
    font-size: 12px;
    font-weight: 300;
    z-index: 101;
    display: none;
  
    background: linear-gradient(131.77deg, rgba(230, 236, 238, 0.66) 0%, rgba(248, 250, 250, 0.66) 50%, rgba(230, 236, 238, 0.66) 100%);
    box-shadow: 0px 183px 51px rgba(0, 47, 71, 0.01), 0px 117px 47px rgba(0, 47, 71, 0.005), 0px 66px 40px rgba(0, 47, 71, 0.025), 0px 29px 29px rgba(0, 47, 71, 0.045), 0px 7px 16px rgba(0, 47, 71, 0.05);
    backdrop-filter: blur(4px);
  
    border: 1px solid;
    border-image: linear-gradient(-59deg, rgba(231, 236, 238, 0.66) 0%, rgba(187, 200, 204, 0.66) 50%, rgba(212, 221, 224, 0.66) 100%) 1;
  
  }
  .cookie-banner a {
    color: inherit;
    text-underline-offset: 0.2em;
    font-weight: 500;
  }
  .cookie-banner.is-open {
    display: block;
  }
  .cookie-banner p {
    margin: 0 0 20px;
    text-wrap: pretty;
  }
  .cookie-banner__links {
    display: flex;
    gap: 10px;
  }
  .cookie-banner__links .js-cookie-accept {
    margin-left: auto;
  }
  @media(max-width: 640px) {
    .cookie-banner {
      bottom: 8px;
      right: 8px;
      left: 8px;
    }
  }