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

#wrapper > section:first-child:not(#pagetitle) {
	padding-top: var(--headerHeight);
	padding-bottom: 0;
}

div#mobilemenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1111;
    width: 100%;
    max-width: 400px;
    /*background: var(--primary);*/
	background: var(--white);
    padding: 40px 50px;
	box-shadow: 0 0 100px black;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transform: translateX(calc(-100% - 100px));
	transition: var(--transition);
	overflow-y: auto;
}
body.mobile-active div#mobilemenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}
body.mobile-active {
    overflow: hidden;
}

div#mobilemenu .hamburger-box {
    position: absolute;
    top: 20px;
    right: 20px;
}

div#mobilemenu .mobileheader {
    margin-bottom: 50px;
}

div#mobilemenu img.brand {
	max-width: 220px;
	width: 100%;
	height: auto;
}

div#mobilemenu nav {
    width: 100%;
	margin-bottom: 50px;
}
div#mobilemenu nav ul {
    margin: 0;
	padding: 0;
	list-style: none;
}
div#mobilemenu nav ul li a {
    color: var(--secondary);
	text-decoration: none;
	padding: 10px 0;
	width: 100%;
	display: flex;
	align-items: center;
	font-weight: 700;
	font-style: italic;
}

div#mobilemenu nav > ul > li {
	border-bottom: 1px solid gray;
	width: 100%;
	display: flex;
	align-items: flex-start;
	position: relative;
	flex-direction: column;
}

/* Skjul sub-menu som standard */
div#mobilemenu .sub-menu {
    overflow: hidden;
    max-height: 0;
    transition: var(--transition);
    background: var(--primary);
    width: 100%;
    border-radius: var(--borderRadius);
    padding: 0 10px;
	/*margin-bottom: 10px;*/
}
div#mobilemenu .sub-menu a {
	padding-left: 10px;
	padding-right: 10px;
	font-size: 12px;
}

/* Style pil */
div#mobilemenu .submenu-toggle {
	display: inline-block;
	cursor: pointer;
	transition: var(--transition);
	position: absolute;
	right: 0;
	top: 9px;
}
div#mobilemenu .submenu-toggle svg {
	fill: var(--white);
}

/* Åben pil */
div#mobilemenu .menu-item.open > .submenu-toggle {
    transform: rotate(180deg);
}

/* Åben sub-menu */
div#mobilemenu .menu-item.open > .sub-menu {
    max-height: 500px;
	padding: 10px;
	margin-bottom: 10px;
}

div#mobilemenu .mobilefooter {
    width: 100%;
    margin-top: auto;
}
div#mobilemenu .mobilefooter {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
div#mobilemenu .mobilefooter .col-follow h4 {
	font-size: 14px;
}


.hamburger-box {
    position: relative;
    width: 30px;
    height: 30px;
	cursor: pointer;
	display: none;
}
.hamburger-box .hamburger-inner {
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: 75ms;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    position: relative;
    width: 30px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    background-color: var(--white);
}
#header.scrolled .hamburger-inner,
#header.scrolled .hamburger-inner:after,
#header.scrolled .hamburger-inner:before,
.mobile-active #mobilemenu .hamburger-inner,
.mobile-active #mobilemenu .hamburger-inner:after,
.mobile-active #mobilemenu .hamburger-inner:before {
    background-color: var(--secondary);
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -10px;
	transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger-inner:after {
    bottom: -8px;
	transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55,.055,.675,.19);
}

body.mobile-active .hamburger-box .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(45deg);
}
body.mobile-active .hamburger-box .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}
body.mobile-active .hamburger-box .hamburger-inner:after {
    bottom: 2px;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
    transform: rotate(-90deg);
}


form.was-validated .form-control:invalid {
	border-color: #dc3545;
}
form.was-validated .form-control:valid {
	border-color: #198754;
}


.pt-120 {
	padding-top: 120px;
}
.pb-120 {
	padding-bottom: 120px;
}

body {
	background: var(--white);
	color: var(--textColor);
	font-family: "Poppins", sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    margin-bottom: 1em;
	text-transform: uppercase;
	font-weight: 700;
	font-style: italic;
}

.color-primary { color: var(--primary); }
.color-secondary { color: var(--secondary); }
.color-third { color: var(--third); }
.background-primary { background-color: var(--primary); }
.background-secondary { background-color: var(--secondary); }
.background-third { background-color: var(--third); }

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--primary);
}

