:root {
	--main-primary-color: #b08119;
	--main-primary-color-hover: #057d44;
	--main-secondary-color: #00361c;
	--main-dark-rgb: 5,34,25;
}

.messenger-btn {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 60px;
	height: 60px;
	background: white;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	z-index: 9999;
	text-decoration: none;
}
.messenger-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.messenger-icon {
	position: relative;
}
.messenger-icon svg {
	width: 35px;
	height: 35px;
	transition: transform 0.3s ease;
}
.messenger-btn:hover svg {
	transform: rotate(10deg) scale(1.1);
}
.online-dot {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid white;
}


html {
	font-size: 16px;
}
body {
	font-family: 'Roboto', sans-serif;
	color: rgba(1,26,78,0.7);
	height: auto !important;
	scrollbar-width: thin;
	scrollbar-color: var(--main-primary-color) var(--main-secondary-color);
}

body::-webkit-scrollbar {
	width: 11px;
}
body::-webkit-scrollbar-track {
	background: var(--main-secondary-color);
}
body::-webkit-scrollbar-thumb {
	background-color: var(--main-primary-color) ;
	border-radius: 6px;
	border: 3px solid var(--main-secondary-color);
}

html.lenis {
	height: auto;
}
.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}
.lenis.lenis-stopped {
	overflow: hidden;
}
.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

a, a:hover, a:focus, a:active {
	text-decoration: none;
	outline: none !important;
	font-weight: 700;
	color: var(--main-secondary-color);
	transition: all .7s ease;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	font-family: 'Cinzel', serif;
	font-weight: 500;
	color: var(--main-secondary-color);
	margin: 0;
}
#main h2, #main h3, #main h4, #main h5, #main h6 {
	color: var(--main-primary-color);
}

p {
	margin-bottom: 0;
}
p + p,
h1 + p,
h2 + p,
h3 + p,
h4 + p,
h5 + p,
p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
	margin-top: 1.6rem;
}

p.label + h1,
p.label + h2,
p.label + h3,
p.label + h4,
p.label + h5,
p.label + h6 {
	margin-top: .4rem;
}

.h4, h4 {
    font-size: 1.35rem;
}

.text-justify {
    text-align: justify;
}

.primary {
	color: var(--main-primary-color);
}

.img {
    box-shadow: 0 20px 60px 0 rgba(0,0,0,0.1);
    border-radius: 10px;
	height: auto;
	object-fit: cover;
}

.icon {
	width: 60px;
	height: 60px;
	min-width: 60px;
	display: flex;
	padding: 10px;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background: var(--main-primary-color);
}
.icon svg {
	fill: #ffffff;
	width: 100%;
}
#threeusp .icon {
	margin-right: 15px;
}

#wrapper {
	position: relative;
	overflow-x: hidden;
}

section {
	padding: 6rem 0;
	background: #ffffff;
	position: relative;
}

.btn {
	border-radius: 100px;
	font-weight: 700;
	padding: 10px 24px;
	font-size: 0.9rem;
	transform: scale(1);
	transition: all .5s ease;
}
.btn:hover {
	transform: scale(1.06);
}
.btn-primary {
	background-color: var(--main-primary-color);
	border-color: var(--main-primary-color);
	color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:first-child:active {
	background-color: var(--main-primary-color-hover);
	border-color: var(--main-primary-color-hover);
	color: #ffffff;
}
.btn-outline-primary {
	border-color: var(--main-primary-color);
	color: var(--main-primary-color);
	color: #ffffff;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:first-child:active {
	background-color: var(--main-primary-color);
	border-color: var(--main-primary-color);
	color: #ffffff;
}

section hr {
	max-width: 50px;
	height: 3px;
	border: none;
	background: var(--main-primary-color);
	opacity: 1;
	display: block;
	margin: 1.6rem 0;
}

header#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	height: 120px;
	display: flex;
	align-items: center;
	background: transparent;
	transition: height .7s ease;
	will-change: height;
}
header#header:before,
header#header:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	will-change: opacity;
}
header#header:before {
	background: var(--main-secondary-color);
	opacity: 0;
	box-shadow: 0 20px 60px 0 rgba(0,0,0,0.1);
	transition: opacity .7s ease;
}
header#header.scrolled:before {
	opacity: 1;
}
header#header:after {
	background: linear-gradient(180deg, var(--main-secondary-color), transparent);
}
header#header.scrolled {
	height: 80px;
}
header#header .container {
	position: relative;
	z-index: 1;
}
header#header .brand {
	width: 220px;
}
.st0 { fill:#ffffff; }
.st1 { fill:#00964F; }

header#header .header-actions {
	width: 200px;
	display: flex;
    align-items: center;
    justify-content: flex-end;
}
header#header .brand a {
	display: block;
	width: 240px;
	transition: width .7s ease, margin-top .7s ease;
}
header#header.scrolled .brand a {
	width: 220px;
}

