/* Dick Niklas Bygg & Inredning AB */

/* Typsnitt */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

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

	/* 	Colors */
	--primary-color: 36, 50, 101;
	--secondary-color: 238, 119, 77;

	--accent-light-blue-color: 133, 182, 222;
	--accent-light-gray: 240, 244, 247;

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

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

	/* 	Mobile nav */
	--activate-mobile-menu: 1000;
	--mobile-menu-height: 6rem;
	--mobile-menu-bg: 255, 255, 255;
}

@media only screen and (max-width: 750px) {
	:root {
		--base-size: 1.5rem;
	}
}

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

.section-block-wrapper {
	max-width: 150rem;
}

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

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

.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;
}

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

.pt-2 {
	padding-top: 2rem;
}

.p-8 {
	padding: 8rem;
}

.p-4 {
	padding: 4rem;
}

/* Speciella margins */
.m-0-auto {
	margin: 0 auto;
}

.mb--2rem {
	margin-bottom: -2rem;
}

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

.mw-1100 .section-block-wrapper {
	max-width: 110rem;
}

.mw-1200 .section-block-wrapper {
	max-width: 120rem;
}

.mw-none .section-block-wrapper {
	max-width: none;
}

@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;
	}

	.p-8 {
		padding: 4rem;
	}
}

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

/* Rubriker */
.section-title {
	font-size: 4.5rem;
	line-height: 1.2;
	font-weight: 300;
	padding: .9rem 0;
	color: rgb(var(--primary-dark-color));
	font-family: 'Archivo', sans-serif;
}

.small-title {
	font-family: 'Archivo', sans-serif;
	font-size: 2.5rem;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: 0;
	margin-bottom: 1rem;
	color: rgb(var(--primary-color));
}

.ingress {
	font-size: 2.2rem;
	color: rgb(var(--primary-color));
	line-height: 1.8;
	font-weight: 400;
	font-family: 'Archivo', sans-serif;
}

.text-label {
	font-size: 1.5rem;
	text-transform: uppercase;
	font-family: inherit;
	letter-spacing: 0.2rem;
	padding-bottom: 0.3rem;
	font-weight: 400;
	color: rgb(var(--primary-color));
}

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

a {
	color: rgb(var(--primary-color));
	font-size: 1.6rem;
	font-weight: 300;
	text-decoration: none;
}

/* Ovriga klasser */
.text-bold {
	font-weight: 700;
}

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

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

.text-block {
	max-width: 80rem;
}

.text-block.center {
	text-align: center;
	margin: 0 auto;
}

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

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

	.ingress {
		font-size: 1.8rem;
	}
}

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

	.section-title {
		font-size: 3.6rem;
	}

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

	.text-block.p-4 {
		padding: 3rem 2rem;
	}
}

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
	display: inline-block;
	min-width: 20rem;
	padding: 1.4rem 3rem;
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
	border-radius: 0rem;
	border-top-right-radius: 0;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

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

.btn-secondary-filled:hover,
.ContactSubmit:hover {
	color: rgb(var(--white-color));
	border: 1px solid transparent;
	background-color: rgba(var(--secondary-color), .7);
}

.btn-primary-filled:hover {
	color: rgb(var(--white-color));
	border: 1px solid transparent;
	background-color: rgba(var(--secondary-color));
}

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

.btn-secondary-filled,
.ContactSubmit,
.btn-white-filled:hover {
	color: rgb(var(--white-color));
	border: 1px solid rgb(var(--secondary-color));
	background-color: rgb(var(--secondary-color));
}

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

/* Arrow link */
.arrow-link {
	padding-right: 1rem;
	font-weight: 600;
	font-size: 1.5rem;
	color: rgb(var(--primary-color));
	border-top: 2px solid rgb(var(--gray-dark-color));
	padding-top: 2rem;
	padding-left: 10rem;
}

.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: 5rem;
	height: 5rem;
	padding: 0;
	margin: .5rem;
	font-size: 0;
	color: rgb(var(--primary-color));
	text-decoration: none;
	border-radius: 50%;
	border: 1px solid rgb(var(--white-color));
	background-color: rgb(var(--white-color));
	transition: .3s ease;
}

.circle-icon:hover {
	color: rgb(var(--secondary-color));
	background-color: transparent;
	border: 1px solid rgb(var(--white-color));
}

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

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

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


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


/* Pil */
.arrow-right {
	position: relative;
}

