/* Stockholms Storköksventilation AB */

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');
@import url("https://use.typekit.net/aja0jgc.css");
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Arima:wght@100..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--primary-color: #296c96;
	--secondary-color: #E6EFE9;
	--black: #0e0e0e;
}

/* ==========================================================================
    Generellt
========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

@media only screen and (hover:none) {

	*,
	*::before,
	*::after {
		background-attachment: scroll !important;
		background-position: center center;
	}
}

html {
	font-size: 62.5%;
}

body {
	background-position: center center;
	overflow-x: hidden !important;
	font-family: 'Open Sans', sans-serif;
}

body.isMobile .body-background {
	background-position: center center;
	background-size: cover;
}

.LayoutPage .section-block,
.SubPage .LayoutPage .section-block {
	padding: 15rem 5rem;
}

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

.pb-1 {
	padding-bottom: 1rem;
}

.pt-0 .section-block,
.pt-0:not(.section-wrapper) {
	padding-top: 0 !important;
}
.mb-1 {
	margin-bottom: 1rem;
}
.mb-3 {
	margin-bottom: 3rem;
}

.mt-3 {
	margin-top: 3rem;
}

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

	.LayoutPage .section-block,
	.SubPage .LayoutPage .section-block {
		padding: 10rem 2rem;
	}
}

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

	.LayoutPage .section-block,
	.SubPage .LayoutPage .section-block {
		padding: 7.5rem 1.5rem;
	}
}

.LayoutPage .section-wrapper {
	position: relative;
	z-index: 1;
}


.section-block-wrapper::after {
	content: '';
	display: table;
	clear: both;
}

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

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

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

.display-none {
	display: none;
}

.EditMode .display-none {
	display: block;
}

.primary-color {
	color: #296c96;
}

.secondary-color {
	color: #111;
}

.text-white {
	color: #FFF;
}

.gray .section-block {
	background-color: #f2f2f2;
}

.bg-primary .section-block {
	background-color: #296c96;
}

.bg-green,
.bg-green .section-block {
	background-color: rgb(42, 139, 49);
}

.bg-darkgray .section-block {
	background-color: #111;
}

.bg-salmon .section-block {
	background-color: #f8e7da;
}

.gradient-darkgray-gray .section-block {
	background-image: linear-gradient(to bottom, #111 50%, #f2f2f2 50%);
}

.gradient-white-darkgray .section-block {
	background-image: linear-gradient(to top, #111 50%, #FFF 50%);
}

/* ==========================================================================
    Buttons
========================================================================== */

.btn {
	max-width: 50rem;
	width: auto;
	box-sizing: border-box;
	padding: 1.6rem 5rem;
	border-radius: 4rem;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: .1em;
	line-height: 1em;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	display: inline-block;
}


.btn-white,
.btn-white:hover {
	background-color: #FFF;
	border-color: #FFF;
	color: #000000;
}

.btn-link,
.btn-link:hover {
	background-color: transparent;
	border-color: transparent;
	color: #111;
}

.btn-primary,
.btn-primary:hover {
	background-color: #296c96;
	border-color: #296c96;
	color: #FFF;
}

.btn-secondary,
.btn-secondary:hover {
	background-color: #E6EFE9;
	border-color: #E6EFE9;
	color: #0e0e0e;
}

.btn-green {
	background-color: rgb(42, 139, 49);
	border-color: rgb(42, 139, 49);
	color: #FFF;
}

.btn-green:hover {
	background-color: rgb(42, 139, 49);
	border-color: rgb(54, 116, 58);
	color: #FFF;
}

.btn-light-green {
	background-color: rgb(117, 194, 121);
	border-color: rgb(117, 194, 121);
	color: #FFF;
}

.btn-light-green:hover {
	background-color: rgba(117, 194, 121, 0.706);
	border-color: rgb(117, 194, 121);
	color: #FFF;
}




.btn-wrapper {
	margin-top: 5rem;
}

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

/* Button with arrow */

.btn.arrow span {
	display: inline-block;
	transform: translateX(-8px);
	transition: all .3s ease;
}

.btn.arrow:hover span {
	transform: translateX(8px);
	transition: all .3s ease;
}

.btn.arrow::before,
.btn.arrow::after {
	position: relative;
	display: inline-block;
}

