/* Byggfirma Lundby Bygg AB */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Lato:wght@300;400;700&display=swap');

/* ==========================================================================
Generellt 
========================================================================== */
:root {
	/* 	Layout  */
	--col-padding: 3rem;
	--menu-height: 9rem;
	--menu-height-scrolled: 8rem;
	--section-width: 140rem;

	/* 	Colors */
	--primary-color: 153, 89, 8;

	--accent-beige-color: 241, 238, 228;
	--accent-beige-dark-color: 153, 89, 8;
	--accent-beige-light-color: 220, 147, 45;
	--accent-beige-lighter-color: 248, 218, 131;

	--black-color: 0, 0, 0;
	--gray-light-color: 242, 242, 242;
	--white-color: 255, 255, 255;

	/* 	Typography */
	--base-size: 1.55rem;

	/* 	Mobile nav */
	--activate-mobile-menu: 1000;
	--mobile-menu-height: 6rem;
	--mobile-menu-bg: var(--white-color);
	--menu-color: var(--black-color);
}


/* Layout
========================================================================== */
.section-block {
	padding: 10rem 5rem;
}

/* Paddings */
.p-2 .section-block,
.p-2:not(.section-wrapper) {
	padding: 2rem;
}

.p-3:not(.section-wrapper),
.p-3 .section-block {
	padding: 3rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
	padding-top: 0;
}

.pt-2 .section-block,
.pt-2:not(.section-wrapper) {
	padding-top: 2rem;
}

.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
	padding-bottom: 0;
}

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
	padding-left: 0;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
	padding-right: 0;
}

/* Margins */
.mt--5 {
    margin-top: -5rem;
}
.mt-2 {
	margin-top: 2rem;
}

/* Specifika bredder */
.mw-none .section-block-wrapper {
	max-width: none;
}

.mw-800 .section-block-wrapper {
	max-width: 80rem;
}

.mw-1000 .section-block-wrapper {
	max-width: 100rem;
}

@media only screen and (max-width: 1024px) {
	.section-block {
		padding: 7.5rem 3rem;
	}
}

@media only screen and (max-width: 580px) {
	.section-block {
		padding: 5rem 2rem;
	}
}

/* Text och typsnitt
========================================================================== */
body {
	font-family: 'Lato', sans-serif;
}

/* Rubriker */
.text-label {
	padding-bottom: .7em;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-family: 'Cormorant Garamond', serif;
}

.section-title {
	padding-bottom: .3em;
	font-size: 5rem;
	font-weight: 500;
	line-height: 1.2;
	color: rgb(var(--black-color));
	font-family: 'Cormorant Garamond', serif;
}

.small-title {
	padding-bottom: .3em;
	font-size: 2.7rem;
	font-weight: 600;
	line-height: 1.4;
	color: rgb(var(--black-color));
	font-family: 'Cormorant Garamond', serif;
}

.ingress {
	font-size: calc(var(--base-size)* 1.2)
}

/* Brodtext och lankar */
p {
	font-weight: 300;
	color: rgb(var(--black-color));
}

a {
	color: rgb(var(--primary-color));
	font-size: inherit;
	font-weight: 400;
	text-decoration: none;
}

/* Listor */
.list-square {
	list-style: none;
}

.list-square li {
	position: relative;
	padding-left: 1.5rem;
	font-weight: 300;
}

.list-square li::before {
	content: '\f0c8';
	position: absolute;
	top: 50%;
	left: -1.5rem;
	color: rgb(var(--primary-color));
	font-weight: 700;
	font-size: 1.3rem;
	font-family: 'Font Awesome 5 Pro';
	transform: translateY(-50%);
}

/* Breadcrumbs */
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 3rem;
	padding: 0;
	list-style: none;
}

.breadcrumbs li {
	font-size: 1.3rem;
	margin: 0 5px 0 0;
}

.breadcrumbs li:not(:last-child)::after {
	content: '/';
	margin: 0 0 0 5px;
}

.breadcrumbs li:last-of-type a {
	font-weight: 300;
	text-decoration: none;
}