.arrow-right::after {
	content: '\2192';
	position: absolute;
	top: 5rem;
	right: 0;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1;
	transform: translateX(50%);
	color: rgb(var(--secondary-color));
}

@media only screen and (max-width: 550px) {
	.arrow-right::after {
		transform: rotate(90deg);
		bottom: -1rem;
		right: 46%;
		top: auto;
	}
}

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

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

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

/* Bakgrunder */
.bg-gray-light {
	background-color: rgb(var(--gray-light-color));
}

.bg-lightblue .section-block {
	background-color: rgb(var(--accent-light-gray));
}

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

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


.gradient-gray-secondary .section-block {
	background-image: linear-gradient(to bottom, rgb(var(--gray-light-color)) 50%, rgb(var(--secondary-color)) 50%);
}

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

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

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

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

/* Bredder för specifika cards */
.cards-wrapper .card-item.w-100 {
	width: calc(100% - 2rem);
	margin: 1rem;
}

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

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

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

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

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

	.cards-wrapper .card-item.w-33,
	.cards-wrapper.w-33 .card-item {
		width: 100%;
	}
}

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

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

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

.cards-2 .icon-wrapper {
	display: none;
}

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


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


/* Cards 10 */
.cards-10 .card-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 40rem;
	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%;
}

.cards-10 .image-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(var(--black-color), 0.4);
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.cards-10 .card-item:hover .image-wrapper::after {
	background: rgba(var(--black-color), 0.6);
}

.cards-10 .text-wrapper {
	z-index: 1;
	position: relative;
	padding: 5rem;
	color: rgb(var(--white-color));
}

.cards-10 .text-wrapper.border {
	margin: 5rem;
	border: 1px solid rgb(var(--white-color));
}

.cards-10 .card-item .text-wrapper p:not(.btn),
.cards-10 .card-item .text-wrapper .small-title {
	color: rgb(var(--white-color));
}

@media only screen and (max-width:550px) {
	.cards-10 .text-wrapper {
		padding: 2rem;
	}

	.cards-10 .text-wrapper.border {
		margin: 2rem;
	}
}

/* Logos 1 */
.logos-1 .card-item {
	text-align: center;
}

.logos-1 img {
	width: auto;
	transition: 0.2s ease-in-out;
}

.logos-1 img:hover {
	opacity: 1;
	filter: none;
	transform: scale(1);
}

@media only screen and (max-width: 868px) {
	.logos-1 img {
		max-height: 8rem;
	}
}

/* Cards 14 */
/*.cards-14 {
	max-width: 50rem;
}*/

.cards-14 .card-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	padding: 1rem;
	transition: all .2s ease;
	border-bottom: 5px solid rgba(var(--black-color), 0.1);
}

.cards-14 a.card-item:hover {
	text-decoration: none;
	background-color: rgba(var(--black-color), 0.1);
	transition: all .3s ease;
}

.cards-14 i {
	width: 5rem;
	color: rgb(var(--secondary-color));
	font-size: 3rem;
}

.cards-14 p {
	padding-bottom: 0;
	font-size: 1.4rem;
}

.cards-14 .contact-info {
	font-size: 1.6rem;
	font-weight: 400;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
	display: flex;
	flex-wrap: wrap;
}

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

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

.split-image {
	width: 50%;
}

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

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

/* Speciella bredder */
.split-wrapper .w-60 {
	width: 60%;
}

.split-wrapper .w-40 {
	width: 40%;
}

/* Speciella margins */
.split-wrapper .ml--18rem {
	z-index: 1;
	position: relative;
	margin-left: -18rem;
}

.split-wrapper.ml--18 {
	margin-left: -18rem;
}

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

	.split-wrapper.ml--18 {
		margin-left: -12rem;
	}
}

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

	.split-content,
	.split-wrapper .w-60,
	.split-wrapper .w-40 {
		width: 100%;
	}

	.split-image {
		width: 100%;
		min-height: 30rem;
	}

	.split-content {
		padding: 4rem 2rem;
	}

	/* Speciella margins */
	.split-wrapper .mt--20 {
		margin-top: 0;
	}

	/* Speciella margins */
	.split-wrapper .ml--18rem,
	.split-wrapper.ml--18 {
		margin-left: 0;
	}
}

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

