:root {
    --main: #22503e;
    --accent: #ae916b;
    --accent-light: #eee7df;
    --text: #22503e;
    --mobile-indent: 36px;
    --mobile-padding: 16px
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

html,
body {
    overflow-x: hidden;
    font-family: 'Open Sans';
    color: var(--text)
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 100000
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    background: #fff;
    color: var(--main);
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2)
}

.burger-button,
.mobile-menu-close {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer
}

html {
    font-size: 18px;
    scroll-behavior: smooth
}

header {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 10
}

header .logo {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 120px
}

header img {
    max-width: 100%;
    height: auto
}

header .top-menu-wrapper {
    padding-top: 24px;
    display: flex
}

.indent-container {
    display: block;
    padding-left: 160px
}

.indent-content {
    position: relative;
    padding-left: 80px
}

.relative {
    position: relative
}

.overflow {
    overflow: visible
}

.menu-mobile {
    display: none;
    visibility: hidden
}

#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--main);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    padding: var(--mobile-padding);
    padding-top: 20px;
    box-sizing: border-box
}

#mobile-menu.show {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%
}

.mobile-centered-content {
    padding-top: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    left: 0
}

#mobile-menu .logo {
    display: flex
}

#mobile-menu .logo-left {
    flex: 1
}

#mobile-menu .logo-left img {
    width: 90px
}

#mobile-menu .logo-right {
    flex: 0 0 auto;
    z-index: 999999
}

#mobile-menu .logo-right img {
    height: 28px;
    width: 28px
}

#mobile-menu .button {
    width: 16px;
    height: 16px;
    margin: auto;
    padding: 8px
}

#mobile-menu .menu-items {
    list-style: none
}

.menu-items-mobile li {
    margin-bottom: 1.5rem;
    text-align: center
}

.menu-items-mobile li a {
    display: block;
    text-decoration: none;
    color: var(--color-light-sand);
    font-family: "Open Sans";
    font-size: 2rem;
    font-weight: 300;
    line-height: 3.2rem;
    position: relative
}

.menu-items-mobile li a:hover {
    text-decoration: underline
}

.menu-desktop {
    margin-left: auto;
    height: 80px;
    padding-top: 36px
}

.menu-items ul {
    list-style: none;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
    display: flex
}

.menu-items ul li {
    display: flex;
    align-items: center;
    margin: 0 32px;
    position: relative
}

.menu-items li {
    margin: 0 10px
}

.menu-items li:first-child {
    margin-left: 0;
    margin-right: 24px
}

.menu-items li a {
    font-size: .85rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500
}

.menu-items ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 1px;
    width: 0;
    background-color: var(--accent);
    transition: width .4s ease;
    opacity: .5
}

.menu-items ul li:hover::after {
    width: 100%
}

.menu-items ul li.current-menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 1px;
    width: 100%;
    background-color: var(--accent)
}

h1 {
    font-family: 'SUSE';
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 3rem;
    padding-bottom: 2rem
}

h2 {
    font-family: 'SUSE';
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 3rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

h3 {
    font-family: 'SUSE';
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
h4 {
    font-family: 'SUSE';
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.55rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

h1 span,
h3 span {
    display: block
}

#Situationsplan h2 {
    color: var(--accent)
}

.content {
    padding-top: 60px;
    padding-bottom: 60px
}

#Start .content {
    padding-bottom: 100px
}

.content-raised {
    position: relative;
    bottom: 100px
}

.text-1 {
    line-height: 1.7rem;
    font-weight: 300
}

.text-1 p {
    padding-bottom: 1.5rem
}

.text-2 {
    font-size: 1.2rem;
    font-family: 'Open sans';
    font-weight: 400
}

.text-3 {
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase
}

.text-4 {
    color: #333;
    font-size: .7rem
}

.smaller {
    font-size: .85rem
}

.width-1 {
    width: 65%
}

.width-2 {
    max-width: 70%
}

#map {
    width: 100%;
    padding-top: 50%;
    position: relative
}

#map>div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.disclaimer-container {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.bg-1 {
    background-color: var(--accent-light)
}

p {
    margin-bottom: 1rem
}