/* ovriga klasser */
.text-block {
	max-width: 90rem;
}

.text-block-center {
	max-width: 90rem;
	margin: 0 auto;
}

.text-block-center.mw-70 {
	max-width: 70rem;
}

.text-bold {
	font-weight: 700;
}

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

@media only screen and (max-width: 1024px) {
	.section-title {
		font-size: 3.5rem;
	}

	.small-title {
		font-size: 2.4rem;
	}
}

@media only screen and (max-width: 550px) {
	.text-label {
		font-size: 1.2rem;
	}
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.justify-center {
	justify-content: center;
}

.btn-wrapper.center {
	justify-content: center;
}

.btn-wrapper.flex-end {
	justify-content: flex-end;
}

/* Knappar */
.btn,
.Contact .ContactSubmit {
	display: inline-block;
	min-width: 20rem;
	padding: 1.4rem 2rem;
	margin: 3px;
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4rem;
	border: none;
	font-family: 'Cormorant Garamond', serif;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.btn::after {
	content: ' \2023';
	display: inline-block;
	margin-left: .5rem;
	transition: transform .4s ease;
}

.btn:hover::after {
	transform: translateX(1rem);
	transition: transform .4s ease;
}

.btn-small {
	padding: .8rem 2rem;
	min-width: unset;
}

/* Knappfarger */
.btn-primary-filled,
.ContactSubmit {
	color: rgb(var(--white-color));
	background: linear-gradient(132deg, rgba(var(--accent-beige-dark-color), 1) 0%, rgba(var(--accent-beige-light-color), 1) 29%, rgba(var(--accent-beige-lighter-color), 1) 47%, rgba(var(--accent-beige-dark-color), 1) 100%);
}

.btn-primary-filled:hover,
.ContactSubmit:hover {
	color: rgb(var(--white-color));
	border: none;
	background: linear-gradient(132deg, rgba(var(--accent-beige-dark-color), 1) 0%, rgba(var(--accent-beige-light-color), 1) 29%, rgba(var(--accent-beige-lighter-color), 1) 47%, rgba(var(--accent-beige-dark-color), 1) 100%);
}

.btn-white-filled {
	color: rgb(var(--black-color));
	border: 1px solid rgb(var(--white-color));
	background-color: rgb(var(--white-color));
}

.btn-white-filled:hover {
	color: rgb(var(--black-color));
	border: 1px solid rgb(var(--gray-light-color));
	background-color: rgb(var(--gray-light-color));
}

/* Arrow link */
.arrow-link {
	padding-right: 1rem;
	font-weight: 600;
	font-size: 1.5rem;
	color: rgb(var(--primary-color));
}

.arrow-link::after {
	content: ' \f178';
	display: inline-block;
	margin-left: .5rem;
	font-family: 'Font Awesome 5 Pro';
	font-size: .7em;
	transition: transform .4s ease;
}

.arrow-link:hover::after {
	transform: translateX(1rem);
	transition: transform .4s ease;
}

/* Cirkelikon */
.circle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	padding: 0;
	margin: .5rem;
	font-size: 0;
	color: rgb(var(--white-color));
	text-decoration: none;
	border-radius: 50%;
	background-color: rgb(var(--primary-color));
	transition: .3s ease;
}

.circle-icon:hover {
	color: rgb(var(--white-color));
	background-color: transparent;
}

.circle-icon i:before,
.circle-icon em:before {
	font-size: var(--base-size);
}

/* Bouncing arrow */
.bouncing-arrow-wrapper {
	position: absolute;
	right: 2rem;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6rem;
	height: 6rem;
	border-radius: 50% 50% 0 0;
	background: rgb(var(--white-color));
	transform: translatex(-50%);
}

.bouncing-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5rem;
	right: 2rem;
	height: 5rem;
	color: rgb(var(--white-color));
	border-radius: 50%;
	background-color: rgb(var(--accent-red-color));
}