/* Bakgrundsbild
========================================================================== */
.bg-image {
	position: relative;
	background: linear-gradient(90deg, rgba(var(--black-color), .2) 0%, rgba(var(--black-color), .5) 0%, rgba(var(--black-color), 0.0) 100%);
}

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

/* bildspel */
.crossfade {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.crossfade div {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-attachment: scroll/fixed;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

/* Bakgrundsvideo
========================================================================== */
.bg-video {
	position: relative;
}

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

.bg-video-wrapper video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
}

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

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

/* Header / Navigation
========================================================================== */
header {
	background-color: rgb(var(--white-color));
	z-index: 15;
	transition: all .2s ease;
}

header.scrolled {
	transition: all .2s ease;
}

header .container {
	padding: 0 2rem;
}

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

header.scrolled .header-logo a {
	color: 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;
}

.mobile-menu .header-cta-wrapper .btn {
	min-width: unset;
	padding: 8px 1.2rem;
	margin: 0 .5rem;
}

.mobile-menu .circle-icon {
	width: 3rem;
	margin-left: 1rem;
}

/* nav */
nav.mainmenu a {
	font-weight: 400;
	font-size: 1.4rem;
	font-family: inherit;
	color: rgb(var(--black-color));
}

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

/* Gom hem */
nav.mainmenu ul.TemplateMenu>li:first-child {
	display: none;
}

.EditMode nav.mainmenu ul.TemplateMenu>li:first-child {
	display: inline-block;
}

/* Ta bort klick */
body:not(.EditMode) .TemplateMenu a[href="/17/8/tjanster/"] {
	pointer-events: none;
}

@media only screen and (max-width: 1024px) {
	header .container {
		padding: 0 1rem;
	}
}

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

/* Top-section
========================================================================== */
.top-section {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	max-width: 100% !important;
	background-color: rgb(var(--black-color), .4);
	margin-top: calc(-1 * var(--menu-height));
}

.top-section .section-block {
	padding-bottom: 5rem;
}

.top-section h1 {
	font-size: 8rem;
	font-weight: 500;
	line-height: 1.3em;
	padding-bottom: .3em;
	text-align: center;
	font-family: 'Archivo';
	color: rgb(var(--white-color));
}

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

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

	.top-section h1 {
		font-size: 4.5rem;
	}

}

/* Tjanster
========================================================================== */
.section-services {
	overflow: hidden;
}

.section-services .split-wrapper.reverse .section-title {
	background-color: rgb(var(--secondary-color));
	color: rgb(var(--white-color));
	padding: 2rem;
	margin-left: -7rem;
	margin-bottom: 2rem;
	position: relative;
	z-index: 5;
}

.section-services .split-wrapper .section-title {
	margin-left: 0;
	margin-right: -7rem;
	background-color: rgb(var(--secondary-color));
	color: rgb(var(--white-color));
	padding: 2rem;
	margin-bottom: 2rem;
	position: relative;
	z-index: 5;
}

.section-services .pl-2 {
	padding-left: 2rem;
}

@media only screen and (max-width: 1000px) {
	.section-services .split-wrapper.reverse .section-title {
		margin-left: -5rem;
		max-width: 98%;
	}

	.section-services .pl-2 {
		padding-left: 0;
	}
}

@media only screen and (max-width: 580px) {
	.section-services .split-wrapper {
		font-size: 3rem;
	}

	.section-services .split-wrapper.reverse .section-title,
	.section-services .split-wrapper .section-title {
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0;
		padding: 0;
		color: rgb(var(--secondary-color));
		background: transparent;
	}
} 

/* Instagram
========================================================================== */
.section-instagram {
	overflow: hidden;
}

.section-instagram .section-block {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}

.section-instagram .section-block-wrapper {
	max-width: none;
}

.section-instagram .text-block-center {
	padding-left: 2rem;
	padding-right: 2rem;
}

/* News section, ligger nu dold drf har jag inte tagit bort dessa.
========================================================================== */
.news-section {
	overflow: hidden !important;
}

.news-section .section-block {
	position: relative;
	z-index: 1;
}

.LayoutPage .news-section {
	overflow: hidden;
}

.news-section .section-block {
	padding: 12rem 0;
	background: #eee;
}

.news-section .section-block-wrapper {
	max-width: 150rem;
}

.news-section .heading-type * {
	text-align: left;
}

.news-section .heading-type {
	padding-bottom: 2rem;
	padding-left: 5rem;
}

.news-section .heading-type h2 {
	padding-bottom: 2rem;
}