h2.bigger {
	font-size: 4rem;
	text-align: center;
}
p {
	margin: 0;
}
p + h2,
p + h3,
p + h4,
p + p {
	margin-top: 1em;
}
section {
	padding: 6vw 0;
}

/*.gradienttext {
	background: linear-gradient(76deg, #eec65f 0%, #da9847 23%, #e2b755 38%, #e2b755 52%, #e2b755 54%, #dd9947 69%, #e2b755 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
	display: inline-block;
}*/

.whitebox {
    background: var(--white);
    padding: 60px;
	height: 100%;
	border-radius: var(--borderRadius);
	box-shadow: 0 20px 60px rgb(0 0 0 / 10%);
	position: relative;
	transition: var(--transition);
}
.whitebox h2 {
	font-size: 2.3rem;
	margin-bottom: 1rem;
}

.container {
	max-width: 1250px !important;
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}
.container-fluid {
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}

#pagetitle {
	padding-top: calc(var(--headerHeight) + 100px);
	padding-bottom: 100px;
	text-align: center;
	background-color: var(--primary);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	color: var(--white);
}
#pagetitle:before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--secondary);
	opacity: .8;
}
#pagetitle .container {
	position: relative;
}
#pagetitle h1 {
	color: var(--white);
	margin-bottom: 10px;
}

#header {
	position: fixed;
	z-index: 999;
	/*color: var(--white);*/
	top: 0;
	left: 0;
	height: var(--headerHeight);
	width: 100%;
	display: flex;
	align-items: center;
	transition: var(--transition);
}

body.admin-bar #header {
	top: 32px;
}

@media only screen and (max-width: 768px) {
	:root {
		--headerHeight: 70px;
	}
}

#header:before,
#header:after {
	content: '';
	position: absolute;
	inset: 0;
	transition: var(--transition);
}
#header:before {
	/*background: var(--primary);*/
	background: var(--white);
}

#header:not(.scrolled):before,
#header:not(.scrolled):after {
	opacity: 0;
}
#header.scrolled {
	box-shadow: 0px 0px 50px rgb(0 0 0 / 30%);
}
#header > * {
    position: relative;
	z-index: 1;
}
#header .container,
#header .container-fluid {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#header div .logo {
	display: block;
	max-width: 210px;
	width: 100%;
	color: var(--white);
	text-decoration: unset;
	position: relative;
}
#header div .logo img#invertlogo {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
}
#header.scrolled div .logo img#invertlogo {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
#header .firma-ikon svg {
	fill: var(--third);
}
/*#header.scrolled .firma-ikon svg {
	fill: var(--third);
}*/
#header div .logo > * {
	width: 100%;
	text-align: center;
	margin: 0;
}
#header nav {
	flex: 1;
	display: flex;
	align-items: center;
}
#header nav#rightnav {
	justify-content: flex-end;
}
#header .btn {
	margin-left: 10px;
}
#header nav ul {
	display: flex;
	align-items: center;
	list-style: none;
	column-gap: 20px;
	margin: 0;
	padding: 0;
}
#header nav ul a:not(.btn) {
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
	font-size: 13px;
	position: relative;
	padding: 4px 7px;
	transition: var(--transition);
}
#header.scrolled nav ul a:not(.btn) {
	color: var(--secondary);
}
#header nav ul.right-actions a:not(.btn) {
	padding: 0;
}
#header nav a {
	text-decoration: none !important;
}
#header nav > ul > li > a:hover,
#header nav > ul > li.current-menu-item > a,
#header nav > ul > li.current-menu-parent > a {
	/*color: var(--primary);*/
	/*color: var(--white);*/
	color: var(--secondary);
}
#header nav > ul > li > a:before {
	content: "";
	transition: var(--transition);
	display: block;
	position: absolute;
    inset: 0;
    z-index: -1;
	/*background-color: var(--white);*/
	background-color: var(--third);
	border-radius: calc(var(--borderRadius) / 2);
}
#header nav > ul > li > a:before {
	bottom: 100%;
    transform: scale(1);
}
#header nav > ul > li > a:hover:before,
#header nav > ul > li.current-menu-item > a:before,
#header nav > ul > li.current-menu-parent > a:before {
	bottom: 0;
}