.bouncing-arrow i {
	color: rgb(var(--white-color));
	font-size: 3rem;
	font-weight: 500;
	animation: bounce 2s infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-.7rem);
	}

	60% {
		transform: translateY(-.3rem);
	}
}

@media only screen and (max-width: 480px) {
	.btn {
		display: block;
		width: 100%;
	}
}

/* Farger
========================================================================== */
/* Bakgrundsfarger */
.bg-primary {
	background-color: rgb(var(--primary-color));
}

.bg-accent-beige {
	background-color: rgb(var(--accent-beige-color));
}

.bg-white {
	background-color: rgb(var(--white-color));
}

/* Gradient */
.gradient-primary-accent-primary {
	background: linear-gradient(132deg, rgba(var(--accent-beige-dark-color), 1) 0%, rgba(var(--accent-beige-dark-color), 1) 29%, rgba(var(--accent-beige-lighter-color), 1) 47%, rgba(var(--accent-beige-dark-color), 1) 100%);
}

.gradient-accent-beige-white {
	background-image: linear-gradient(to bottom, rgb(var(--accent-beige-color)) 40%, rgb(var(--white-color)) 30%);
}

/* Textfarger */
.text-primary {
	color: rgb(var(--primary-color));
}

.text-white {
	color: rgb(var(--white-color));
}

/* Grafiska element
========================================================================== */
/* Border radius */
.br-2 {
	border-radius: 2rem;
}

.br-50 {
	border-radius: 50%;
}

.br-half {
	border-radius: 0 35rem 35rem 0;
}

.br-half-left {
	border-radius: 35rem 0 0 35rem;
}
/* Borders */
.border-top-primary {
    border-top: 1px solid rgb(var(--primary-color));
	padding-top: 1rem;
}
/* Box shadow */
.box-shadow {
	box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

/* Osymetrisk border radius */
.blob {
	border-radius: 55% 45% 47% 53% / 52% 36% 64% 48%;
}

/* Ruta med box-shadow hogst upp */
.cutout-shadow-wrapper {
    position: relative;
}

.cutout-shadow-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    box-shadow: 0 1rem 2rem rgba(var(--black-color),.1);
}

.cutout-shadow {
    z-index: 1;
    position: relative;
    padding: 5rem;
    background-color: rgb(var(--white-color));
    border-radius: .5rem .5rem 0 0;
}

@media only screen and (max-width: 580px) {
    .cutout-shadow {
        padding: 2rem;
    }
}


/* Cards
========================================================================== */
.cards-wrapper {
	display: flex;
	flex-wrap: wrap;
}

/* Card grow */
.cards-grow .card-item {
	display: flex;
	flex-direction: column;
}

.cards-grow .card-body {
	flex-grow: 1;
}

.cards-grow .text-wrapper {
	flex-grow: 1;
}

/* Specifika bredder */
.cards-wrapper.w-20 .card-item {
	width: calc((100% / 5) - 2rem);
	margin: 1rem;
}

.cards-wrapper.w-25 .card-item {
	width: calc((100% / 4) - 2rem);
	margin: 1rem;
}

.cards-wrapper.w-33 .card-item {
	width: calc((100% / 3) - 2rem);
	margin: 1rem;
}

.cards-wrapper.w-50 .card-item {
	width: calc((100% / 2) - 2rem);
	margin: 1rem;
}

/* Generellt */
a.card-item {
	transition: .3s ease;
}

@media only screen and (max-width: 1000px) {
	.cards-wrapper.w-20 .card-item {
		width: calc((100% / 3) - 2rem);
		margin: 1rem;
	}

	.cards-wrapper.w-25 .card-item,
	.cards-wrapper.w-33 .card-item {
		width: calc((100% / 2) - 2rem);
		margin: 1rem;
	}
}

@media only screen and (max-width: 750px) {
	.cards-wrapper.w-20 .card-item {
		width: calc((100% / 2) - 2rem);
		margin: 1rem;
	}

	.cards-wrapper.w-25 .card-item,
	.cards-wrapper.w-33 .card-item,
	.cards-wrapper.w-50 .card-item {
		width: 100%;
		margin: 1rem 0;
	}
}