.news-section .heading-type p {
	max-width: 60rem;
}

.LayoutPage .services .section-block-wrapper {
	max-width: 150rem;
}

.LayoutPage .services .section-block {
	background: linear-gradient(to bottom, #f8f8f8 40%, #FFF 40%);
	position: relative;
}

.scroll-wrapper {
	max-width: 130rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 5rem;
	overflow-x: visible;
}

.scroll-wrapper .slick-list {
	overflow: visible;
}

.scroll-card {
	width: 80rem;
	background-color: #ee774d;
	vertical-align: top;
	margin: 0 3rem 2rem 0;
	transition: all .3s ease;
	position: relative;
	border-radius: 2px;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1);
}

.scroll-card:last-child {
	margin-right: 0;
}

.scroll-image-wrapper {
	height: 50rem;
	width: 100%;
	overflow: hidden;
}

.scroll-image {
	object-fit: cover;
	width: 100%;
	height: 100% !important;
}

.scroll-card:hover {
	text-decoration: none;
}

.scroll-text-wrapper {
	position: relative;
	padding: 2rem;
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 80%;
	background-color: #ee774d;
}

.scroll-card h3 {
	font-size: 1.9rem;
	color: #fff;
	padding: 0 0 .4rem 0;
	font-weight: 700;
}

.scroll-card p {
	font-size: 1.4rem;
	color: #fff;
}

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

	.scroll-wrapper {
		padding: 0 2rem;
	}

	.scroll-card {
		margin: 0 2rem 2rem 0;
	}

}

/* Slick settings  */
.slick-list.draggable {
	overflow: visible;
}

.slick-prev,
.slick-next {
	top: -7.5rem;
	width: 4rem;
	height: 4rem;
	border: 1px solid #ee774d;
	background-color: #ee774d;
	border-radius: 2px;
}

.slick-prev:hover,
.slick-next:hover {
	border: 1px solid #ee774d;
	background-color: #ee774d;
}

.slick-prev:focus,
.slick-next:focus {
	border: 1px solid #ee774d;
	background-color: #ee774d;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
	opacity: .5;
}

.slick-prev {
	left: auto;
	right: 13rem;
}

.slick-next {
	right: 8rem;
}

.slick-prev:before,
.slick-next:before {
	color: #fff;
	font-family: 'Font Awesome 5 Pro';
}

.slick-prev::before {
	content: '\f104';
}

.slick-next::before {
	content: '\f105';
}

@media only screen and (max-width: 980px) {
	.news-section .heading-type p {
		max-width: 50rem;
	}
}

@media only screen and (max-width: 700px) {
	.news-section .heading-type {
		padding-bottom: 12rem;
	}
}

@media only screen and (max-width: 630px) {
	.news-section .heading-type {
		padding-left: 2rem;
	}

	.news-section .slick-next {
		right: 2rem;
	}

	.news-section .slick-prev {
		right: 7rem;
	}
}

/* Instagram
========================================================================== */
.insta-wrapper {
	padding-top: 3rem;
}

/* Slider logos
========================================================================== */
.section-slider {
	overflow: hidden;
}

/* Call to action, CTA
========================================================================== */
.section-cta .section-block {
	z-index: 1;
	position: relative;
	background-image: linear-gradient(to bottom, rbg(var(--white-color)) 50%, rgb(var(--primary-color)) 50%);
}

.cta-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background-color: rgb(var(--accent-light-gray));
	width: 100%;
	padding: 5rem 4rem;
	text-align: left;
	position: relative;
	bottom: -2rem;
	z-index: 5;
}

.cta-wrapper .btn-wrapper {
	align-self: center;
	margin: 0;
}

.cta-wrapper p {
	max-width: 70rem;
}

@media only screen and (max-width: 1080px) {
	.cta-wrapper {
		flex-wrap: wrap;
	}
}

@media only screen and (max-width: 1080px) {
	.cta-wrapper {
		padding: 4rem 2rem;
	}
}

/* ==========================================================================
Undersidor
========================================================================== */

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50vh;
	padding: 10rem 4rem 4rem;
}

.hero .section-block-wrapper {
	width: 100%;
}

@media only screen and (max-width: 580px) {
	.hero {
		min-height: 40vh;
	}

	.hero .section-block {
		padding: 4rem 2rem;
	}
}

.SubPage .top-section {
	display: none;
}