#header nav ul li ul.sub-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    background: var(--primary);
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    visibility: hidden;
    pointer-events: none;
	transform: translateY(10px);
	border-radius: calc(var(--borderRadius) / 2);
}
#header nav ul li:hover ul.sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: unset;
	transform: translateY(0px);
}
#header nav ul.sub-menu > li.current-menu-item > a {
	font-weight: 700;
}

.btn {
	font-family: "Poppins", sans-serif;
	border: 0;
	border-radius: calc(var(--borderRadius) / 2);
	text-transform: uppercase;
	font-style: italic;
	font-weight: 700;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
}
.btn.btn-primary {
	background: var(--third);
	color: var(--secondary);
	position: relative;
	overflow: hidden;
}
/*
.btn.btn-primary:before {
    content: '';
    position: absolute;
    inset: 0;
    background: black;
	
    background-size: cover;
    opacity: .3;
}
*/
.btn.btn-secondary {
	background: var(--secondary);
	color: var(--white);
}
.btn > span {
	display: flex;
    align-items: center;
	position: relative;
}
.btn > span > span {
	white-space: break-spaces;
}
.btn.btn-primary svg,
.btn.btn-secondary svg {
	width: 19px;
	height: 19px;
	fill: var(--secondary);
	margin-right: 10px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--primary);
	background-color: #b18f42;
	border-color: #b18f42;
}

#footer {
	/*background: var(--primary);*/
    /*color: var(--white);*/
	background: var(--white);
    position: relative;
}

#footer > * {
    position: relative;
}
#footer .container-fluid {
	padding-left: 5% !important;
	padding-right: 5% !important;
	padding-top: 110px;
	padding-bottom: 100px;
}
#footer h4 {
	font-size: 1.2rem;
	margin-bottom: 20px;
}
#footer a {
	/*color: var(--white);*/
	text-decoration: none;
}
#footer h3 {
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--white);
}
#footer .brand {
	display: inline-block;
	max-width: 280px;
	margin-top: -30px;
}
#footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#footer ul li svg {
	fill: var(--secondary);
}
/*#footer ul:not(.socials) li,
#footer ul:not(.socials) li a {
    display: flex;
    align-items: center;
}*/
/*
#footer ul.menu li svg {
	width: 10px;
	height: 10px;
	margin-right: 3px;
}
#footer ul.kontakt li svg {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
*/
#footer ul.menu li,
#footer ul.kontakt li {
	margin: 10px 0;
}
#footer ul.socials li {
	margin-right: 6px;
}
#footer p {
	margin: 0;
}
#footer p.d-flex.align-items-center {
	white-space: break-spaces;
}
#footer a.some-icon,
a.some-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#footer a.some-icon svg,
a.some-icon svg {
    width: 40px;
    height: 40px;
}
.firma-some {
	display: flex;
	align-items: center;
	column-gap: 20px;
	list-style: none;
    padding: 0;
    margin: 0;
}
#footer .firma-ikon {
	width: 24px;
	height: 24px;
	position: relative;
	top: -2px;
}
#footer .firma-ikon svg {
	fill: var(--primary);
}


#copyright {
	padding: 14px 0;
	font-size: 13px;
	background: var(--secondary);
	color: var(--white);
}
#copyright p {
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: break-spaces;
}
#copyright a {
	color: var(--third);
}
#copyright .sep {
    margin: 0 1em;
    border-right: 1px solid var(--white);
    height: 20px;
    display: inline-block;
    opacity: .3;
}

.section-type-hero {
	text-align: center;
	background-color: #000000;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100dvh;
	position: relative;
}
.section-type-hero:before,
.section-type-banner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary);
	opacity: 0.8;
	z-index: 1;
}
.admin-bar .section-type-hero:first-child {
	min-height: calc(100dvh - 32px);
}

.section-type-hero video,
.section-type-hero img,
.section-type-banner video,
.section-type-banner img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/*opacity: .2;*/
}
.section-type-hero > div,
.section-type-banner > div {
	position: relative;
	z-index: 2;
}
.section-type-hero h1 {
	font-size: 50px;
	margin-bottom: 10px;
}
.section-type-hero h1,
.section-type-hero h2 {
	color: var(--white);
}
.section-type-hero p {
	font-size: 22px;
}
.section-type-hero p + p {
	margin-top: 10px;
}


/*#about > .container {
	max-width: 1100px !important;
}*/

/*
.about img,
.about video {
    position: absolute;
    height: 100%;
    width: 90%;
    object-fit: cover;
	left: 0.75rem;
	border-radius: var(--borderRadius);
}*/
.home .about img {
	width: 80%;
}
.about.about-right img,
.about.about-right video {
	left: unset;

}