.btn.arrow::before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	content: '\f0da';
	transform: translateX(-30px);
	opacity: 0;
	transition: all .5s ease;
}

.btn.arrow::after {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	content: '\f0da';
	transform: translateX(8px);
	opacity: 1;
	transition: all .5s ease;
}

.btn.arrow:hover::before {
	transform: translateX(-8px);
	opacity: 1;
	transition: all .5s ease;

}

.btn.arrow:hover::after {
	transform: translateX(30px);
	opacity: 0;
	transition: all .5s ease;
}

/* Arrow link */
.arrow-link {
	padding-right: 1rem;
	font-size: var(--base-size);
	text-decoration: none;
}

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

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

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

	.btn-wrapper .btn {
		margin: 1.5rem 0;
	}
}

/* ==========================================================================
Text och typsnitt
========================================================================== */
p {
	line-height: 1.8;
	font-size: 1.6rem;
	color: #333;
	font-family: inherit;
	font-weight: 400;
	text-decoration: none;
}

a,
li {
	line-height: inherit;
	font-size: inherit;
	color: inherit;
	font-family: inherit;
	font-weight: inherit;
}

a:hover {
	text-decoration: underline;
	color: #111;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: hightower-text, serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0px;
	line-height: 1.3;
	color: #0e0e0e;
	text-transform: normal;
}


h1 {
	font-size: 3rem;
}

h2,
h2.text-label+h3 {
	font-size: 3.6rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.8rem;
}

.lead {
	font-size: 1.25em;
}

.text-label {
	font-size: 1.6rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .2em;
	padding-bottom: 1em;
}

.h-intro {
	font-style: normal;
	font-size: .6em;
}

.text-underline {
	text-decoration: underline;
}

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

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

/* lilla "abc"-blocket */
.smalltext-type {
	max-width: none;
}

/* stora "ABC"-blocket */
.normaltext-type {
	max-width: 80rem;
	margin: 0 auto;
	text-align: center;
}

@media only screen and (max-width: 1024px) {
	h1 {
		font-size: 2.8rem;
	}

	h2,
	h2.text-label+h3 {
		font-size: 2.4rem;
	}

	h3 {
		font-size: 1.8rem;
	}

	h4 {
		font-size: 1.6rem;
	}
}

.full-width-textblock {
	position: relative;
	top: 0;
	max-width: 130rem;
	width: 100%;
	height: 100%;
	padding: 0 5rem;
	margin: 0 auto 2rem;
}

.text-wrapper {
	max-width: 60rem;
	width: 100%;
	text-align: left;
}

@media only screen and (max-width: 1024px) {
	.full-width-textblock {
		padding: 0 5rem;
	}

}

@media only screen and (max-width: 768px) {
	.full-width-textblock {
		padding: 0 2rem;
	}

}

.styled-list {
	list-style: none;
	margin: 0;
}

.styled-list.row-list {
	display: flex;
}

.styled-list li {
	font-size: 1.6rem;
	line-height: 1.8;
	position: relative;
	margin-bottom: 2rem;
}

.styled-list.row-list li {
	margin-right: 4rem;
}

.styled-list li::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	color: #111;
	position: absolute;
	left: -1.5em;
}


/* ==========================================================================
Farger
========================================================================== */
.text-light-green {
	color: rgb(117, 194, 121);
}

.bg-light-blue {
	background-color: #5c9fc9;
}


/* ==========================================================================
Split Wrapper
========================================================================== */

.split-section .normaltext-type {
	max-width: none;
}

.split-wrapper {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

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

.split-content {
	width: 55%;
	padding: 10rem 8rem;
	text-align: left;
}

.split-image {
	width: 45%;
	position: relative;
	overflow: hidden;
}

.split-image img {
	position: absolute;

	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;

	height: 100%;
	min-width: 100%;
	min-height: 100%;
	max-width: unset !important;
}

@supports (object-fit: cover) {
	.split-image img {
		position: relative;
		transform: none;
		top: unset;
		left: unset;

		object-fit: cover;
		object-position: center;
		height: 100% !important;
		width: 100% !important;
	}
}

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

	.split-content {
		padding: 1rem;
	}

}


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

	.split-content {
		width: 100%;
		max-width: 60rem;
	}

	.split-image {
		width: 100%;
	}

}

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