/* Text kolumner
========================================================================== */
.text-columns .col-0,
.text-columns .col-1 {
	display: flex;
	align-self: center;
}

/* Galleri, aterkommer
========================================================================== */
.cards-gallery {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: 6vw;
	gap: 2rem;
}

.cards-gallery .card-item {
	grid-column: span 4/span 4;
	grid-row: span 3/span 3;
	border-radius: 2px;
}

.cards-gallery .card-item:nth-child(8n+3) {
	grid-row: span 2/span 2;
}

.cards-gallery .card-item:nth-child(8n+4) {
	grid-column: span 8/span 8;
}

.cards-gallery .card-item:nth-child(8n+5) {
	margin-top: calc(-1 * (6vw + 2rem));
}

@media only screen and (max-width: 1200px) {
	.cards-gallery {
		gap: 1rem;
	}

	.cards-gallery .card-item:nth-child(8n+5) {
		margin-top: calc(-1 * (6vw + 1rem));
	}
}

@media only screen and (max-width: 580px) {
	.cards-gallery {
		gap: .5rem;
	}

	.cards-gallery .card-item:nth-child(8n+5) {
		margin-top: calc(-1 * (6vw + .5rem));
	}
} 

/* ==========================================================================
Undersida > Kok och forvaring
========================================================================== */
.section-kitchen-quote {
	background-image: url('/assets/images/kok/dn-bygg-inredning-kok-forvaring-galleri-41.jpg');
}

.section-kitchen-quote .section-block {
	background-color: rgb(var(--black-color), .4); 
}

/* Koksluckor
========================================================================== */
.koksluckor {
	overflow: hidden;
}

.koksluckor .slick-slider {
	margin-top: 7rem;
} 
 
/* slick knappar */
.koksluckor .slick-arrow {
	position: absolute;
	top: -4rem;
	width: 4rem;
	height: 4rem;
	font-size: 0;
	background-color: rgb(var(--secondary-color));
	border: 1px solid rgb(var(--seocondary-color));
	border-radius: 50%;
	cursor: pointer;
	transition: .4s;
}

.koksluckor .slick-arrow::after {
	color: rgb(var(--white-color));
	font-weight: 400;
}

.koksluckor .slick-arrow:not(.slick-disabled):hover,
.koksluckor.slick-arrow:not(.slick-disabled):focus {
	background-color: rgb(var(--primary-color));
}

.koksluckor .slick-arrow.slick-disabled {
	opacity: .5;
}

.koksluckor .slick-prev {
	right: 5rem;
}

.koksluckor .slick-next {
	right: 0;
}

.koksluckor .scroll-image {
	padding: 1.5rem;
}

@media only screen and (max-width: 700px) {
	.koksluckor .slick-arrow {
        top: -3.5rem;
    }

	.koksluckor .scroll-image {
		padding: .5rem;
	}
}

/* ==========================================================================
Undersida > Tidigare proojekt
========================================================================== */
.section-projects .cards-10 .image-wrapper::after {
	background-color: transparent;
}

/* ==========================================================================
Undersida > Ovriga byggtjanster
========================================================================== */
.sub-ovriga .intro-section .split-image {
	max-height: 65rem;
}

.intro-about-section {
	padding-left: 23rem;
}

.about-wrap {
	width: 70rem;
	background-color: rgb(var(--primary-color));
	padding: 5rem;
	margin-top: -25rem;
	position: absolute;
	right: 35%;
}

.about-wrap p,
.about-wrap li {
	color: rgb(var(--white-color));
}

.about-wrap ul {
	margin-block-start: 0;
}

.about-wrap p,
.about-wrap li {
	font-size: 1.45rem;
	line-height: 1.8;
}

@media only screen and (max-width: 1350px) {
	.about-wrap {
		margin-top: -21rem;
	}
}

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

	.about-wrap {
		width: 100%;
		right: 0;
		left: 0;
		margin-top: -8rem;
		position: inherit;
		padding: 3rem;
	}

	.intro-about-section {
		padding-left: 0;
	}
}

/* Vi erbjuder aven tjanster inom...
========================================================================== */
.other-services {
	background-image: url(/assets/images/badrum/dn-bygg-badrum-2.jpg);
}

.other-services .section-block {
	background-color: rgb(var(--black-color), .3);
}

/* ==========================================================================
Undersida > Om oss
========================================================================== */