.akira-section.section-type-tekst .row {
	position: relative;
	align-items: center;
}
.akira-section.section-type-tekst.section-whitebox .row > div {
	position: relative;
	z-index: 1;
	margin-top: 60px;
}
.akira-section.section-type-tekst .imageContainer {
	position: absolute;
	max-width: 50%;
	right: 0;
	pointer-events: none;
	border-radius: var(--borderRadius);
	height: calc(100% + 50px);
	padding: 0;
	overflow: hidden;
	box-shadow: 0 20px 60px rgb(0 0 0 / 10%);
}
.akira-section.section-type-tekst .imageContainer > img,
.akira-section.section-type-tekst .imageContainer > video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.akira-section.section-type-tekst .row > img,
.akira-section.section-type-tekst .row > video {
	position: absolute;
	object-fit: cover;
	pointer-events: none;
	border-radius: var(--borderRadius);
	padding: 0;
	max-width: calc(41.6666% - 50px);
	height: calc(100% + 100px);
	box-shadow: 0 20px 60px rgb(0 0 0 / 10%);
}
.akira-section.section-type-tekst.section-whitebox .row > img,
.akira-section.section-type-tekst.section-whitebox .row > video {
    max-width: 50%;
	height: calc(100% + 50px);
}
.akira-section.section-type-tekst .row > img.right,
.akira-section.section-type-tekst .row > video.right {
	right: 0.75rem;
}
.akira-section.section-type-tekst .row > img.left,
.akira-section.section-type-tekst .row > video.left {
	left: 0.75rem;
}

.texture-bg {
	background-size: cover;
	background-position: center;
}

.section-type-map .row > div:first-child .whitebox {
	border-radius: var(--borderRadius) 0 0 var(--borderRadius);
}
.section-type-map .row iframe {
	border-radius: 0 var(--borderRadius) var(--borderRadius) 0;
}

.section-type-banner {
	padding: 120px 0;
	min-height: 500px;
	background-attachment: fixed;
	background-size: cover;
	color: var(--white);
	position: relative;
	display: flex;
	align-items: center;
}
/*
.section-type-banner:before {
	background: rgb(0 0 0 / 80%);
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
}
*/
.section-type-banner > div {
	position: relative;
}
.section-type-banner h2 {
	margin-bottom: 3rem;
	color: var(--white);
}
.section-type-banner a {
	text-decoration: none;
}

#information .container {
	position: relative;
	z-index: 2;
	margin-top: -50px;
	margin-bottom: -50px;
}

.post-type-archive-akira_service #pagetitle {
	background-image: url(../../../../uploads/steam2.jpg) !important; 
}

#anmeldelser > div {
	position: relative;
	z-index: 2;
}
#anmeldelser > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#anmeldelser:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary);
	opacity: 0.8;
	z-index: 1;
}

@media screen and (max-width: 2110px) {
	#footer .container-fluid {
		padding-top: 90px;
		padding-bottom: 60px;
	}
}
@media screen and (max-width: 1690px) {
	#footer .col-follow {
		flex: 1 0 100%;
		text-align: center;
		margin-top: 50px;
		display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
	}
}
@media screen and (max-width: 1340px) {
	ul#leftmenu, 
	ul#rightmenu,
	ul.right-actions li:first-child {
		display: none !important;
	}
	.hamburger-box {
		display: inline-block;
	}
	#header .btn {
		margin-left: 0px;
	}
	
	
	footer#footer .row > div:first-child {
		flex: 1 0 100%;
		text-align: center;
	}
	#footer .brand {
		max-width: 220px;
		margin-bottom: 50px;
	}
	#footer .container-fluid {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}