.parallax .section-block {
	min-height: 90rem;
	background-color: rgba(0, 0, 0, 0.508)
}

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

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



/* Layout
========================================================================== */

/* Ovriga klasser */
.justify-center {
	justify-content: center;
}

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

/* Cards
========================================================================== */
.cards-wrapper {
	display: flex;
	flex-wrap: wrap;
	padding-top: 2rem;
}

/* Specifika bredder */
.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;
}

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

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

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

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

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

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

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

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

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


	.logos-1 img {
		width: auto;
	}

}

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

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

.card-1-1 .card-item {
	border-radius: 1rem;
}

.card-1-1 .card-item p {
	text-align: center !important;
}

.card-1-1 .card-header {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 6rem;
	height: 6rem;
	margin-bottom: 1.5rem;
	margin-top: -1rem;
	background-color: #ffff;
	border-radius: 50%;
}

.card-1-1 .card-header i {
	font-size: 3.5rem;
	color: #296c96;
}

/* Logos 1 */
.logos-1 .card-item {
	text-align: center;
	padding-top: 2rem;
	margin-bottom: 4rem;
}

.logos-1 img {
	width: auto;
	max-height: 4rem;
	margin-bottom: 6rem;
}

/* ==========================================================================
Header / Navigation
========================================================================== */

header {
	background-color: transparent;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	box-shadow: none;
	height: 8rem;
}

header .container {
	max-width: none;
	padding: 0 5rem 0 2rem;
}

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

	header .container {
		padding: 0 2rem;
	}

}

header .container::after {
	content: '';
	display: table;
	clear: both;
}


/* HEADER LOGO w text*/

header .header-logo {
	z-index: 11;
	width: 17rem;
	padding: 0;
	line-height: 8rem;
	display: block;
	float: left;
	transition: all 300ms linear;
}

/* Menu */

nav.mainmenu ul.TemplateMenu>li {
	line-height: auto;
	height: auto;
	transition: all 300ms linear;
}

nav.mainmenu {
	text-align: right;
}

nav.mainmenu a {
	font-family: inherit;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 8rem;
	color: #fff;
	text-transform: none;
	padding: 0 1rem;
	transition: all 300ms linear;
}

.subpage nav.mainmenu a {
	color: #333;
}

nav.mainmenu li:hover,
nav.mainmenu li.active {
	background-color: transparent;
}

nav.mainmenu li:hover a,
nav.mainmenu li.active a {
	color: #a8a8a8 !important;
	text-decoration: none;
}

header .mobile-menu span {
	height: 2px;
	width: 100%;
	background: #000;
	border-radius: 0px;
	margin-bottom: 7px;
	display: none;
}

.nav-dropdown:after {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	font-size: .7em;
	content: '\f0d7';
	margin-left: 7px;
	text-decoration: none;
	display: inline-block;
	vertical-align: top;
}

nav.mainmenu li:hover .nav-dropdown:after {
	text-decoration: none !important;
}

/* Media query for only showing scrolled effect above 981px */
@media only screen and (min-width: 981px) {
	header.scrolled {
		background-color: #FFF;
		height: 7rem;
		box-shadow: 0 1rem 4rem rgba(0, 0, 0, .1);
		transition: all 300ms linear;
	}

	header.scrolled nav.mainmenu ul.TemplateMenu>li {
		line-height: 7rem;
		transition: all 300ms linear;
	}

	header.scrolled nav.mainmenu a {
		color: #111;
		line-height: 7rem;
		transition: all 300ms linear;
	}

	header.scrolled .header-logo {
		line-height: 7rem;
		transition: all 300ms linear;
	}

	header.scrolled .header-logo a {
		color: #011C26;
	}

}

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

	header {
		height: 5rem;
		width: 100vw !important;
		background-color: #FFF;
	}


	header .header-logo {
		width: 11rem;
		padding: 0;
		line-height: 6rem;
		float: left;
		left: 0;
	}

	header .header-logo img {
		vertical-align: top !important;
	}


	/* Hamburgarmeny – Den är default svart, men för att ändra färg eller ikon använd koden nedan.*/
	.openmenu {
		width: 5rem;
		height: 5rem;
		right: .7rem;
		top: 0;
		padding: 1.5rem 1.3rem;
	}

	nav.mainmenu {
		text-align: left;
		box-shadow: none;
		width: 100vw;
	}

	nav.mainmenu .Padding {
		border-top: none !important;
	}

	nav.mainmenu li a {
		font-size: 2rem;
		border-bottom: none;
		margin: 2rem 0px;
		color: #000 !important;
		padding-left: 40px;
		line-height: 5rem;
	}

	nav.mainmenu li:hover a,
	nav.mainmenu li.active a {
		color: #000 !important;
	}

	nav.mainmenu li:hover,
	nav.mainmenu li.active {
		background-color: transparent;
	}

	.openmenu {
		background-image: none;
	}

	.closemenu {
		background-image: none;
	}

	.closemenu::before,
	.closemenu::after {
		width: 24px;
		height: 2px;
		top: 12px;
		content: '';
		position: absolute;
		display: block;
		background-color: #000;
	}

	.closemenu::before {
		transform: rotate(45deg);
	}

	.closemenu::after {
		transform: rotate(-45deg);
	}

	header .mobile-menu span {
		display: block;
	}

}

