
.content h1 {
font-family: var(--font-header);
font-size: 1.9rem;
	line-height: 1;
	font-weight: 700;
	margin-bottom: 10px;

}
.content h2::before {
    content: "";
    display: inline-block; /* eller block */
    width: 25px;
    height: 2px;
    background: var(--black);
    border-radius: 999px;
    margin-right: 0.625rem;
	margin-bottom: 0.188rem;
    vertical-align:middle;
		opacity: 0.4;

}
.content h2 {
	font-family: var(--font-body);
	font-size: 0.75rem;
	line-height: 1;
	opacity: 0.4;
	line-height: 1.25rem;
	text-transform: uppercase;
	font-weight: 600;
}
.content p {
	margin-bottom: 1.25rem;
}
.content p:last-child {
	margin-bottom: 0rem;
}
.content .bt_bb_image.bt_bb_shape_soft-rounded {
	border-radius: var(--radius);
	margin-bottom: 1.25rem;
}
.content li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 10px;
}
/* =======================================
   HEADER
======================================= */

header {
	padding:20px;
	width: 100%;
	position: relative;
	z-index: 100000;
	color: var(--black);
}

header.fixed {
	position: fixed;
	background-color: var(--white);
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-100%);
	animation: slideDown 0.5s ease forwards;
	  /*  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08); */
	  border-bottom: 1px solid rgba(0,0,0,0.08);


}

/* Animation */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}


/* =======================================
   BURGER MENU BUTTON
======================================= */

.burger {
	position: relative;
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	color: var(--black);
	padding-top: 4px
}

.burger i {
	font-size: 30px;
	line-height: 1;
}

.burger,
.burger * {
	touch-action: manipulation;
	user-select: none;
}

.burger {
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

/* =======================================
   MOBILE MAIN MENU
======================================= */

.main-menu {
   list-style: none;
    margin: 0;
    padding: 0 20px 20px 20px;
    display: none;
    flex-direction: column;

    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
	color: var(--black);
    background: var(--white);
    z-index: 9999;
}

.main-menu.open {
	display: flex;
}


/* =======================================
   MAIN MENU ITEMS
======================================= */

.main-menu>li {
	padding: 0px 0px;
	color: var(--black);
	padding: 10px 0;
	position: relative;

}

/* Links full width så pilen kan være helt til højre */
.main-menu>li>a {
	color: var(--black);
	display: block;
	width: 100%;
	padding-left: 0px;
}


/* =======================================
   DROPDOWN (CHILDREN)
======================================= */

.menu-item-has-children>a {
	position: relative;
	color: var(--white);
}

/* Dropdown arrow */
.menu-item-has-children>a::after {
	content: "\2b";
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--black);
	font-weight: 900;

}

/* Arrow when open */
.menu-item-has-children.open>a::after {
	content: "\f068";
	font-family: "Font Awesome 6 Free";
	color: var(--black);
	font-size: 900;
}

/* Mobile dropdown UL */
.main-menu li>ul {
	list-style: none;
	padding: 10px;
	margin: 20px 0 0;
	display: none;
	background-color: rgba(0,0,0,0.03);
	border-radius: var(--radius);

}

.main-menu li.open>ul {
	display: block;
}

/* Dropdown LI items */
.main-menu>li>ul li {
	padding: 10px;

}

.main-menu>li>ul li a {
	color: var(--black);
}


.main-menu>li:last-child>a {
	background-color: var(--black);
	padding: var(--ctapadding);
	border-radius: var(--radius);
	text-align: center;
	position: absolute;
	bottom: 20px;
	position: static;
	display: block;
    color: var(--white);
}
/* =======================================
   hero
======================================= */
.hero {
    display: block;
    min-height: auto;
    height: auto;
	color: var(--white);
	
}
.hero h3 {
	font-weight: 700;
	font-family: var(--font-header);
	font-size: 40px;
	line-height: 1;
	text-transform: uppercase;
}
.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    filter: brightness(0.2);
}