@media screen and (max-width: 991px) {
	body {
		font-size: 13px;
	}
	.h2, h2 {
		font-size: calc(1.1rem + .9vw);
	}
	.h3, h3 {
		font-size: calc(1.1rem + .6vw);
	}
	
	ul.right-actions li:nth-child(2) {
		display: none !important;
	}
	
	.about img, .about video {
		position: relative;
		height: auto;
		max-height: 300px;
		width: 100%;
		/*border-radius: calc(var(--borderRadius) / 3);*/
		margin-bottom: 20px;
		left: unset !important;
		right: unset !important;
		aspect-ratio: 4/3;
	}
	
	.whitebox .h2,
	.whitebox h2,
	.about h2,
	.h2, h2 {
        font-size: calc(1.1rem + .9vw);
    }
	.about h2 {
		margin-bottom: 1em;
	}
	.section-type-banner h2 {
		margin-bottom: 1rem;
	}
	h2.bigger {
		font-size: calc(1.4rem + .9vw);
	}
	
	.akira-section.section-type-tekst .row > img.left,
	.akira-section.section-type-tekst .row > video.left,
	.akira-section.section-type-tekst .row > img.right,
	.akira-section.section-type-tekst .row > video.right {
		position: static;
		width: calc(100% - 1.5rem);
		max-width: 100%;
		margin: 0px .75rem 30px;
	}

	.akira-section {
		position: relative;
		overflow-x: hidden;
	}
	.akira-section.section-type-tekst.section-whitebox .row > img.right,
	.akira-section.section-type-tekst.section-whitebox .row > video.right{
		position: relative;
		right: -100px;
		margin: 0;
	}
	.akira-section.section-type-tekst.section-whitebox .row > div {
		position: relative;
		z-index: 1;
		margin-top: -30%;
	}
	
	#footer .brand {
		max-width: 170px;
		margin-bottom: 0;
	}
	
	.whitebox {
    	padding: 40px;
	}
	
	.home .about img {
		width: 100%;
	}
	
	.section-type-map .row > div:first-child .whitebox {
		border-radius: var(--borderRadius) var(--borderRadius) 0 0;
	}
	.section-type-map .row iframe {
		border-radius: 0 0 var(--borderRadius) var(--borderRadius);
	}
	
	#footer p + p {
		margin-top: .5rem;
	}
	#footer svg.footericon {
		width: 16px;
		height: 16px;
	}
	
	#quote .h1 {
		font-size: 4vw;
		margin-bottom: 3vw;
	}
	
}

@media screen and (max-width: 782px) {
	body.admin-bar #header {
		top: 46px;
	}
}

@media screen and (max-width: 768px) {
	#header div .logo {
		max-width: 150px;
	}
	.btn {
		font-size: 12px;
		padding: 10px 18px;
	}
	
	#pagetitle {
		padding-top: calc(79px + 20px);
		padding-bottom: 40px;
	}
	.page-template-page-contact #pagetitle {
		padding-bottom: 60px;
	}
	section {
		padding: 40px 0;
	}
	#about {
		padding: 40px 0;
	}
	
	.section-type-banner {
		padding: 40px 0;
		min-height: 300px;
	}
	.pb-120 {
		padding-bottom: 40px;
	}
	.pt-120 {
		padding-top: 40px;
	}
	
	.page-template-default section#main {
		margin-top: -20px;
	}
	#information {
		padding-bottom: 40px !important;
	}
	#information .container {
		margin-top: -20px;
		margin-bottom: 0px;
	}
	
	.section-type-hero h1 {
		font-size: 40px;
		margin-bottom: 36px;
	}
	.section-type-hero p {
		font-size: 15px;
	}
	
	#footer img {
		max-width: 140px;
	}
	#footer {
		font-size: 13px;
	}
	#footer h3 {
		font-size: 17px;
	}
	#copyright {
		font-size: 11px;
	}
	
	.whitebox.parent-category .text p {
		opacity: 1;
		visibility: visible;
	}
	
	#header.scrolled {
		box-shadow: 0 0 20px rgb(0 0 0 / 80%);
	}
	
}
@media screen and (max-width: 600px) {
	body.admin-bar #header.scrolled {
		top: 0;
	}
	
	#copyright p {
		display: block;
	}
	#copyright .sep {
		display: block;
		width: 100%;
		height: 0px;
		border-right: none;
		margin: 5px 0;
	}
}
@media screen and (max-width: 580px) {
	.services .service-box img {
		margin: -20px 0 -10px;
	}
}
@media screen and (max-width: 512px) {
	#header .container > div:first-child {
		min-width: 80px;
	}
	
	.btn {
    	font-size: 11px;
		padding: 10px 20px;
	}
	#header .btn > span > span {
		display: none;
	}
	
	.btn.btn-primary svg, .btn.btn-secondary svg {
		width: 16px;
		height: 16px;
		margin-right: 5px;
	}
}
@media screen and (max-width: 450px) {
    #header .btn {
        font-size: 11px;
        padding: 7px 12px;
    }
}