.bg-2 {
    background-color: rgba(34, 80, 62, 1.0);
    background-image: url('../images/Drawing_Construction_Plan_original.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply
}

.bg-3 {
    background-color: var(--accent-light)
}

.bg-4 {
    background: linear-gradient(169deg, rgba(244, 239, 233, 1) 0%, rgba(244, 239, 233, 1) 23%, rgba(219, 213, 202, 1) 100%)
}

.bg-5 {
    background-color: rgb(23, 26, 24)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.auto-adjust {
    max-width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center center
}

.stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background-color: var(--main)
}

.stats-child {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    color: var(--accent)
}

.nearby-container1 {
    display: flex;
    justify-content: space-between;
    gap: .8rem;
    font-size: .9rem;
    max-width: 90%
}

.nearby-child1 {
    flex: 1;
    display: flex;
    flex-direction: row;
    line-height: 1.6rem
}

.nearby-child-left {
    width: 80px;
    font-weight: 500;

}

.nearby-child-right {
    font-weight: 300;

}

.nearby-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Create 3 vertical columns */
    gap: 20px; /* Adjust the gap between items */
}

.nearby-item {
    display: flex;
    justify-content: space-between;
    flex-direction: column; /* Stack distance and place vertically */
}

.nearby-child-left, .nearby-child-right {
    margin-bottom: 10px; /* Space between distance and place */
}

@media screen and (max-width: 768px) {
    .nearby-container {
        grid-template-columns: repeat(2, 1fr); /* Collapse to a single column on mobile */
    }
}


.contact span {
    display: block
}

.contact {
    font-size: .8rem;
    line-height: 1.2rem
}

strong {
    font-weight: bold
}

.col-2 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%
}

.col-2 .contents {
    display: flex;
    align-items: center;
    gap: 10px
}

.col-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.col-2 h3 {
    padding-top: 0
}

.child-1 {
    flex: 1 1 50%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.padding-b-1 {
    padding-bottom: 1rem
}

.padding-b-2 {
    padding-bottom: 2rem
}

.padding-b-3 {
    padding-bottom: 3rem
}

.padding-b-4 {
    padding-bottom: 100px
}

.padding-t-1 {
    padding-top: 1rem
}

.padding-t-3 {
    padding-top: 3rem
}
.padding-t-4 {
    padding-top: 6rem
}

.margin-bottom-negative {
    margin-bottom: -200px
}

.marehalm-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-image: url('../images/marehalm.png');
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: auto 200px;
    z-index: 3
}

.button-circle {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform .3s ease
}

.button-circle::before {
    content: '→';
    color: #fff;
    font-size: 24px
}

.button-circle:hover {
    transform: scale(1.05)
}

.accent {
    color: var(--accent)
}

.white {
    color: #fff
}

#baeredygtighed ul {
    list-style-type: disc;
    padding-left: 0;
    margin-left: 20px
}

#baeredygtighed ul li {
    margin-bottom: 10px;
    position: relative
}

#baeredygtighed ul li::marker {
    font-size: 1em
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea,
select {
    font-family: 'Open Sans', sans-serif;
    font-size: .8rem;
    font-weight: 400;
    color: var(--main);
    padding: 12px 15px;
    border: none;
    border-radius: 16px;
    background-color: #f5f5f5;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1);
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 15px;
    margin-top: 4px
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--main)
}

label {
    font-size: .8rem;
    font-weight: 600;
    display: block
}

button,
input[type="submit"] {
    font-size: .9rem;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 16px;
    background-color: var(--main);
    color: white;
    cursor: pointer;
    transition: background-color .3s ease
}

input[type="submit"]:hover {
    background-color: darken(var(--main), 10%)
}

.disclaimer {
    color: #4545;
    font-size: 0.5rem;
    padding: 0.5rem;
}


.scroll {
    width: 60px;
    height: 60px;
    border: 2px solid var(--main);
    border-radius: 50%;
    position: relative;
    left: 48px;
    bottom: 16px;
    animation: down 1.5s infinite;
    -webkit-animation: down 1.5s infinite;
    &::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 18px;
        width: 20px;
        height: 20px;
        border-left: 2px solid var(--main);
        border-bottom: 2px solid #333;
        transform: rotate(-45deg)
    }
}

@keyframes down {
    0% {
        transform: translate(0)
    }
    20% {
        transform: translateY(15px)
    }
    40% {
        transform: translate(0)
    }
}

@-webkit-keyframes down {
    0% {
        transform: translate(0)
    }
    20% {
        transform: translateY(15px)
    }
    40% {
        transform: translate(0)
    }
}

@media only screen and (max-width:1100px) {}

@media only screen and (max-width:990px) {}