.hero .rating::before {
        content: "\f005\f005\f005\f005\f005";
        font-family: "Font Awesome 6 Free";
        font-weight: 700;
        color: var(--cta);
        display: inline-block;
        letter-spacing: 3px;
        margin-right: 10px;
		margin-top: 20px
    }
.hero  a{
	background-color: var(--white);
	color: var(--black);
	border: 1px solid var(black);
	color: var(--black);
	padding: var(--ctapadding);
	display: inline-block;
	margin-right: 0px;
	border-radius: var(--radius);
	display: block;
}
.hero p {
	padding: 20px 0
}
.hero  a:last-child{
	background-color: transparent;
	color: var(--white); 
	border: 1px solid var(--white);
	margin-right: 0px;
	margin-top: 20px;
}
/* =======================================
  infobox
======================================= */
.infobox {
	background-color: rgba(0,0,0,0.03);
	border-radius: var(--radius);
}
.infobox .text {
	margin: 20px;
	line-height: 1.4;
}
.infobox .bt_bb_image.bt_bb_shape_soft-rounded {
padding: 20px;
margin: 0;

}
.infobox .bt_bb_column {
    padding-left: 0px !important;
    padding-right: 0px !important;
    box-sizing: border-box;

	line-height: 1.0;
}
/* =======================================
   tabs
======================================= */
ul.bt_bb_tabs_header {
	background-color: rgba(0,0,0,0.03);
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
	    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
ul.bt_bb_tabs_header li {
    display: block;
    float: left;
    cursor: pointer;
    margin: 0;
    padding: 0;
    transition: none;
}
.bt_bb_style_simple ul.bt_bb_tabs_header li {
    border-bottom: 0px solid transparent;
}

/* Aktiv tab */
.bt_bb_tabs_header li.on {
	background-color: var(--black);
    color:var(--white) !important;
}

ul.bt_bb_tabs_header li{

	border-radius: var(--radius);
	padding: 5px var(--ctapadding) 5px var(--ctapadding)
 }
ul.bt_bb_tabs_header li span {
    line-height: 1;
    display: inline-block;
    padding:0;
}

ul.bt_bb_tabs_header li::after {
    content: "\f178";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-left: 10px;

}
ul.bt_bb_tabs_header li::before {
    content: "";
	padding:0px;
	margin: 0px;

}
ul.bt_bb_tabs_header {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
}

ul.bt_bb_tabs_header > li {
    width: auto !important;
    float: none !important;
}
ul.bt_bb_tabs_header::after {
    display: none !important;
    content: none !important;
}
/* =======================================
faq
======================================= */
.faq {
	background-color: rgba(0,0,0,0.03);
}
.faq .sp-easy-accordion>.sp-ea-single>.ea-header a,
.faq .sp-easy-accordion>.sp-ea-single>.sp-collapse>.ea-body,
.faq .sp-easy-accordion>.sp-ea-single>.sp-collapse>.ea-body p {
	font-family: var(--font-body)!important;
	font-size: .87rem !important; 
	font-weight: 500 !important;
	color: var(--black) !important;

}
.faq .sp-easy-accordion>.sp-ea-single>.ea-header a {
	font-weight: 800 !important;
}
.faq .sp-easy-accordion>.sp-ea-single>.sp-collapse>.ea-body {
	line-height: 1.7 !important;

}
/* =======================================
footer
======================================= */
	.footer {
		background-color: var(--black);
		color: var(--white);
	}
	.footer .bt_bb_image img {
	display: block;
	height: 31px;
	width: auto;
	margin-bottom: 20px;
	}
	.footer .title {
		margin-bottom: 10px;
		text-transform: uppercase;
		opacity: 0.5;
		margin-top: 20px;
		line-height: 1;
	}
	.footer a {
		color: var(--white);
	}



