@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

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

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

@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}


:root {
    --bg: #DBDBDB;
    --accent: #334F74;
    --text: #000000;
}

html {
    box-sizing: border-box;
    overflow-x: hidden;
}

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

body {
    margin: 0;
    padding: 0;
    min-width: 320px;
    width: 100%;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: "Lato", Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.5;
}

.circle {
    position: absolute;
    height: 15em;
    width: 15em;
    fill: var(--accent);
    pointer-events: none;
}

.circle-1 {
    left: -120px;
    top: 20px;
}

.circle-2 {
    right: -120px;
    top: 300px;
}

.circle-3 {
    left: -120px;
    top: 590px;
}

.container {
    width: min(800px, calc(100% - 8em));
    max-width: 800px;
    position: relative;
    margin-top: 6rem;
    margin-right: auto;
    margin-left: max(7em, calc((100vw - 800px) / 2));
    padding: 0 0 2rem;
}

.brand-navbar {
    position: relative;
    display: block;
    padding: 0;
    --bs-navbar-toggler-border-color: transparent;
    --bs-navbar-toggler-focus-width: 0;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51,79,116,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-navbar .navbar-brand {
    display: inline-block;
    max-width: calc(100% - 3.5rem);
    margin: 0;
    padding: 0;
    color: var(--text);
    white-space: normal;
}

.brand-navbar .navbar-brand:hover,
.brand-navbar .navbar-brand:focus {
    color: var(--text);
}

.brand-toggler {
    position: absolute;
    top: 0.25rem;
    right: 0;
    z-index: 2;
}

.brand-menu {
    margin-top: 0.5rem;
}

.brand-menu .navbar-nav {
    align-items: stretch;
    background-color: #EFEFEF;
    padding: 1rem;
}




.brand-menu .nav-item {
    width: 100%;
}

.brand-menu .nav-link {
    display: block;
    padding-right: 0;
    padding-left: 0;
    text-align: right;
    color: var(--text);
}

.brand-menu .nav-link:hover,
.brand-menu .nav-link:focus {
    color: var(--accent);
}

.brand-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0.75rem 0;
    border: 0;
    background-color: var(--accent);
    opacity: 1;
}

.contact, .content {
    margin-top: 5rem;
    margin-bottom: 10rem;
}

.address-line {
    margin-left: 1.7em;
}

.phone,
.email,
.address {
    margin: 0 0 1rem;
}

.phone .icon,
.email .icon,
.address .icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
    color: var(--accent);
}

a {
    text-decoration: none;
    color: var(--text);
    overflow-wrap: anywhere;
}

a.underline {
    text-decoration: underline;
}


a:hover {
    text-decoration: underline;
}


a.active {
    color: var(--accent) !important;
    font-weight: 400;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner__content {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(51, 79, 116, 0.18);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner__button {
    flex-shrink: 0;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--accent);
    border-radius: 0.375rem;
    background: var(--accent);
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 400;
    line-height: 1.2;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus {
    background: #2a4464;
    border-color: #2a4464;
}

.footer {
    text-align: center;
    font-size: 0.9em;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    display: inline;
}

.footer li + li::before {
    content: " | ";
    margin: 0 0.5em;
}

.footer a {
    text-decoration: none;
    color: var(--text);
}

.footer a:hover {
    text-decoration: underline;
}

.install-link {
    color: var(--text);
    text-decoration: none;
    vertical-align: baseline;
}

.install-link:hover,
.install-link:focus {
    color: var(--text);
    text-decoration: underline;
}

.install-link:disabled,
.install-link[aria-disabled="true"] {
    color: rgba(0, 0, 0, 0.45);
    text-decoration: none;
    cursor: not-allowed;
    opacity: 1;
}

.sub-footer {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.7em;
}

h1 {
    margin: 0 0 3rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.3;
}

h2 {
    margin: 0 0 1rem;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

h3 {
    margin: 0 0 1rem;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-size: clamp(1.2rem, 2vw, 1rem);
}

.nowrap {
    white-space: nowrap;
}

@media (max-width: 1074px) {
    .container {
        margin-top: 5rem;
    }
    .circle {
        position: absolute;
        height: 13em;
        width: 13em;
    }
}
@media (max-width: 900px) {
    html,
    body {
        overscroll-behavior-y: none;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__button {
        width: 100%;
    }

    .circle {
        position: fixed;
        height: 12em;
        width: 12em;
    }

    .circle-1 {
        top: 10px;
    }

    .circle-2 {
        top: 230px;
    }

    .circle-3 {
        top: 470px;
    }


    .container {
        margin-top: 4rem;
    }

    .contact, .content {
        margin-top: 2.5rem;
        margin-bottom: 6rem;
    }

    .footer {
        margin-top: 1rem;
    }
}
@media (max-width: 406px) {
    .container {
        margin-left: max(5rem, calc((100vw - 800px) / 2));
        width: 300px;
    }
    .content {
        width: 300px;
    }
}

@media (max-width: 398px) {
    .circle-2 {
        display: none;
    }
}