/* ==========================================================================
Top-section
========================================================================== */

.top-section {
	height: auto;
	min-height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-title-wrap {
	position: relative;
	transform: none;
	background-color: transparent;
	top: auto;
	left: auto;
	width: 100%;
	max-width: 160rem;
	text-align: center;
	padding: 15rem 5rem;
}

.page-title-wrap h1 {
	font-size: 5rem;
	font-weight: 300;
	color: #ffffff;
	padding: 0 0 2rem;
	line-height: 1.1em;
	text-shadow: none;
}

.page-title-wrap p {
	color: #FFF;
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: .2em;
	text-align: center;
}




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

	.page-title-wrap {
		padding: 15rem 2rem;
	}

	.page-title-wrap h1 {
		font-size: 3rem;
	}

	.page-title-wrap p {
		font-size: 1.4rem;
		letter-spacing: .1em;
	}


}


#crossfade {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#crossfade::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, .5);
}

#crossfade div {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
}


/* Highlights
========================================================================== */
/*.LayoutPage .service-section {
	background-color: transparent;
} */

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

.service-section .section-block {
	padding-top: 10rem;
}

.service-title {
	font-family: hightower-text, serif;
	font-size: 2.5rem;
	line-height: 1.3;
	padding-bottom: .4em;
	color: #FFF;
}

.service-lead {
	color: #FFF;
	font-size: 1.4rem;
}


/* About
========================================================================== */
.about-split {
	position: relative;
}

.about-split .split-content {
	padding: 10rem 15rem 10rem 0;
}

.LayoutPage .block-object img.branschvinnare-2023 {
	max-width: 80% !important;
	margin-top: 1.5rem;
}

@media only screen and (max-width: 1200px) {
	.about-split .split-content {
		padding: 6rem 5rem 6rem 0;
	}
}

@media only screen and (max-width: 1000px) {
	.about-split .split-content {
		padding: 0 5rem 5rem 0;
	}
}

@media only screen and (max-width: 550px) {
	.about-split .split-content {
		padding: 0 0 5rem 0;
	}

	.LayoutPage .block-object img.branschvinnare-2023 {
		max-width: 100% !important;
	}
}

/* Koncept
========================================================================== */
.text-block {
	background: white;
	padding: 3rem;
	max-width: 95rem;
}

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

.text-block img {
	max-height: 13rem;
}

.text-block h3 {
	font-size: 2.6rem
}

.text-green {
	color: rgb(42, 139, 49);
}

.koncept-label {
	font-family: "Roboto";
	font-size: 1.8rem;
	font-weight: 400;
	padding-bottom: 0;
}

.koncept-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.info-box {
	margin-top: -1rem;
}

.info-box p {
	margin-bottom: 0.5rem;
}

.info-box i {
	color: rgb(42, 139, 49);
	font-size: 2rem;
}

.info-box .btn-wrapper {
	margin-top: 1rem;
}