header#header #navigation > ul > li:not(:first-child) {
	margin-left: 2rem;
}

header#header #navigation ul li a {
	transition: color .7s ease;
	color: #ffffff;
	font-size: .8rem;
}
header#header #navigation ul li#menu-item-37 > a { /* Andre services */
    pointer-events: none;
}
header#header #navigation ul li a:hover,
header#header #navigation ul li.current-menu-item a {
	color: var(--main-primary-color);
}

header#header #navigation ul li ul.sub-menu {
	opacity: 0;
	visibility: hidden;
    position: absolute;
    width: 100%;
    max-width: 230px;
    padding: 0;
	padding-top: 14px;
    margin: 0;
    list-style: none;
	transform: translateX(20%) scale(1.1);
	box-shadow: 10px 20px 80px rgba(0,0,0,.1);
	border-radius: 5px;
	transition: transform .7s ease, opacity .7s ease;
}
header#header #navigation ul li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
	transform: translateX(0) scale(1);
}
header#header #navigation ul li ul.sub-menu li {
}
header#header #navigation ul li ul.sub-menu li a {
	padding: 7px 15px;
	margin: -1px 0;
	color: var(--main-secondary-color);
	background: #ffffff;
	display: block;
	font-size: .8rem;
}
header#header #navigation ul li ul.sub-menu li a:hover,
header#header #navigation ul li ul.sub-menu li.current-menu-item a {
	color: var(--main-primary-color);
}
header#header #navigation ul li ul.sub-menu li:first-child a {
	border-radius: 5px 5px 0 0;
	padding-top: 11px;
}
header#header #navigation ul li ul.sub-menu li:last-child a {
	border-radius: 0 0 5px 5px;
	padding-bottom: 11px;
}



.burgermenu {
	background-color: transparent;
	border: 1px solid var(--main-primary-color) !important;
	border-radius: 100%;
	cursor: pointer;
	display: flex;
	padding: .316rem;
	outline: none;
	margin-left: 10px; 
	display: none;
}
.burgermenu .line {
	fill: none;
	stroke: white;
	stroke-width: 6;
	transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
		stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.burgermenu .line1 {
	stroke-dasharray: 60 207;
}
.burgermenu .line2 {
	stroke-dasharray: 60 60;
}
.burgermenu .line3 {
	stroke-dasharray: 60 207;
}
.burgermenu.opened .line1 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
}
.burgermenu.opened .line2 {
	stroke-dasharray: 1 60;
	stroke-dashoffset: -30;
}
.burgermenu.opened .line3 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
}

#burgermenu-fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 1s ease;
}
#burgermenu-fixed.opened {
	opacity: 1;
	visibility: visible;
}

mobilemenu {
    position: fixed;
	display: none;
    top: 0;
    right: 0;
    width: 40vw;
	min-width: 330px;
    height: 100%;
    background: linear-gradient(45deg, #000000, var(--main-secondary-color));
    z-index: 999;
	flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px 0 0 15px;
    box-shadow: 0 -30px 110px rgba(0,0,0.3);
	padding: 4rem 3rem;
	opacity: 0;
	visibility: hidden;
}
mobilemenu a.brand {
    display: block;
    width: 180px;
	transition: unset;
}
mobilemenu nav > ul > li {
    margin: 1rem 0;
}
mobilemenu nav > ul > li > a {
    color: #ffffff;
    font-size: 1.5rem;
    display: block;
    text-align: right;
	transition: unset;
	/*opacity: 0;*/
}
mobilemenu nav ul li a:hover,
mobilemenu nav ul li.current-menu-item a {
	color: var(--main-primary-color);
}
mobilemenu ul.sub-menu {
    display: none;
}
mobilemenu .mobilemenufooter {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
mobilemenu .mobilemenufooter p small {
	color: #ffffff;
}
mobilemenu .mobilemenufooter .danskindustri {
	font-size: .8rem;
	padding: 7px 22px;
	padding: 0;
	background: transparent;
	/*border: 1px solid #ffffff;*/
	color: #ffffff;
}
mobilemenu .mobilemenufooter .danskindustri img {
    width: 100px;
    filter: invert(1) grayscale(1) brightness(10);
}
.mobileoverlay {
	position: fixed;
	top: 0;
	left: 0;
	background: #ffffff;
	width: 100%;
	height: 100%;
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 2s ease;
}
.mobileoverlay.opened {
	opacity: .9;
	visibility: visible;
}


#page-title {
	background: var(--main-secondary-color);
	color: #ffffff;
	padding: 10rem 0;
	padding-top: calc(10rem + 20px);
}
#page-title:before {
	content: '';
	background-color: var(--main-secondary-color);
	opacity: .6;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#page-title video.bg-video,
#page-title img.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
#page-title .container {
	position: relative;
	z-index: 1;
}
#page-title h1 {
	color: #ffffff;
	font-size: 5rem;
	margin-top: 3rem;
	font-weight: 700;
}