@media only screen and (max-width: 480px) {
	.cards-wrapper.w-20 .card-item {
		width: calc((100% / 1) - 2rem);
		margin: 1rem;
	}

	/* Paddings */
	.card-item.p-3 {
		padding: 2rem;
	}
}

/* Cards 1-1 */
.card-1-1 .card-item:hover {
	background-color: rgb(var(--primary-color), .2);
}

/* Cards-2 */
.cards-2 .card-item {
	display: flex;
	padding: 4rem;
	border-radius: 5rem;
	transition: 0.2s ease-in-out;
}

.cards-2 .icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6rem;
	height: 6rem;
	padding: 2rem;
}

.cards-2 .text-wrapper {
	display: flex;
	align-items: center;
	padding-left: 2rem;
}

.cards-2 .icon-wrapper i {
	font-size: 2.3rem;
}

@media only screen and (max-width: 580px) {
	.cards-2 .card-item {
		padding: 0;
		justify-content: start;
	}
}

/* Card-2-6 */
.card-2-6 .card-item {
	position: relative;
	padding: 0;
	border-radius: 50%;
	overflow: hidden;
}

.card-2-6 .quote {
	position: relative;
	margin: -5rem 0 2rem;
	font-size: 6.5rem;
	color: rgb(var(--primary-color));
}

/* Cards-3 */
.cards-3 .card-item {
	padding: 4rem;
	transition: all .2s ease;
	border-radius: 2rem;
}

.cards-3 a.card-item:hover {
	background: rgb(var(--primary-color));
}

.cards-3 a.card-item:hover * {
	color: rgb(var(--white-color));
	transition: all .3s ease;
}

.cards-3 .icon-wrapper i {
	font-size: 3.5rem;
	margin-bottom: 2rem;
}

.cards-3.card-item .mh-30 {
	max-height: 30rem;
}

/* Card 3-3 */
.card-3-3 .card-body {
	z-index: 1;
	position: relative;
	width: 85%;
	margin: -3rem auto 0;
	border-radius: 5px;
	overflow: hidden;
}

.card-3-3 .card-body:hover {
	background: rgb(var(--primary-color));
}

.card-3-3 .card-body:hover .small-title {
	color: rgb(var(--white-color));
	transition: all .3s ease;
}

.card-3-3 img {
	border-radius: 1rem;
}

@media only screen and (max-width: 1050px) {
	.cards-wrapper.card-3-3 .card-item:last-of-type {
		width: 100%;
		margin: 1rem 0;
	}
}

@media only screen and (max-width: 480px) {
	.card-3-3 .card-body {
		z-index: 1;
		position: relative;
		width: 90%;
		margin: -3rem auto 0;
	}
}

/* Cards 7*/
.cards-7 .card-item {
	text-decoration: none;
	background: rgb(var(--accent-beige-color));
	overflow: hidden;
	transition: transform .2s;
}

.cards-7 .card-item:hover {
	transform: scale(1.1);
}


.cards-7 .text-wrapper {
	padding: 2rem;
}

.cards-7 .small-title {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	font-size: 2rem;
	border-bottom: 1px solid rgb(var(--primary-color));
}

/* Cards 10 */
.cards-10 .card-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 30rem;
	text-decoration: none;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.cards-10 .image-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 2rem;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
	z-index: 5;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.split-wrapper.reverse {
	flex-direction: row-reverse;
}

.split-content {
	width: 50%;
	padding: 7rem;
}

.split-image {
	width: 50%;
	border-radius: 2px;
}

/* Centrera content */
.split-wrapper .align-center {
	align-self: center;
}

@media screen and (min-width: 1500px) {
	.extra-padding .split-content {
		padding: 15rem 10rem;
	}
}

@media screen and (max-width: 1300px) {
	.split-content {
		padding: 3rem;
	}
}


@media screen and (max-width: 1000px) {
	.split-content {
		width: 100%;
	}

	.split-image {
		width: 100%;
		max-height: 40rem;
	}
}