@media only screen and (max-width: 700px) {
	.text-block {
		background: white;
		padding: 2rem;
	}

	.koncept-wrapper {
		flex-direction: column-reverse;
		margin-bottom: 2rem;
	}

	.koncept-wrapper img {
		margin-bottom: 1rem;
	}

	.info-box {
		margin-top: 1rem;
	}

	.text-block h3 {
		font-size: 2rem !important;
	}

	.text-block h2 {
		font-size: 1.7rem !important;
	}

}

/* Contact section
========================================================================== */


.contact-section .section-block-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #e1edf5;
	padding: 0 3rem 0 0;
}

.contact-section-green .section-block-wrapper {
	background-color: rgb(42, 139, 49);
}

.LayoutPage .contact-section .col-1 {
	z-index: 1;
	position: relative;
	width: 100%;
	max-width: 50rem;
	background-color: #FFF;
	box-shadow: 0 1rem 4rem rgba(0, 0, 0, .1);
	padding: 3rem 2.5rem;
	margin: -5rem 0;
}

.LayoutPage .contact-section .col-0 {
	padding: 7.5rem 5rem 4.5rem;
}

/* Contact form  */

.Contact .ContactForm div.ContactFormMessage p,
.Contact .ContactForm .ContactFormEmail p,
.Contact .ContactForm .ContactFormField p,
.Contact .ContactForm .ContactFormName p {
	font-family: hightower-text, serif;
	font-size: 1.4rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #333;
}

.contact-1 .Contact .ContactForm textarea.textmessage {
	max-height: 10rem !important;
}

#kontakt .ContactFormName,
#kontakt .ContactFormEmail,
#kontakt .ContactFormField,
#kontakt .ContactFormMessage {
	width: 100%;
	position: relative;
	top: auto;
	left: auto;
	display: inline-block;
}

.asterisk p:after {
	content: "*";
	font-size: 1.6rem;
	font-weight: 400;
	margin-left: 6px;
	color: red;
}

#kontakt .ContactForm input,
#kontakt .ContactForm textarea {
	border: 1px solid lightgray;
	border-radius: 5px;
	padding: 1.2em;
	height: 15rem;
}

.contact-section-start .ContactForm textarea {
	height: 28rem !important;
}

#kontakt input:focus,
#kontakt textarea:focus {
	border-color: #296c96 !important;
}

#kontakt input::placeholder,
#kontakt textarea::placeholder {
	font-size: .8em;
}

#kontakt .ContactForm .ContactSubmit {
	width: 100% !important;
	max-width: none;
	padding: 1.6rem 2rem;
	background-color: #296c96;
	border: 2px solid #296c96;
	color: #FFF;
	display: block;
	border-radius: 3px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: .2em;
	font-size: 1.4rem;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	font-family: inherit;
}

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

.contact-section-green .ContactForm .ContactSubmit {
	background-color: rgb(42, 139, 49) !important;
	border: 2px solid rgb(42, 139, 49) !important;
}

#kontakt .ContactForm .ContactSubmit:hover {
	background-color: #1b577d;
	border: 2px solid #1b577d;
	color: #FFF;
}

.contact-section-green .ContactForm .ContactSubmit:hover {
	background-color: rgba(42, 139, 48, 0.625) !important;
	background-color: rgba(42, 139, 48, 0.625) !important;
}

.LayoutPage .Contact .ContactForm div.ContactFormMessage p {
	margin-top: 10px;
}

@media screen and (-ms-high-contrast: active),
screen and (-ms-high-contrast: none) {


	#kontakt .ContactForm input:not(.ContactSubmit),
	#kontakt .ContactForm textarea {
		padding: 0 !important;
	}

}

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

	.LayoutPage .contact-section .col-1 {
		max-width: 40rem;
		padding: 2rem;
	}

	.LayoutPage .contact-section .col-0 {
		padding: 5rem 4rem;
		width: calc(100% - 40rem);
	}

}

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

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

	.LayoutPage .contact-section .col-0 {
		padding: 3rem 2rem;
	}
}

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

	.LayoutPage .contact-section .col-block {
		width: 100%;
		max-width: none;
	}

	.LayoutPage .contact-section .col-1 {
		margin: 0 0 -5rem;
	}

	.LayoutPage .contact-section .section-block-wrapper {
		padding: 3rem 3rem 0;
	}

	.contact-section-start .ContactForm textarea {
		height: 15rem !important;
	}

}

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

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

	.LayoutPage .contact-section .col-0 {
		padding: 1rem 0 3rem !important;
	}

	.LayoutPage .contact-section .col-1 {
		padding: 2rem 1rem 1rem !important;
	}

}