/* Crossfade
========================================================================== */
.section-fade {
	border: 3rem solid rgb(var(--white-color));
	min-height: 60vh;
}

/* Liten bla ruta */
.offert-bubble .block-object {
	display: flex;
	justify-content: flex-end;
}

.bubble-wrap {
	max-width: 45rem;
	position: relative;
	margin-top: -18rem;
	margin-right: 8rem;
	border-radius: 0;
	padding: 5rem;
	display: flex;
	align-items: center;
	background-color: rgb(var(--primary-color));
}

.bubble-wrap p {
	color: rgb(var(--white-color));
}

.bubble-wrap li {
	font-size: 1.8rem;
}

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

	.bubble-wrap {
		margin-top: -20rem;
		margin-right: 5rem;
		margin-left: 3rem;
	}
}

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

	.bubble-wrap {
		margin-right: 0;
		margin-top: 0;
		margin-left: 0;
		padding: 4rem 3rem;
	}

	.section-fade {
		border: 2rem solid rgb(var(--white-color));
	}
}

/* ==========================================================================
Undersida > kontakt
========================================================================== */

/* Formularet
========================================================================== */
.contact-form .col-0 {
	display: flex;
	align-self: center;
}

.ContactForm {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: rgb(var(--primary-color));
	padding: 4rem;
	position: relative;
	top: -2rem;
}

.ContactForm div {
	width: 49%;
}

.grecaptcha-badge {
	display: none;
}

.ContactForm .ContactFormMessage,
.ContactForm .file-field,
.ContactForm .file-upload-container,
.ContactForm .file-dropzone,
.ContactForm .submit-button-container {
	width: 100%;
}

.ContactForm p {
	color: rgb(var(--white-color));
	line-height: 1.8;
	font-weight: 500;
	font-size: 1.4rem;
}

.ContactForm input[type="text"],
.ContactForm textarea {
	border: none;
	background-color: rgb(var(--white-color));
}

.ContactForm textarea {
	height: 20rem;
}

/* Bifoga filer */
.contact-form .ContactForm .file-dropzone {
	background-color: rgb(var(--primary-color));
	color: rgb(var(--white-color));
	border-color: rgb(var(--white-color));
	margin-bottom: 3rem;
}

.ContactForm .file-dropzone i {
	color: rgb(var(--white-color));
}

/* Kontaktmeddelande */
.ContactSentMessage {
	padding: 4rem;
}

@media only screen and (max-width: 980px) {
	.contact-form .section-block {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}

	.ContactForm {
		top: 0;
	}
}

@media only screen and (max-width: 600px) {
	.ContactForm div {
		width: 100%;
	}
}

/* Karta
========================================================================== */
.map {
	font-size: 0;
}

@media only screen and (max-width: 600px) {
	.map iframe {
		max-height: 40rem;
	}
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
	background-color: rgb(var(--primary-color));
	color: rgb(var(--white-color));
}

.footer-container {
	max-width: 160rem;
	padding: 0 2rem;
	margin: 0 auto;
}

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

.footer-menu {
	width: 20%;
	margin: 1.5rem 0;
}

.footer-menu:last-child {
	width: 15%;
}

.footer p,
.footer li,
.footer a {
	font-weight: 300;
	font-size: 1.6rem;
	line-height: 1.8;
	color: rgb(var(--white-color));
}

.footer .text-label {
	font-size: 1.7rem;
	font-weight: 700;
	padding-bottom: .5rem;
	text-transform: none;
	letter-spacing: normal;
	color: rgb(var(--secondary-color));
}

.footer .circle-icon {
	width: 3.5rem;
	height: 3.5rem;
	color: rgb(var(--secondary-color));
}

.footer .circle-icon .fab {
	margin-left: 3px;
}

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

.footer a:hover {
	color: rgb(var(--secondary-color));
}

/* Footer bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
}

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

.footer-bottom .circle-icon {
	width: 3rem;
	height: 3rem;
}

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

/* WebbEss Stamp */
.webbess-stamp {
	min-width: 20rem;
}

.webbess-stamp a {
	padding: 0;
	font-size: 1.3rem;
	font-weight: 400;
	vertical-align: middle;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.webbess-stamp img {
	max-width: 3rem;
	margin-left: 1rem;
	filter: invert();
}

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

	/* Footer top */
	.footer-menu {
		width: 48%;
	}

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

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

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

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

	.webbess-stamp a {
		justify-content: flex-start;
	}

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

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

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

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

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