@media screen and (max-width: 580px) {
	.split-wrapper {
		background: transparent;
	}

	.split-content {
		padding: 0 2rem 3rem 2rem;
	}

}

/* Bakgrundsbild
========================================================================== */
.bg-image {
	position: relative;
}

.bg-image-wrapper {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Parallax */
.parallax {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.parallax .section-block {
	min-height: 40rem;
	background-color: rgb(var(--black-color), .4)
}

/* Bilder */
.parallax-bilar {
	background-image: url('/assets/images/bilar-2000px.jpg');
}

@media only screen and (hover:none) {
	.parallax {
		background-attachment: scroll;
		background-position: center center;
	}
}

/* Header / Navigation
========================================================================== */
/* Top header */
.top-header {
	position: relative;
	z-index: 3;
	display: flex;
	width: 100%;
	align-items: center;
	height: 4rem;
	overflow: hidden;
	transition: .3s ease;
}

.top-container {
	display: flex;
	width: var(--section-width);
	justify-content: flex-end;
	margin: 0 auto;
	padding: 0 2rem;
}

.scrolled .top-header,
.mobile-menu .top-header {
	height: 0;
}

.top-header ul {
	display: flex;
	justify-content: flex-end;
	padding: .5rem 2rem;
	margin: 0;
	list-style: none;
}

.top-header a {
	padding: 0 1rem;
	font-size: 1.4rem;
	color: rgb(var(--white-color));
}

.top-header a:hover {
	text-decoration: underline;
}

/* Header */
header {
	background-color: rgb(var(--white-color), .8);
	border-bottom: 2px solid rgb(var(--primary-color));
}

/* header logo */
.header-logo {
	flex-basis: 0;
	flex: 1 1 0px;
}

header:not(.mobile-menu) .header-logo img {
	padding: 1.5rem 0;
}

/* nav */
nav.mainmenu a {
	font-weight: 600;
	font-size: 1.5rem;
	font-family: 'Cormorant Garamond', serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgb(var(--black-color));
}

nav.mainmenu a:hover {
	color: rgb(var(--primary-color));
}

/* Dropdown */
.TemplateMenu ul {
	width: 35rem;
	border-left: 2px solid rgb(var(--primary-color));
	color: rgb(var(--black-color));
	border-bottom: 2px solid rgb(var(--primary-color));
}

/* CTA  */
.header-cta-wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-basis: 0;
	flex: 1 1 0px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.header-cta-wrapper .btn {
	min-width: unset;
	padding: .9rem 4.5rem;
}

/* Mobilmeny */
.mobile-menu .container {
	background-color: rgb(var(--white-color));
}

.mobile-menu .mainmenu {
	padding-top: calc(var(--mobile-menu-height) + 6rem);
}

.mobile-menu .TemplateMenu ul {
	width: 100%;
	border: none;
}

@media only screen and (max-width: 1540px) {
	.header-logo {
		margin-left: 2rem;
	}
}

@media only screen and (max-width: 680px) {
	.header-logo {
		margin-left: 0;
	}

	.header-cta-wrapper .btn {
		display: none;
	}

	.top-container {
		justify-content: center;
	}

	.top-header a {
		font-size: 1rem;
	}
}

/* ==========================================================================
Startsida
========================================================================== */

/* Top-section
========================================================================== */
.top-section {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 92vh;
	margin-top: calc(var(--menu-height) * -1);
	border-left: 4rem solid rgb(var(--white-color));
	background-color: rgb(var(--black-color), .5);
	background-image: url(/assets/images/graphics/border-bottom-left-rounded.svg);
	background-size: 10rem;
	background-position: left bottom;
	background-repeat: no-repeat;
	overflow: visible;
}

body:not(.EditMode) .display-none.top-section {
	display: none;
}

.top-section .section-block {
	width: 100%;
}

.top-section .text-block {
	max-width: 75rem;
}

.top-section .section-title {
	font-size: 5.5rem;
	font-weight: 600;
}

.top-section .section-title span {
	display: block;
}

.top-section .btn-primary-filled:hover {
	color: rgb(var(--white-color));
}

@media only screen and (max-width: 1200px) {
	.top-section .section-title {
		font-size: 4.5rem;
	}
}

@media only screen and (max-width: 680px) {
	.top-section {
		border-left: 2rem solid rgb(var(--white-color))
	}

	.top-section .section-block {
		padding-top: calc(var(--mobile-menu-height) + 7rem)
	}

	.top-section .section-title {
		font-size: 3rem;
	}
}

/* Om oss 
========================================================================== */
@media only screen and (max-width: 1000px) {
	.section-about .cards-wrapper {
		display: none;
	}
}

/* Referenser
========================================================================== */
.section-referense {
	overflow: hidden;
}

.section-referense .review-container {
	max-width: 70rem;
	margin: auto;
}

.section-referense .review-container .card-body {
	padding: 7rem 3rem 3rem;
}

.section-referense .cards-wrapper .slick-list {
	width: 100%;
	overflow: visible;
}

.section-referense .cards-wrapper .slick-track {
	display: flex;
	align-items: center;
}

.section-referense .cards-wrapper .card-item {
	display: flex;
	height: auto;
	flex-direction: column;
	margin: auto 2.5rem;
	background-color: rgba(var(--accent-beige-color), .7);
	border-radius: 4rem;
	opacity: 0;
	transition: opacity 300ms ease-in-out;
	transition-delay: 0.5s;
}

.section-referense .cards-wrapper .card-item.slick-active {
	opacity: 1;
	transition-delay: .2s;
}

/* ==========================================================================
Undersidor 
========================================================================== */
/* ==========================================================================
Undersida: Tjanster: enskilda sidor
========================================================================== */

/* FAQ
========================================================================== */
.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.accordion-wrapper.w-50 .accordion-item {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.accordion-item {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 1rem;
    transition: .3s ease;
}



.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    color: rgb(var(--primary-color));
    transition: .5s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 2rem 2rem;
}

.accordion-body p {
    font-size: 1.5rem;
}

@media only screen and (max-width: 800px) {
    .accordion-wrapper.w-50 .accordion-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }

    .accordion-header::after {
        right: 1rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.5rem;
    }
}


/* ==========================================================================
Undersida: Om oss
========================================================================== */

@media only screen and (max-width: 1150px) {
	.section-team .cards-wrapper.w-25 .card-item {
		width: calc((100% / 3) - 2rem);
		margin: 1rem;
	}
}

@media only screen and (max-width: 850px) {
	.section-team .cards-wrapper.w-25 .card-item {
		width: calc((100% / 2) - 2rem);
		margin: 1rem;
	}
}

@media only screen and (max-width: 580px) {
	.section-team .cards-wrapper.w-25 .card-item {
		width: 100%;
		margin: 1rem 0;
	}
}

/* ==========================================================================
Undersida: Bestallning
========================================================================== */

.section-bestallning .section-block-wrapper {
	position: relative;
	top: -5rem;
	padding: 3rem;
	border-radius: 1rem;
	background: rgb(var(--white-color));
	box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

.section-bestallning .ContactForm {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 3rem;
	background: rgb(var(--white-color));
}


/* ==========================================================================
Undersida: Kontakt
========================================================================== */

/* Sektion Bilar
========================================================================== */
.section-cars {
	height: 37.5vw;
	background-image: url(/assets/images/bilar-1920.jpg);
	background-size: cover;
}

/* Sektion Kontaktformular
========================================================================== */
.section-contact .section-block-wrapper {
	position: relative;
	top: -3rem;
	padding: 3rem;
	border-radius: 1rem;
	background: rgb(var(--white-color));
	box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

.section-contact .ContactForm {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 3rem;
	background: rgb(var(--white-color));
}

.ContactForm div {
	width: 49%;
}

.ContactForm input[type="text"],
.ContactForm textarea {
	border-radius: 1rem;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm textarea:not(.illegal),
.ContactForm input[type="number"] {
	background: rgb(var(--gray-light-color));
	border-color: rgb(var(--gray-light-color));
}

.ContactForm .ContactFormMessage {
	width: 100%;
}

.submit-button-container {
	width: 100% !important;
}

/* Dropdown */
.section-contact .field-2 {
	display: none;
}

.ContactForm select {
	width: 100%;
	height: 4rem;
	padding: 1rem 1.5rem;
	border-radius: 1rem;
	background: rgb(var(--gray-light-color));
	border-color: rgb(var(--gray-light-color));
}

.ContactForm input[type="email"]:not(.illegal),
.ContactForm select:not(.illegal) {
	background: rgb(var(--gray-light-color));
	border-color: rgb(var(--gray-light-color));
	border-radius: 1rem;
}

@media only screen and (max-width: 580px) {
	.section-contact .Contact {
		padding: 2rem;
		margin: 0;
		border-radius: 1rem;
		background: rgb(var(--white-color));
	}

	.ContactForm div {
		width: 100%;
	}

	.section-contact .section-block-wrapper {
		top: 2rem;
	}
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
	padding: 0 2rem;
	background-color: rgb(var(--white-color));
}

/* Footer logos */
.footer-logos {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -8rem;
}

.footer-logos .logo-item {
	width: 15rem;
	border-radius: 0 0 6px 6px;
	border: 1px solid rgb(var(--white-color));
	background: rgb(var(--white-color));
	border-radius: 2rem;
	border-top: none;
	padding: 0px;
	margin: 0 1rem 1rem 0;
	margin-top: -5rem;
}

.footer-logos .logo-item img {
	height: 100%;
	margin: 0 !important;
}

/* Footer top */
.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 8rem 2rem 4rem 2rem;
	border-bottom: 1px dotted rgb(var(--primary-color));
}

.footer-menu {
	width: 8%;
	margin: 1.5rem 0.5rem;
}

.footer-menu-large {
	width: 28%;
}

.footer .small-title {
	font-size: 2.3rem;
	color: rgb(var(--primary-color));
}

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

.footer p,
.footer a:not(.btn, .circle-icon) {
	color: rgba(var(--black-color));
}

.footer a:hover:not(.btn) {
	color: rgb(var(--primary-color));
}

.footer img {
	border-radius: 1rem;
	width: 15rem;
	margin: 1rem;
}

/* Footer bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
	border-top: 1px solid rgb(var(--primary-color));
}

.footer-bottom p {
	font-size: 1.4rem;
}

.footer-bottom .circle-icon {
	width: 3rem;
	height: 3rem;
	color: rgb(var(--white-color));
}

.footer-bottom em::before {
	font-size: 1.4rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
	display: flex;
	align-items: center;
	padding: 0;
	font-size: 1.4rem;
	font-weight: normal;
}

.webbess-stamp img {
	width: 3rem;
	margin-left: 1rem;
}

@media only screen and (max-width: 1024px) {
	.footer-top {
		padding-top: 4rem;
	}

	.footer-menu {
		width: 48%;
	}

	.footer-menu-large {
		width: 100%;
	}

	.footer-menu-large p {
		max-width: 55rem;
	}

	.footer-logos {
		margin-bottom: 0;
	}

	.footer-logos .logo-item {
		margin-top: 3rem;
	}
}

@media only screen and (max-width: 750px) {

	/* Footer top */
	.footer-menu,
	.footer-menu-large {
		width: 100%;
	}

	/* Footer bottom */
	.footer-bottom {
		flex-direction: column-reverse;
		align-items: flex-start;
		padding: 2rem 0;
	}

	.footer-bottom .socials {
		margin-bottom: 1.5rem;
	}
}

@media only screen and (max-width: 450px) {

	/* Footer top */
	.footer-top {
		padding: 4rem 0;
	}

	/* Footer bottom */
	.footer-bottom {
		padding: 2rem 0;
	}

	.footer-logos .logo-item {
		width: 12rem;
		border: none;
		background: transparent;
	}
}