/* Contact Options
========================================================================== */

.contact-option-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.contact-option {
	width: 100%;
	text-align: left;
	margin-bottom: 2rem;
}

.contact-option-link {
	display: block;
	transition: all .3s ease;
	/* 	padding: 1rem; */
}

.contact-option-link:hover {
	text-decoration: none;
	background-color: #a3cce6;
	transition: all .3s ease;
}

.contact-option-link-green:hover {
	text-decoration: none;
	background-color: rgb(54, 180, 63) !important;
	transition: all .3s ease;
}

.contact-title {
	font-family: hightower-text, serif;
	font-size: 1.4rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding-bottom: .4em;
}

.contact-text {
	font-style: normal;
	line-height: 1.5;
}

/* Gallery Section
========================================================================== */
.section-gallery {
	overflow: hidden;
}

.section-gallery .figure-item {
	margin: 0 .5rem;
	transition: all .3s ease;
}

.section-gallery .figure-item[aria-hidden="true"] {
	opacity: .5;
	transform: scale(.9);
}

/* Slick Slider */
.section-gallery .slick-list {
	width: calc(100% - 3rem);
	overflow: visible;
}

/* Knappar */
.section-gallery .slick-arrow {
	z-index: 2;
	position: absolute;
	top: 50%;
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	background-color: rgb(255, 255, 255);
	opacity: .95;
	transform: translateY(-50%);
}

.section-gallery .slick-prev {
	left: 4rem;
}

.section-gallery .slick-next {
	right: 4rem;
}

.section-gallery .slick-prev:before,
.section-gallery .slick-next:before {
	color: transparent;
}

.section-gallery .slick-arrow::after {
	font-weight: 300;
}

.section-gallery .slick-dots {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	width: auto;
	padding: 0;
	margin: 0;
	background-color: rgb(255, 255, 255);
	border-radius: 2rem;
	transform: translateX(-50%);
}

.section-gallery .slick-dots li.slick-active::before {
	opacity: 1;
	color: #296c96;
	transition: all .2s ease;
}

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

	/* Slick Slider */
	.section-gallery .slick-list {
		width: calc(100% - 3rem);
	}
}

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

	/* Card */
	.section-gallery .figure-item {
		margin: 0;
	}

	/* Pilar */
	.section-gallery .slick-arrow {
		width: 3.5rem;
		height: 3.5rem;
	}

	.section-gallery .slick-prev {
		left: 3rem;
	}

	.section-gallery .slick-next {
		right: 3rem;
	}
}

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

/* Hero - Grundkod
========================================================================== */
.hero .section-block {
	display: flex;
	align-items: center;
	min-height: 15rem;
	/* margin-top: calc(-1 * var(--menu-height)); */
}

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

.hero .text-label {
	color: rgb(117, 194, 121) !important;
}

.hero h1 {
	padding-bottom: 0;
	padding-top: 0rem;
	color: rgb(42, 139, 49) !important;
}

.flex-container {
	display: flex;
	align-items: stretch;
	gap: 20px;
}

.text-content {
	flex: 1;
}