@media only screen and (max-width:768px) {
    section {
        overflow-x: hidden
    }
    .child-1 {
        max-width: 100%;
        min-width: 0
    }
    .auto-adjust {
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center center;
    }
    .indent-container,
    .indent-content {
        padding-left: 0
    }
    .menu-desktop {
        display: none
    }
    .menu-mobile {
        display: block;
        visibility: visible;
        position: fixed;
        top: 20px;
        right: 16px;
        width: 50px;
        height: auto;
        z-index: 99
    }
    header {
        height: 140px
    }
    header .logo {
        left: var(--mobile-padding);
        width: 90px
    }
    h1 {
        font-size: 2rem;
        line-height: 2.5rem
    }
    .width-1 {
        width: 100%
    }
    .content {
        padding: var(--mobile-padding)
    }
    .content-raised {
        padding-left: var(--mobile-padding);
        padding-right: var(--mobile-padding)
    }
    .stats {
        flex-direction: column;
        gap: 0
    }
    .stats h3 {
        padding-top: 0;
        padding-bottom: 0
    }
    .mobile-border {
        border-top: 1px solid var(--accent);
        border-bottom: 1px solid var(--accent)
    }
    .col-2 {
        flex-direction: column;
        padding-left: var(--mobile-padding);
        padding-right: var(--mobile-padding);
        width: unset
    }
    .mobile-flex-reverse-col {
        flex-direction: column-reverse
    }
    .width-2 {
        max-width: 100%;
        padding-left: var(--mobile-padding);
        padding-right: var(--mobile-padding)
    }
    h2 {
        font-size: 1.5rem;
        line-height: 2rem
    }
    .nearby-container {
        align-items: left
    }
    #map {
        padding-top: 125%
    }
    .mobile-padding {
        padding-left: var(--mobile-padding);
        padding-right: var(--mobile-padding)
    }
    .marehalm-border {
        height: 120px;
        background-size: auto 120px
    }
    #baeredygtighed {
        padding-bottom: 0 !important
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    input[type="search"],
    input[type="password"],
    textarea,
    select {
        width: 100%
    }
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px
    }
    .cookie-consent__text {
        text-align: left
    }
    .cookie-consent__accept {
        width: 100%;
        text-align: center
    }
    .cookie-modal__dialog {
        max-height: calc(100vh - 24px);
        margin: 12px
    }
    .cookie-modal__header {
        padding: 20px 20px 0
    }
    .cookie-modal__body {
        padding: 16px 20px
    }
    .cookie-modal__footer {
        padding: 0 20px 20px
    }
    .cookie-modal__footer .cookie-consent__accept {
        width: 100%
    }
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    padding: 16px;
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform .35s ease, opacity .35s ease, visibility .35s ease;
    pointer-events: none
}

.cookie-consent.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.cookie-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    background: rgba(244, 239, 233, 0.97);
    border: 1px solid rgba(174, 145, 107, 0.35);
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(34, 80, 62, 0.12);
    backdrop-filter: blur(6px)
}

.cookie-consent__text {
    margin: 0;
    color: var(--text);
    line-height: 1.55
}

.cookie-consent__link {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: var(--main);
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer
}

.cookie-consent__link:hover,
.cookie-consent__link:focus {
    color: var(--accent)
}

.cookie-consent__accept {
    flex: 0 0 auto;
    border: 1px solid var(--main);
    background: var(--main);
    color: #fff;
    font: inherit;
    font-size: .85rem;
    letter-spacing: .02em;
    padding: 11px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease
}

.cookie-consent__accept:hover,
.cookie-consent__accept:focus {
    background: #1a3f31;
    border-color: #1a3f31
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease
}

.cookie-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 26, 24, 0.55)
}

.cookie-modal__dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: var(--accent-light);
    border: 1px solid rgba(174, 145, 107, 0.35);
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(34, 80, 62, 0.18)
}

.cookie-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 0
}

.cookie-modal__title {
    margin: 0;
    color: var(--main);
    font-size: 1.35rem;
    line-height: 1.4
}

.cookie-modal__close {
    flex: 0 0 auto;
    filter: invert(1) brightness(0.35)
}

.cookie-modal__body {
    padding: 18px 24px 8px;
    color: var(--text)
}

.cookie-modal__body p {
    margin-bottom: .85rem
}

.cookie-vendor {
    padding: 14px 0;
    border-top: 1px solid rgba(174, 145, 107, 0.25)
}

.cookie-vendor:first-of-type {
    border-top: 0;
    padding-top: 0
}

.cookie-vendor h3 {
    margin: 0 0 .5rem;
    color: var(--main);
    font-size: 1rem
}

.cookie-vendor a {
    color: var(--main);
    text-decoration: underline;
    text-underline-offset: 2px
}

.cookie-vendor a:hover,
.cookie-vendor a:focus {
    color: var(--accent)
}

.cookie-modal__footer {
    padding: 8px 24px 24px
}

body.cookie-modal-open {
    overflow: hidden
}