#hero {
	height: 100vh;
	max-height: 900px;
	padding-top: 120px;
	background: var(--main-secondary-color);
	color: #ffffff;
	font-size: 1.1rem;
	overflow: hidden;
}
#hero:before {
	content: '';
	background-color: rgba(var(--main-dark-rgb),0.8);
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#hero .container {
	position: relative;
	z-index: 1;
}
#hero video.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
#hero #herotext {
	opacity: 0;
	transform: translate(-100px, 0px);
}
#hero h1 {
	color: #ffffff;
	font-size: 2.1rem;
	font-weight: 700;
}
#hero .btn {
	padding: 15px 40px;
    font-size: 1rem;
}
#hero ul.checklist {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}
#hero ul.checklist li {
    display: flex;
    align-items: center;
    margin: 0.4rem 0;
}
#hero ul.checklist svg {
    margin-right: 8px;
    fill: var(--main-primary-color);
}

#forside-form {
	width: 100%;
	box-shadow: 0 20px 60px 0 rgba(0,0,0,0.1);
	border-radius: 10px;
}
#forside-form .forside-form-header {
	background: linear-gradient(45deg, var(--main-secondary-color), rgb(0 150 79 / 44%));
	padding: 30px 50px;
	border-radius: 10px 10px 0 0;
	font-size: 15px;
}
body:not(.home) #forside-form .forside-form-header {
	background: var(--main-secondary-color);
}
#forside-form .forside-form-header h2 {
	color: #ffffff;
	font-weight: 400;
	font-size: 1.4rem;
}
#forside-form .forside-form-header p {
	color: rgba(255,255,255,0.75);
}
#forside-form form {
	padding: 30px;
	border-radius: 0 0 10px 10px;
	background: rgba(255,255,255,.9);
}
body:not(.home) #forside-form form {
	/*background: #f7f7f7;*/
}
#forside-form form input,
#forside-form form textarea {
    padding: 11px 15px;
    background: #ffffff;
    width: 100%;
    border-radius: 6px;
	font-size: .9rem;
}
#forside-form p + p {
	margin-top: 1rem;
}
#forside-form form button.btn.btn-primary {
	border-radius: 6px;
	width: 100%;
	padding: 15px 15px;
	transform: unset !important;
}

.label {
	color: var(--main-primary-color);
	text-transform: uppercase;
	font-size: .8rem;
	letter-spacing: .2rem;
}

section#selectmenu .menu-kategori {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}
section#selectmenu .menu-kategori:before {
    content: '';
	display: block;
    padding-bottom: 60%;
}
section#selectmenu .menu-kategori img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 7px;
    box-shadow: 10px 10px 20px rgba(0,0,0,.2);
}
section#selectmenu .menu-kategori .btn {
    position: absolute;
}


#threeusp {
	background: #f7f7f7;
}


section#priser {
    background: #f7f7f7;
}
section#priser .container {
    max-width: 800px !important;
	margin-left: auto;
	margin-right: auto;
}
.prisboks {
	position: relative;
	overflow: hidden;
    background: #ffffff;
    padding: 60px 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 7px;
	box-shadow: 0 20px 60px 0 rgba(0,0,0,0.1);
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.prisboks hr {
    width: 60%;
    max-width: unset;
    height: 1px;
    background-color: gray;
    margin: 20px 0 30px;
}
.prisboks ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: .8rem;
    padding-bottom: 30px;
}
.prisboks ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
	white-space: break-spaces;
}
.prisboks ul li svg {
	fill: var(--main-primary-color);
	width: 15px;
	height: 15px;
	margin-right: 5px;
}
.prisboks p {
    
}
.prisboks ins {
    background: unset;
    padding: 0;
	font-size: 2rem;
    font-weight: 700;
	color: var(--main-primary-color);
	line-height: 1;
    margin: 10px 0;
    margin-right: -15px;
}
.prisboks ins small {
    color: gray;
    font-size: .7rem;
    font-weight: 400;
	display: block;
	line-height: 1;
	margin-right: 15px;
}
.prisboks .marquee {
	text-transform: uppercase;
	max-width: 300px;
	position: absolute;
	top: 10px;
	right: -70px;
	overflow: hidden;
	font-weight: 600;
	font-size: 10px;
	background: var(--main-secondary-color);
	color: #ffffff;
	padding: 7px 0;
	transform: rotate(45deg);
}
.prisboks .marquee_inner {
	width: fit-content;
    display: flex;
    flex: auto;
    flex-direction: row;
}
.prisboks .marquee_tekst {
	flex-shrink: 0;
	padding: 0 7px;
	/*margin-right: 1rem;*/
}