@media (max-width: 768px) {
	.flex-container {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media only screen and (max-width: 580px) {
	.hero .section-block {
		min-height: 20rem;
	}

}

/* Hero - Hero-text
========================================================================== */
.vimpel-wrapper {
	max-width: 16rem;
	margin: auto;
}

.hero-text .section-title {
	font-size: 4rem;
	color: #000000;
}

.hero-text p {
	font-size: 2rem;
}

@media only screen and (max-width: 580px) {
	.hero-text .section-title {
		font-size: 2rem;
	}

	.hero-text p {
		font-size: var(--base-size);
	}
}

/* ==========================================================================
Undersida Koncept Trygg Storkoksventilation
========================================================================== */
.subpage .top-section {
	display: none;
}

.subpage .small-title {
	font-size: 2.7rem;
}

.subpage .text-label {
	font-family: "Noto Serif", serif;
}

.subpage .vimpel-wrapper {
	height: 100%;
}

.subpage .vimpel-wrapper img {
	height: 100%;
	margin: 0;
	width: auto;
	object-fit: contain;
}

.section-koncept i {
	font-size: 2.5rem;
	margin-right: 0.5rem;
}

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

	.section-column .col-0,
	.section-column .col-1,
	.section-column .col-2 {
		width: 100% !important;
	}
}

@media only screen and (max-width: 768px) {
	.vimpel-wrapper {
		margin: inherit;
	}
}

.section-felanmalan {}

.section-felanmalan .ContactForm div {
	width: 100% !important;
}

.section-felanmalan .ContactForm .ContactFormMessage {
	width: 100% !important;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
	background-color: #FFF;
	padding: 0 5rem;
	color: #333;
	z-index: 1;
	position: relative;
	overflow: hidden;
}

.SubPage .drift-logo {
	display: none;
}

.SubPage .footer-bottom p {
	text-align: center;
	margin: auto;
}

.footer .container {
	padding: 0;
	max-width: 130rem;
	position: relative;
}

.footer p,
.footer a {
	text-align: left;
	font-size: 1.6rem;
	line-height: 2em;
	color: inherit;
}

.footer-container {
	display: flex;
	flex-direction: column;
	padding: 0;
	position: relative;
}

.footer-logo {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 5rem;
}

.footer-logo p {
	width: 100%;
	font-family: hightower-text, serif;
	font-weight: 400;
	color: #111;
	text-transform: uppercase;
	font-size: 3rem;
	text-align: center;
}

.footer-logo p::before {
	right: 0.5em;
	margin-left: -50%;
}

.footer-logo p::after {
	left: 0.5em;
	margin-right: -50%;
}

/* FOOTER MENU */

.footer-nav {
	width: 100%;
}

.footer-menu-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style-type: none;
	padding-inline-start: 0;
	margin: 0 0 5rem;
}

.footer-menu {
	text-align: center;
	width: 100%;
}

.footer-heading {
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: 400;
	color: #296c96;
}

/* FOOTER SUBMENU */

.footer-submenu {
	padding-inline-start: 0;
	list-style-type: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-bottom: 2rem;
}

.footer-submenu li {
	text-align: left;
}

.footer-submenu li:not(:last-child)::after {
	content: '/';
	position: relative;
	display: inline-block;
	margin: 0 1rem;
}

.footer-menu-link {
	font-size: 1.6rem;
	line-height: 2em !important;
}

.footer-menu-link:hover {
	color: #333;
	text-decoration: underline;
}

.footer img {
	width: 24rem;
	margin: 0 0 0 2rem;
}

.footer a img {
	width: 15rem;
}

/* FOOTER SOCIAL LINKS */
.footer .social-list {
	display: flex;
	list-style: none;
}

.footer .social {
	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 0;

	width: 4rem;
	height: 4rem;
	margin-right: 1.2rem;
	padding: 0;

	border-radius: 2rem;
	background-color: #296c96;
	color: #fff;
}

.footer .social:hover {
	background-color: #fbefee;
	color: #FFF;
	text-decoration: none;
}

.footer .social::before {
	font-family: 'Font Awesome 5 Brands';
	font-weight: 400;
	font-size: 1.7rem;

	position: relative;
	top: 1px;
}

.social-facebook::before {
	content: '\f39e';
}

.social-linkedin::before {
	content: '\f0e1';
}

.social-instagram::before {
	content: '\f16d';
}

.social-youtube::before {
	content: '\f167';
}

/* Footer Bottom */

.footer-bottom {
	border-top: 1px solid #296c96 !important;
	margin: 0 auto;
	width: 100%;
	padding: 2rem;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.footer-bottom p {
	font-size: 1.2rem;
	align-self: center;
	margin: 0 auto 0 0;
}

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

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

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

	.footer {
		padding: 0 2rem;
	}

	.footer-logo p {
		font-size: 2rem;
	}
}


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

	.footer {
		padding: 0 2rem;
	}

	.footer-logo p {
		font-size: 1.6rem;
		letter-spacing: .05em;
	}

	.footer-bottom {
		flex-direction: row;
		flex-wrap: wrap-reverse;
		justify-content: center;
		align-items: center;
	}

	.footer img {
		width: 20rem;
		margin: 0 auto 5rem;
	}

	.footer-logo p {
		text-align: center;
	}

}