#actionbanner {
	position: relative;
	background: var(--main-secondary-color);
	color: #ffffff;
	padding-top: 170px;
	padding-bottom: 190px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
#actionbanner:before {
	content: '';
	background-color: var(--main-secondary-color);
	opacity: .6;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#actionbanner video.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
}
#actionbanner .container {
	position: relative;
	z-index: 1;
}
#actionbanner hr {
	margin-left: auto;
	margin-right: auto;
}
#actionbanner .container h2 {
	color: #ffffff;
	font-size: 2rem;
	/*margin-bottom: 1.7rem;*/
}
#actionbanner .container p:not(.label) {
	font-size: 1.2rem;
}
	
footer#footer {
	background: var(--main-secondary-color);
	padding: 6.3rem 0;
	color: rgba(255,255,255,0.5);
}
footer#footer a {
	color: rgba(255,255,255,0.5);
	font-weight: 400;
}
footer#footer a:hover,
footer#footer a:focus {
	color: var(--main-primary-color);
}
footer#footer h1, footer#footer h2, footer#footer h3, footer#footer h4, footer#footer h5, footer#footer h6 {
	color: #ffffff;
}
footer#footer svg {
    width: auto;
    max-height: 50px;
    fill: var(--main-primary-color);
	margin-bottom: 24px;
}
footer#footer > .container > .row > div {
    border-color: rgba(255,255,255,.2) !important;
}
footer#footer h4 + p {
	margin-top: 24px;
}
.danskindustri {
    padding: 4px 22px;
    background: #ffffff;
    border-radius: 35px;
    font-weight: 600;
    font-size: .7rem;
    color: var(--main-secondary-color);
    display: inline-block;
}
.danskindustri img {
	width: 140px;
	height: auto;
	margin-left: 5px;
}

.seperator {
	position: absolute;
	z-index: 5;
	width: 100%;
	pointer-events: none;
	overflow: hidden;
	display: flex;
	justify-content: center;
	transform: translateY(calc(-100% + 1px));
}
.seperator svg {
	width: 100%;
	height: auto;
}
.seperator .st0{opacity:0.25;fill:#ffffff;enable-background:new;}
.seperator .st1{opacity:0.5;fill:#ffffff;enable-background:new;}
.seperator .st2{fill:#ffffff;}
.seperator.dark .st0{opacity:0.25;fill:var(--main-secondary-color);enable-background:new;}
.seperator.dark .st1{opacity:0.5;fill:var(--main-secondary-color);enable-background:new;}
.seperator.dark .st2{fill:var(--main-secondary-color);}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	max-width: 1300px !important;
}

@media (max-width: 1350px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		padding-left: 30px !important;
		padding-right: 30px !important;
	}
}
@media (max-width: 1300px) {
	html {
		font-size: 14px;
	}
}
@media (max-width: 1100px) {
	#navigation {
		display: none;
	}
	mobilemenu,
	.burgermenu {
		display: flex;
	}
}
@media (max-width: 960px) {
	#hero {
		max-height: unset;
		height: unset;
	}
}
@media (max-width: 940px) {
	html {
		font-size: 12px;
	}
	
	header#header {
    	height: 90px
	}
	header#header .brand a {
		width: 200px;
	}
	
	.burgermenu {
		padding: 0.26rem;
	}
}

@media (max-width: 767px) {
	section {
    	padding: 4rem 0;
	}
	#actionbanner {
		padding-top: 90px;
		padding-bottom: 110px;
	}
	footer#footer > .container > .row > div {
		border: none !important;
	}
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	#page-title h1 {
		font-size: 3rem;
		margin-top: 2rem;
	}
}

@media (max-width: 520px) {
	#hero .btn {
		padding: 10px 20px;
	}
	
	header#header .brand a {
		width: 150px;
		margin-top: -18px;
	}
}

@media (max-width: 450px) {
	#page-title {
    	padding: 8rem 0;
	}
	#page-title h1 {
		font-size: 2rem;
		margin-top: 4rem;
	}
}