/*  RSAB Allt inom VVS*/

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

@import url("https://use.typekit.net/fun4fge.css");

/* ==========================================================================
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%; 
}

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

body {
    background-color: #fff;
    background-position: right center !important;
    overflow-x: hidden !important;
	background-attachment: fixed !important;
}

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

/* Video background */
.fullscreen-bg-video {
   	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/* Layout
========================================================================== */
.LayoutPage .section-block-wrapper {
	max-width: 160rem;
}

.LayoutPage .section-block,
.SubPage .LayoutPage .section-block {
    padding: 12rem 4rem;
}

/* Full height sections */
.full-height .section-block {
	position: relative;
	min-height: 100vh;
	height: auto;
	display: flex;
	justify-content: center;
}

.LayoutPage .full-height .section-block-wrapper {
	align-self: center;
}

@media only screen and (max-width: 1024px) {
	.LayoutPage .section-block,
	.SubPage .LayoutPage .section-block {
		padding: 10rem 2rem;
	}
}

@media only screen and (max-width:830px) {
	.full-height .section-block {
		height: auto;
	}
}

@media only screen and (max-width: 600px) {
	.LayoutPage .section-block,
	.SubPage .LayoutPage .section-block {
		padding: 6rem 2rem;
	}
}

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

/* Rubriker */
h1, h2, h3, h4, h5, h6 {
	font-size: 3rem;
	font-family: inherit;
	font-weight: 300;
	letter-spacing: 0px;
	line-height: 1.3;
	color:#3c3c3c;
	text-transform: normal;
	text-transform: none;
}

.section-title { 
	font-size:4rem;
	font-weight: 600;
	color: #283890;
	padding-bottom: 1.5rem;
}

/* (Används på respektive undersida) */
.page-heading {
	font-size: 5rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	padding-bottom: 1rem;
}

.preamble {
	font-size: 2.5rem;
	padding-bottom: 3rem;
	font-weight: 300;
	line-height: 1.4;
}

.small-title {
	font-size: 2.5rem;
	padding-bottom: .5rem;
	font-weight: 500;
	line-height: 1.4;
}

/* Brödtext och länkar */
p, a , li {
	line-height: 1.8;
	font-size: 1.65rem;
	color: #5c5f63;
	font-family: inherit;
	font-weight: 300;
	text-decoration: none;
}

p { padding: 0 0 1.2em 0; }

a {
	font-size: inherit;
	font-weight: inherit;
}

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

/* List without bullets  */

.unordered-list {
	list-style-type: none;
}

/* Övriga klasser */
.bold {
	font-weight: 700;
	padding: 0;
}

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

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

/* Text i kolumner (1x2 layout) */
.text-columns .section-block .section-block-wrapper { 
	max-width: 150rem; 
}

.text-columns .section-block .col-block { 
	padding: 0 4rem; 
}

.text-columns .section-block .normaltext-type,
.text-columns .section-block * { 
	text-align: left; 
}

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

	.small-title {
		font-size: 2.5rem;
		line-height: 1.6;
		padding-bottom: 2rem;
	}

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

@media only screen and (max-width: 1350px) {
	.page-heading {
		font-size: 4rem;
		padding-bottom: 2rem;
	}

	.preamble {
		font-size: 2rem;
	}
}

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

	.small-title {
		font-size: 2rem;
		line-height: 1.4;
		padding-bottom: 2rem;
	}

	.preamble {
		font-size: 1.8rem;
		font-weight: 600;
	}

	.page-heading {
		font-size: 3.5rem;
	}

	.text-columns .section-block .col-block {
		width: 100%;
		padding: 0 0 2rem;
	}
}

@media only screen and (max-width:800px) {
	.text-columns .section-block .col-block {
		width: 100%;
		padding: 0;
	}
}

@media only screen and (max-width: 600px) {
	.page-heading {
		font-size: 2.5rem;
	}

	.heading-type h1, 
	.heading-type h2, 
	.heading-type h3,
	p, 
	li {
		text-align: left;
	}
}

@media only screen and (max-width: 450px) {
	.page-heading {
		font-size: 2rem;
	}
}

/* Knappar och specialla länkar
========================================================================== */
.btn {
	max-width: 50rem;
	width: auto;
	box-sizing: border-box;
	padding: 1.9rem 4rem;
	border-radius: .6rem;
	text-align: center;
	font-size: 1.3rem;
	letter-spacing: 0.3rem;
	line-height: 1em;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	display: inline-block;
	text-transform: uppercase;
	font-weight: 400;
}

.btn {
	background: #283890;
	border: 2px solid #283890;
	color:#fff;
}

.btn:hover {
	background: transparent;
	border: 2px solid #283890;
	color:#283890;
}

.btn-info {
	background: transparent;
	border: 2px solid #000;
	color:#000;
}

.btn-info:hover {
	background: #000;
	border: 2px solid #000;
	color:#fff;
}

.btn-filled-white {
	background: white;
	border: 2px solid white;
	color: #000;
}

.btn-outlined-white {
	background: transparent !important;
	border: 2px solid white;
	color: white;
}

.btn-black {
	background: #000;
	border: 2px solid #000;
	color: white;
}

.btn-black:hover {
	background: #2d2d2d;
	border: 2px solid #2d2d2d;
	color: white;
}

.btn-filled-white:hover {
	background: transparent;
	border: 2px solid white;
	color: white;
}

.btn-filled-black:hover {
	background: transparent;
	border: 2px solid #000;
	color: #000;
}

.btn-outlined-white:hover {
	background: white !important;
	border: 2px solid white;
	color: #000;
}

.btn-outlined-black:hover {
	background: #000 !important;
	border: 2px solid #000;
	color: white;
}

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

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

.btn-link {
	color: #fff;
}

.btn-link:hover {
	color:#fff;
}

.btn-link:after {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	content: '\f061';
	margin-left: 0.8rem;
	text-decoration: none;
	display: inline-block;
	transform: translateX(1rem);
}

.btn-link:after:hover {
	transform: translateX(1.5rem);
}

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

	.btn:last-child {
		margin-top: 1rem;
	}
}

/* Parallax
========================================================================== */
.parallax {
    max-width: 100% !important;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 55rem;
}

.parallax-1 {
	background-image: url('/assets/images/vvs-varmelement-2000px.jpg');
	background-position: center center;
}

@media only screen and (max-width:1200px) {
	.parallax {
		height: 35rem;
	}
}

/* KontaktformulÃ¤r
========================================================================== */
.LayoutPage .grecaptcha-badge {
	display: none !important;
}

.LayoutPage .section-block .Contact .ContactForm {
	display: flex;
	flex-wrap: wrap;
}

.LayoutPage .section-block .Contact .ContactForm div {
    width: 48%;
    margin: 1%;
}

.LayoutPage .section-block .Contact .ContactForm div.ContactFormMessage {
    width: 100%;
}

.LayoutPage .Contact .ContactForm textarea.textmessage { height: 15rem; }

.LayoutPage .section-block .Contact .ContactForm div.ContactFormMessage p,
.LayoutPage .section-block .Contact .ContactForm .ContactFormEmail p,
.LayoutPage .section-block .Contact .ContactForm .ContactFormField p,
.LayoutPage .section-block .Contact .ContactForm .ContactFormName p {
	color: #222;
	font-weight: 400;
	font-size: 1.3rem;
	margin-bottom: 1rem !important;
}

.LayoutPage .section-block .Contact .ContactForm input.text, 
.LayoutPage .section-block .Contact .ContactForm textarea.textmessage {
    background-color: #fff;
    padding:1rem;
    border-radius: .4rem;
    font-weight: 400;
    color: #000;
    border: 1px solid #c9c9c9 !important;
	height: auto !important;
}

.LayoutPage .section-block .Contact .ContactForm div.ContactFormMessage {
	position: relative;
	padding-top: 0;
}

.LayoutPage .Contact .ContactForm.block-object .submit-button-container {
	width: 100%;
}

.LayoutPage .Contact .ContactForm input.ContactSubmit.g-recaptcha {
    padding: 1.9rem 3rem;
    border-radius: .8rem;
    background-color: transparent;
    border: 2px solid #000 !important;
    color: #000;
    text-align: center;
    text-transform: uppercase;
	letter-spacing: .2em;
    font-weight: 400;
    font-size: 1.3rem;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    font-family: inherit;
    height: auto !important;
	max-width: 50rem;
	margin: 0 auto !important;
	display: block;
	width: 100% !important;
}

.LayoutPage .Contact .ContactForm input.ContactSubmit:hover {
	background-color: #000 !important;
	border: 2px solid #000 !important;
	color: #fff !important;
}

.LayoutPage .form-part textarea.textmessage, 
.LayoutPage .form-part input.text {
    width: 100%;
}

.LayoutPage .ContactForm .section-block ::placeholder {
	font-family: inherit;
	color: #696969;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
	.LayoutPage .ContactForm input:not(.ContactSubmit),
	.LayoutPage .ContactForm textarea {
		padding: 0 !important;
	}
}

@media only screen and (max-width: 700px) {
	.LayoutPage .section-block .Contact .ContactForm div {
		width: 100%;
		margin: 0;
	}

	.LayoutPage .ContactForm input.ContactSubmit {
		width: 100% !important;
	}
}

/* Split Wrapper
========================================================================== */
.section-split .section-block .normaltext-type { max-width: none; }
.section-split .section-block .section-block-wrapper { max-width: 160rem; }

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

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

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

.split-content {
    width: 50%;
    padding: 6rem 7rem;
    text-align: left;
    display: flex;
}

.split-content .split-text {
	align-self: center;
}

.split-image {
    width: 50%;
    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: none !important;
}

.split-content.align-center { 
	display: flex; 
}

.split-content.align-center .split-text { 
	align-self: center; 
}

/* Custom split, small-image and more content */
.split-wrapper.small-image .split-content {
	width: 65%;
}

.split-wrapper.small-image .split-image {
	width: 35%;
}

@supports (object-fit: cover) {
    .split-image img {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        object-fit: cover;
        object-position: center;
        height: 100% !important;
        width: 100% !important;
    }
    
    .split-image-product img {
		object-fit:contain !important;
	}
}

@media screen and (max-width: 1470px) {
	.split-content {
		padding: 8rem 5rem;
	}
}

@media screen and (max-width: 1100px) {
	.split-content {
		width: 100%;
		padding: 5rem;
		order: 1;
	}
	
	.split-image {
		width: 100%;
		padding: 0;
		order:0;
		max-height: 50rem;
	}
}

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

	.full-width .split-content {
		padding: 5rem 2rem;
	}

	.split-content ul {
		padding-inline-start: 2rem;
	}
} 

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

/* Header */
header {
    background-color: #fff;
	box-shadow: none;
    -moz-transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

header .container {
	max-width: none;
}

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

/* Header logo */
header .header-logo {
	width:20rem;
	padding: 1rem 2rem;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	opacity: 1;
	 -moz-transition: 0.4s ease-in-out;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

/* Navigation */
nav.mainmenu {
	text-align: right;
}

nav.mainmenu a {
	font-family: inherit;
	font-weight: 400;
	font-style: normal;
	font-size: 1.3rem;
	line-height: 7rem;
	color: #000;
	letter-spacing: 0;
	text-transform: none;
	padding: 0 1.8rem;
	margin: 0;
    transition: all 300ms linear;
}

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

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

nav.mainmenu ul.TemplateMenu > li {
    line-height: auto;
    height: auto;
    cursor: pointer;
}

/* Dropdown meny  */
nav.mainmenu a.toplevel.expandable {
	cursor: default;
}

nav.mainmenu ul > li > ul > li {
	line-height: normal;
	height: auto;
	cursor: pointer;
	padding: 0;
}

nav.mainmenu ul > li > ul > li:hover > a:before {
	display: none;
}


nav.mainmenu ul > li.expandable-li:hover {
    background-color: transparent;
}

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

nav.mainmenu ul > li > ul {
    background: #fff;
	padding: 0;
	box-sizing: border-box;
    line-height: normal;
    height: auto;
    min-width: 100%;
    width: auto;
    text-align: left;
	z-index: 10;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.109);
}

nav.mainmenu ul > li > ul a {
	background: transparent !important;
	text-decoration: none !important;
	white-space: nowrap;
	line-height: 30px;
}

nav.mainmenu ul > li > ul > li > ul {
    right: 0px;
}

nav.mainmenu ul > li > ul > li > a {
	line-height: 5rem;
}

#overlay {
	z-index: 7;
}

/* Mobilmenyn */
@media only screen and (min-width: 1181px) {
    .hamburger {
        display: none;
    }
    
    .expandable:after {
	    font-family: 'Font Awesome 5 Pro';
	    font-weight: 700;
	    content: '\f0d7';
	    margin-left: .8rem;
	    text-decoration: none;
	    display: inline-block;
	    font-size: .8em;
	    vertical-align: middle;
	}

	nav.mainmenu ul > li > ul > li a {
		line-height: 3;
		padding: 0 2rem;
		color:#444 !important;
	}
	
	nav.mainmenu ul > li > ul > li a:hover {
		background-color: #111f3d !important;
		color:#fff !important;
	}

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

@media only screen and (max-width: 1180px) {
    /* Hamburger */
	.hamburger {
	    position: absolute;
	    z-index: 99;
	    left: auto;
	    right: 2rem;
	    top: 1rem;
	}
	
	.hamburger-inner, 
	.hamburger-inner::after, 
	.hamburger-inner::before {
		color: #fff;
		background-color: #000;
	}
	
    .hamburger--menu .hamburger-inner::after {
	    content: 'MENY';
	    font-size: 1.1rem;
	    letter-spacing: .2em;
    }
    
    .hamburger-inner, 
    .hamburger-inner::after, 
    .hamburger-inner::before {
	    width: 4rem;
    }
    
    /* Navigation */
	nav.mainmenu {
		text-align: center;
		display: none;
		position: fixed;
		height: 100%;
		left: auto;
		right: auto;
		width: 100%;
		max-width: 100%;
		background-color: #fff;
		z-index: 8 !important;
		top: 0;
		box-shadow: none;
		overflow-y: scroll;
	}
	
	nav.mainmenu .Padding {
		margin: 8rem 0 !important;
	}
	
	nav.mainmenu li {
		text-align: center;
		display: block;
	}
	
	nav.mainmenu li a,
	nav.mainmenu ul > li > ul > li > a {
		margin: unset;
		padding: unset;
		padding-left: 0;
		font-size: 1.9rem;
		line-height: 4;
		color:#000 !important;
	}

	nav.mainmenu li a:hover,
	nav.mainmenu ul > li > ul > li > a:hover {
		background-color: #f8f8f8 !important;
	}
	
	#overlay {
		z-index: 7;
	    background-color: rgba(0, 0 , 0, 0.4);
	}

	/* Dropdown */

	/* Döljer Beställningsjobb */
	nav.mainmenu a.toplevel.expandable {
		display: none;
	}

	nav.mainmenu ul > li > ul {
	    background-color: #fff !important;
	    width: auto !important;
	    border: none;
	}
	
	nav.mainmenu ul > li > ul {
		display: contents !important;
	}
	
	nav.mainmenu ul > li > ul > li a {
		color: #000 !important;
	}
	
	nav.mainmenu ul > li > ul > li > a {
	    width: 100%;
	    padding: 0;
	}
	
	nav.mainmenu ul > li.expandable-li:hover > a {
		padding-bottom: 0;
	}
	 
	nav.mainmenu ul.TemplateMenu > li {
	    line-height: normal;
	    height: auto;
	}
}

@media only screen and (max-width: 600px) {
	header .header-logo {
		width:16rem;
		padding: 1.5rem 1rem;
	}
}

@media only screen and (max-width: 350px) {
	nav.mainmenu li a,
	nav.mainmenu ul > li > ul > li > a {
		font-size: 1.6rem;
		line-height: 3.5;
	}
}

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

/* Top-section
========================================================================== */
.top-section {
	display:flex;
	align-items:center; 
	height: auto;
	padding-top: 7rem;
	background-color: rgba(0, 0 , 0, 0.4);
	min-height: calc(100vh - 7rem);
	overflow: hidden;
}

.top-section:after {
    content: "";
    display: block;
    position: absolute;
    width: 40vw;
    height:200vh;
	background: rgba(0, 0, 0, 0.7);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    right: 0;
    top:-50vh;
    z-index: 0;
}

.page-title-wrap {
	background-color: transparent;
	transform: none;
	position: static;
    max-width: none;
    text-align: left;
    padding: 2rem;
    z-index: 3;
}

.page-title-innerwrap {
    max-width: 84rem;
    padding-right: 15rem;
    margin-left: auto;
}

.page-title-wrap .btn:first-child {
	margin-right: 2rem;
}

.page-title-wrap h1,
.page-title-wrap h2 {
	color: #fff;
	padding:0;
	line-height: 1.2;
	text-shadow: none;
	font-weight: 300;
}

.page-title-wrap h1 {
  font-size: 5rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding-bottom: 3rem;
}

.page-title-wrap .usp-decor { 
	font-style: italic;
	font-weight: 700;
}

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

.page-title-wrap p {
	color:#fff;
	font-weight: 300;
	max-width: 70rem;
}

@media only screen and (max-width:1466px) {
	.page-title-innerwrap {
		max-width: 61rem;
		padding-right: 5rem;
	}
}

@media only screen and (max-width:1070px) {
	.page-title-innerwrap {
		max-width: none;
		padding: 0;
		margin: 0 auto;
	}

	.page-title-wrap {
		text-align: center;
		max-width: 60rem;
		margin:  0 auto;
	}

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

@media only screen and (max-width:600px) {
	.top-section {
		min-height: 100vh;
	}
	
	.page-title-wrap {
		text-align: left;
	}

	.page-title-wrap h1 {
		font-size: 4rem;
		line-height: 1.3;
		text-align: left;
	}

	.page-title-wrap .btn {
		display: block;
		margin: 2rem 0 !important;
	}
}

@media only screen and (max-width:500px) {
	.page-title-wrap h1 {
		font-size: 3rem;
	}
}

@media only screen and (max-width:360px) {
	.page-title-wrap h1 {
		font-size: 2.3rem;
	}
}
   
/* Om oss
========================================================================== */
.about .section-block .section-block-wrapper {
	max-width: 160rem;
}

.about .heading {
	max-width: 50rem;
}

.about .split-content { 
	padding-left: 0;
	width: 45%;
}

.about .split-image {
	width: 55%;
}

@media only screen and (max-width:1080px) {
	.about .split-image { 
		width: 100%; 
		order: 1; 
	}

	.about .split-content { 
		width: 100%;
		 order: 0;
		 padding-top: 0; 
	}
	
	.about .split-text { 
		max-width: 70rem;
	}
}

/* Tjänster
========================================================================== */
.LayoutPage .services .section-block-wrapper {
	max-width: 150rem;
}

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

.split-services {
    display: flex;
    flex-wrap: wrap;
}

.service-item {
	width: calc(100% / 3 - 2rem);
    margin: 1rem;
	position: relative;
   background-color: #fff;
    box-shadow: 0 1rem 1.5rem rgba(18, 19, 64, 0.1);
    padding: 8rem 5rem;
    overflow: hidden;
    transition: all .3s ease;
}

.service-item:hover {
	text-decoration: none;
	transform: translateY(-1rem);
}

.service-item::after {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background-image: linear-gradient(90deg, #283890 0%, #4f8cd1 100%);
	position: absolute;
	bottom: 0;
	left: 0;
}

.service-item .service-title {
	color:#000;
	font-size: 2rem;
	line-height: 1.5;
}

.service-item p {
	padding: 0;
	color: #555;
	padding-bottom: 2rem;
}

.service-item a {
	color: #283890;
}

.service-icon {
	font-size: 3rem;
	color: #283890;
	padding-right: 2rem;
}

.few-services .service-item {
	width: calc(100% / 2 - 4rem);
}

@media only screen and (max-width: 1200px) {
	.service-item {
		width: calc(100% / 2 - 2rem);
	}
	
}
@media only screen and (max-width: 780px) {
	.few-services .service-item,
	.service-item {
		width: 100%;
		margin: 0 0 2rem 0;
	}
}

@media only screen and (max-width: 550px) {
	.service-item {
		padding: 6rem 2.5rem;
	}
}

/* Smart Energifinansiering
========================================================================== */
.LayoutPage .smart-energy {
	background-color:rgba(0, 0, 0, 0.5);
	position: relative;
}

.LayoutPage .smart-energy .split-wrapper {
	background-color: #fff;
	position: relative;
}

@media only screen and (max-width: 550px) {
	.LayoutPage .smart-energy {
		background: #f8f8f8;
	}

	.LayoutPage .smart-energy .split-wrapper {
		background: transparent;
	}
}

/* Instagram
========================================================================== */
.LayoutPage .instagram .section-block-wrapper {
    max-width: none;
    margin: 0;
    margin-left: auto;
    position: relative;
    background:#fff;
    padding: 2rem;
}

.LayoutPage .instagram .section-block {
	padding: 0;
	padding-top: 4rem;
}

/* ==========================================================================
Invoice 
========================================================================== */

.invoice .section-block {
	padding: 10rem 2rem !important;
}

/* ==========================================================================
Undersidor - Generellt
========================================================================== */
.SubPage .top-section {
	display: none;
}

/* Custom Nav
========================================================================== */
.SubPage header {
	background-color: #fff;
}

.SubPage nav.mainmenu li a {
    color: #000;
}

/* Hero with solid background and title
========================================================================== */
.LayoutPage .hero-block .section-block-wrapper {
	max-width: 130rem;
}

.LayoutPage .hero-block .section-block {
	background:#f8f8f8;
	display: flex;
	flex-wrap: wrap;
	padding: 12rem 2.5rem;
	display:flex;
	align-items:center; 
	height: auto;
	justify-content: center;
	margin-top: 7rem;
}

.LayoutPage .hero-block .section-block * { 
	text-align: center; 
}

.LayoutPage .hero-block .section-title {
	margin: 0 auto;
	padding: 0;
	color:#111;
}

.LayoutPage .hero-block p {
	margin: 0 auto;
	padding-top: 2rem;
	padding-bottom: 0;
	max-width: 60rem;
}

/* Hero image
========================================================================== */
.LayoutPage .hero-image {
	background-image: url('/assets/images/rsab-familj-2000px.jpg');
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
	height: auto;
	position: relative;
	display: flex;
	align-items: center;
	background-attachment: fixed;
}

.LayoutPage .hero-image .section-block {
	background-color: rgba(0, 0, 0, 0.2);
	height: 45rem;
}

/* Hero image intro
========================================================================== */
.LayoutPage .hero-intro {
	background-image: url('/assets/images/rsab-familj-2000px.jpg');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	height: auto;
	position: relative;
	background-attachment: fixed;
	background-position: center;
}

.LayoutPage .hero-intro .section-block {
    background-color: rgba(0, 0, 0, 0.55);
	background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 20%, transparent);
    display: flex;
    align-items: flex-end;
	padding: 2rem 2rem 5rem 5rem;
	min-height: 70vh;
	margin-top: 7rem;
}

.LayoutPage .hero-intro .section-block-wrapper {
	max-width: none;
	margin: 0;
}

.LayoutPage .hero-intro .heading-type {
	max-width: 80rem;
}

.LayoutPage .hero-intro .heading-type * {
	text-align: left;
	color:#fff;
}

.LayoutPage .hero-intro .heading-type p {
	color:#fff;
}

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

/* ==========================================================================
Undersida: Beställningsjobb
========================================================================== */
.LayoutPage .order-form .section-block {
	padding: 15rem 2rem;
}

.LayoutPage .order-form .Contact .ContactForm div,
.LayoutPage .order-form .Contact .ContactForm div.ContactFormMessage {
    width: calc(100% / 3 - 2rem);
	margin: 1rem;
}

.LayoutPage .order-form .Contact .ContactForm textarea.textmessage { 
	height:auto !important; 
	min-height: auto;
}

.LayoutPage .Contact .ContactForm div.ContactFormMessage p {
	margin-top: 1rem;
}

.LayoutPage .Contact .ContactForm input.ContactSubmit {
	max-width: 30rem;
	width: 100% !important;
	margin: 0 0 0 auto !important;
}

@media (max-width: 1200px) {
	.LayoutPage .order-form .Contact .ContactForm div,
	.LayoutPage .order-form .Contact .ContactForm div.ContactFormMessage {
		width: calc(100% / 2 - 2rem);
	}
} 

@media (max-width: 750px) {
	.LayoutPage .order-form .Contact .ContactForm div,
	.LayoutPage .order-form .Contact .ContactForm div.ContactFormMessage {
		width: 100%;
		margin: 0;
	}

	.LayoutPage .Contact .ContactForm input.ContactSubmit {
		max-width: 100% !important;
		display: block;
		padding: 1.3rem 2rem;
	}
} 

/* ========================================================================== 
Undersida: Värmepumpar
========================================================================== */
.sub-heating .LayoutPage .hero-intro {
	background-image: url('/assets/images/NIBE-S1255-garage-2000px.jpg');
}


/* S-serien med video popup
========================================================================== */
.LayoutPage .s-series .section-block-wrapper {
	max-width: none;
}

.LayoutPage .s-series .section-block {
	padding: 4rem 2rem;
}

.portfolio-items-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

.portfolio-item {	
	display: flex;
	flex-wrap: wrap;
	overflow:hidden;
	position: relative;
	text-decoration: none !important;
	cursor: pointer;
	    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.portfolio-item .portfolio-image {
	width: 100%;
	height: 100%;
}

.portfolio-item img {
    display: block !important;
    object-fit: cover;
    object-position: center;
    height: 100% !important;
    width: 100% !important;
}

.portfolio-item .portfolio-text {
	text-align: center;
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    padding: 8rem 2rem;
    background: rgba(0, 0, 0, 0.36); 
    cursor: pointer;
	    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.portfolio-item .portfolio-text .centered-text {
	align-self: center;
	width: 100%;
	text-align: center;
}

.portfolio-item .portfolio-text * {
	color:#fff;
}

.portfolio-item:hover .portfolio-text {
    background:rgba(0, 0, 0, 0.747); 
}

/* Titel */
.portfolio-item .portfolio-text .portfolio-title {
    font-size: 1.6rem;
    font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	padding: 0;
	position: absolute;
	top: 2rem;
	left: 2rem;
}

.portfolio-item .play-circle::before  {
	font-family: 'Font Awesome 5 Brands', 'Font Awesome 5 Pro';
	content: '\f144';
	font-weight: 900;
	font-size: 9rem;
	position: relative;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.portfolio-item .play-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	margin: 0 auto;
	color: #fff; 
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.portfolio-item:hover .play-circle {
	font-size: 3rem;
}

.portfolio-item:hover .play-circle::before {
	font-size: 5rem;
	margin-right: 2rem;
}

/* Video split */
.split-image.split-video {
	display: flex;
}

.split-image.split-video .portfolio-item {
	width: 100%;
	height: 100%;
	margin: 0;
	min-height: auto;
	border-radius: 0;
}

@media only screen and (max-width: 1466px) {
	.portfolio-item {
		height: 35rem;
	}

	.LayoutPage .services {
		background: linear-gradient(to bottom, rgb(0 22 78 / 90%) 60%, #fff 40%);
	}
}

@media only screen and (max-width: 1150px) {
	.portfolio-item {
		width: 48%;
	}
}


@media only screen and (max-width: 350px) {
	.portfolio-item {
		height: 25rem;
	}

	.portfolio-item .portfolio-text {
		padding: 2rem;
	}

	.portfolio-item .portfolio-text .portfolio-title {
		left: 0;
		top:0;
		padding: 1rem;
	}

	.portfolio-item .play-circle::before {
		font-size: 5rem;
	}
}

/* Produkter med filterfunktionen
========================================================================== */
.LayoutPage .filter-section .section-block-wrapper {
	max-width: 160rem;
}

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

.product-item {
	display: none; /* Hidden by default */
}

#filter-btn-container {
	display: flex;
	flex-wrap: wrap;
	background-color: #f8f8f8;
	margin-bottom: 4rem;
}

.btn-filter {
	border-radius: 0; 
	cursor: pointer;
	border: none;
	color:#000;
	margin: .5rem;
	padding: 1.5rem 3rem;
	background-color: transparent;
	font-size:1.4rem;
	border-right: 1px solid #eee;
	-moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.btn-filter:last-child {
	border:none;
}

.btn-filter:hover {
	background-color: #364A9F;
	color: #fff;
}

#filter-btn-container .btn.btn-active {
	background-color: #364A9F;
	color: #fff;
}

/* The "show" class is added to the filtered elements */
.show { display: inline-block; }

.filter-items-container {
	overflow: hidden;
	margin-top: 2rem;
}

/* Produktrutor med värmepumpar */
.product-items-wrapper {
	display:flex;
	flex-wrap:wrap;
}

.product-item {
	width: 100%;
	margin: 0 0 3rem 0;
	background-color: #f8f8f8;
	padding: 2rem;
}

.product-image {
	width: 100%;
	max-height: 70rem;
}

.product-image img {
	width: 100%;
}

.product-content {
	display: flex;
}

.product-content .product-text {
	width: 40%;
	padding: 3rem;
}

.product-content .info-items-wrapper {
	width: 60%;
}

.product-text .product-title {
	font-weight: 600;
	padding: 0;
}

.product-text ul {
	padding-inline-start: 4rem;
	overflow: visible;
}

.product-text li {
	font-family: inherit;
    font-weight: 300;
    line-height: 1.6;
    padding-bottom: 1.2rem;
    list-style: none;
}

.product-text ul li::before {
	content: "\f058";
    display: inline-block;
	width: 3rem;
	font-size: 1.2em;
	vertical-align: middle;
		margin-left: -3rem;
    color: #6dd183;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
}

.product-text .see-more {
	display: none;
}

.product-text .btn-read-more {
	background-color: #283890;
	border:none;
	color:#fff;
	cursor: pointer;
	padding: .8rem;
	font-size: 1.2rem;
	border-radius: .5rem;
	font-weight: 400;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.product-text .btn-read-more::after {
	content: "\f078";
    display: inline-block;
	font-size: 1.2em;
	vertical-align: middle;
    color: inherit;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
}

.product-text .btn-read-more:hover {
	background-color: #3e51c2;
	color: #fff;
}

/* Inforutor för resp produkt */
.info-items-wrapper { 
	display: flex; 
}

.info-item {
	position: relative;
	z-index: 1;
	border: 1px solid #eee;
	background-color: #fff;
    -webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	margin: 1rem;
	width: calc(100% / 2 - 2rem);
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.info-image {
	height: auto;
	overflow: hidden;
	background-color: #fff;
	display: flex;
	padding: 2rem;
}

.info-image img {
	object-fit:contain;
	align-self: center;
	height: 100% !important;
	width: 100% !important;
	max-height: 40rem;
}

.info-text {
    /* background-color: #f8f8f8; */
	padding: 2rem;
    width: 100%;
	z-index: 2;
	align-self: flex-end;
	position: relative;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.info-text .info-heading {
	padding: 2rem;
	text-align: center;
}

.info-links {
    display: flex;
    flex-wrap: wrap;
	text-align: center;
	background-color: #eee;
    width: 100%;
	line-height: 3;
	justify-content: center;
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    overflow: hidden;
}

.info-links:hover {
	text-decoration: none;
	background-color: #283890;
	color:#fff;
}

.info-links:before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	content: '\f1c1';
	margin-right: 1rem;
}

@media only screen and (max-width: 1450px) {
	.product-item {
		padding: 0;
	}
}

@media only screen and (max-width: 1350px) {
	.btn-filter {
		font-size: 1.2rem;
		padding: 1.5rem 2rem;
		text-align: left;
	}
}

@media only screen and (max-width: 1300px) {
	.product-content .product-text {
		width: auto;
	}

	.product-content .info-items-wrapper {
		width: auto;
		min-width: 40%;
		justify-content: flex-end;
	}

	.info-text .info-heading {
		font-size: 1.3rem;
	}
} 

@media only screen and (max-width: 1200px) {
	.product-content {
		flex-direction: column;
	}
}

@media only screen and (max-width: 600px) {
	.btn-filter {
		font-size: 1.6rem;
	}

	.info-item {
		width: 100%;
		margin: 0 0 2rem 0;
	}

	.info-items-wrapper {
		flex-direction: column;
	}

	.product-text ul {
		padding-inline-start: 2rem;
	}
}

@media only screen and (max-width: 500px) {
	#filter-btn-container {
		flex-direction: column;
		background-color: transparent;
	}

	.btn-filter {
		margin-bottom: 1rem;
		background-color: #f8f8f8;
	}

	.product-text .product-title {
		font-size: 2rem;
	}

	.product-content .product-text {
		padding: 2rem;
	}
}

@media only screen and (max-width: 360px) {
	.product-text li {
		font-size: 1.4rem;
	}
}

/* ========================================================================== 
Undersida: Energikällor
========================================================================== */
.sub-energy .LayoutPage .hero-intro {
	background-image: url('/assets/images/NIBE-air-heat-pumps-2000px.jpg');
	background-position: center bottom;
}

/* Information i split wrappers
========================================================================== */
.LayoutPage .energy .section-block-wrapper {
 max-width: 160rem;
}

.energy-splits .split-wrapper {
	margin-bottom: 6rem;
	max-width: none;
}

.energy-splits .split-wrapper:nth-child(even) {
	flex-direction: row-reverse;
}

.energy-splits .split-content {
	width: 65%;
}

.energy-splits .split-image {
	width: 35%;
}

.energy-splits .split-image img {
	object-fit: contain;
}

@media only screen and (max-width:1500px) {
	.energy-splits .split-content {
		padding: 5rem;
	}
}

@media only screen and (max-width:1080px) {
	.energy-splits .split-image {
		max-height: 50rem;
		width: 100%;
	}

	.energy-splits .split-content {
		text-align: left;
		width: 100%;
	}

	.energy-splits .split-image img {
		object-fit: cover;
	}
}

@media only screen and (max-width:650px) {
	.energy-splits .subheading {
		font-size: 2rem;
	}

	.energy-splits .split-content {
		padding: 5rem 0 0rem;
	}
}

/* ========================================================================== 
Undersida: Finansiering
========================================================================== */

/* Introduktion i split
========================================================================== */
.LayoutPage .finance .section-block * {
	text-align: left;
}

.LayoutPage .finance .heading-type {
	max-width: 100rem;
}

.LayoutPage .finance .split-wrapper {
	margin-bottom: 5rem;
}

/* Responsive table
========================================================================== */
.responsive-table {
	width: 100%;
	overflow: hidden;
	margin: 1rem 0 4rem;
}
  
.table {
	width: 100%;
	display: table;
	margin: 0;
}

.row.header {
	-moz-transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.row {
	display: table-row;
	background: #fff;
	-moz-transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.row.header {
	color: #ffffff;
	background: #364a9f;
}

.row.header:hover {
	background: #4f8cd1;
}

.cell {
	display: table-cell;
}

.row .cell {
	width: calc(100% / 5);
	padding: 2rem 2rem;
	font-size: 1.5rem;
	color: #666666;
	line-height: 1.2;
	font-weight: unset !important;
	border-bottom: 1px solid #f2f2f2;
}

.row.header .cell {
	font-size: 1.8rem;
	color: #fff;
	line-height: 1.2;
	font-weight: unset !important;

	padding-top: 2rem;
	padding-bottom: 2rem;
}

.table, .row {
	width: 100% !important;
}

.row:hover {
	background-color: #f7f7f7;
	cursor: default;
}

@media only screen and (hover:none) {
	.row:nth-child(odd) {
		background: #f8f8f8;
	}
	
	.row.header {
		background: #364a9f;
	}
}

@media screen and (max-width: 768px) {
	.table {
		display: block;
	}

	.row {
		display: flex;
		flex-wrap:wrap;
	}

	.row .cell {
		width: calc(100% / 3) !important;
	}

	.row.header {
		padding: 0;
		height: 0px;
	}

	.row.header .cell {
		display: none;
	}

	.row .cell:before {
		font-size: 1.2rem;
		font-weight: 600;
		color: #283890;
		line-height: 1.2;
		text-transform: uppercase;
		font-weight: unset !important;
		margin-bottom: 1rem;
		content: attr(data-title);
		min-width: 98px;
		display: block;
		background-color: #283890;
		color:#fff;
		padding: 1rem;
	}

	.row .cell:first-child:before {
		
	}
}

@media (max-width: 768px) {
	.row {
		border-bottom: 1px solid #f2f2f2;
		padding-bottom: 18px;
		padding-top: 30px;
		padding-right: 15px;
		margin: 0;
	}

	.row .cell {
		border: none;
		padding: 1rem;
	}

	.row .cell {
		color: #555555;
		line-height: 1.2;
		font-weight: unset !important;
	}

	.table, .row, .cell {
		width: 100% !important;
	}
}

@media (max-width: 450px) {
	.row .cell {
		width: calc(100% / 2) !important;
	}
} 

@media (max-width: 380px) {
	.row .cell {
		width:100% !important;
	}
} 

/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */
.LayoutPage .contacts .section-block-wrapper { 
	max-width: 150rem; 
	display: flex; 
	flex-wrap: wrap;
}

.LayoutPage .contacts {
	background: #fff;
}

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

.contacts .small-title {
	text-align: left;
}

.LayoutPage .contacts .col-0 {
	width: 60%;
	background-color: #283890;
	order: 0;
	padding: 10rem;
	display: flex;
    z-index: 1;
	position: relative;
	box-shadow: 0 .5rem 3rem rgba(0, 0 , 0, 0.1);
}

.LayoutPage .contacts .col-0 * {
	color:#fff;
}

.LayoutPage .contacts .col-0 a {
	font-weight: 700;
}

.LayoutPage .contacts .col-0 a:hover {
	text-decoration: underline;
}

.LayoutPage .contacts .col-0 .col-wrapper { 
	align-self: center;
}

.LayoutPage .contacts .col-1 {
	padding: 5rem 2rem !important;
	width: 40%;
	order: 1;
	background: #fff;
	box-shadow: 0 .5rem 3rem rgba(0, 0 , 0, 0.1);
	height: 100%;
	min-height: 55rem;
	display: flex;
	margin-top: -15rem;
	z-index: 1;
}

.LayoutPage .contacts .col-0 * {
	text-align: left;
}

@media only screen and (max-width: 1350px) {
	.LayoutPage .contacts .col-0 {
		padding: 5rem;
	}
} 

@media only screen and (max-width: 1050px) {
	.LayoutPage .contacts .col-0 {
		padding: 5rem;
		width: 100%;
	}

	.LayoutPage .contacts .col-1 {
		width: 100%;
		margin: 0;
		padding: 5rem;
	}

	.LayoutPage .contacts .section-block-wrapper {
		margin-top: -15rem;
	}
} 

@media only screen and (max-width: 600px) {
	.LayoutPage .contacts .col-block {
		padding: 4rem 2rem !important;
	}
} 

/* Medarbetare
========================================================================== */
.LayoutPage .coworkers .heading-type * {
	text-align: left;
}

.LayoutPage .coworkers .section-block {
	background-color: #f8f8f8;
}
.contacts-items-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding-top: 4rem;
	max-width: 100rem;
}

.contacts-item {
	width: calc(100% / 3 - 4rem);
	margin: 2rem;
	text-align: left;
	position: relative;
	overflow: hidden;
}

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

.contacts-item .contacts-text {
	padding: 2rem;
	width: 100%;
	color:#000;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.contacts-item .name {
	font-size: 1.8rem;
	padding-bottom: .8rem;
	color:inherit;
}

.contacts-item .title {
	font-size: 1.4rem;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	color: #283890;
}

.contacts-item .contact-options {
	margin: .5rem 0;
	font-style: normal;
	color:inherit;
}

.contacts-item .contact-option {
	display: flex;
    margin: .2rem 0;
    align-items: center;
	color: inherit;
    letter-spacing: normal;
    font-weight: 400;
    text-transform: none;
    font-size: 1.5rem;
}

.contacts-item .contact-option:hover {
	color: #283890;
}

.contacts-item .contact-option::before {
	display: inline-block;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	font-size: inherit;
	margin-right: 1.5rem;
	vertical-align: middle;
	color: #283890;
	width: 1rem;
	text-align: center;
}

.contacts-item .contact-option:hover::before {
	text-decoration: none !important;
}

.contact-option.address::before { content: '\f3c5'; }
.contact-option.phone::before { content: '\f879'; }
.contact-option.mail::before { content: '\f0e0'; }


@media only screen and (max-width: 1466px) {
	.contacts-item .name {
		font-size: 1.8rem;
	}
}

@media only screen and (max-width: 830px) {
	.contacts-item {
		width: calc(100% / 2 - 4rem);
	}
}

@media only screen and (max-width: 630px) {
    .contacts-item {
		width: 100%;
		margin: 0 0 2rem 0;
    }

	.contacts-item .contacts-text {
		padding: 2rem 0;
	}
}

/* Kartor @JoSo
========================================================================== */
.LayoutPage .offices .section-block-wrapper {
	max-width: none;
}

.LayoutPage .offices .section-block {
	padding-top: 2rem;
}

.maps-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.maps-item {
	width: 48%;
	margin: 1%;
	position: relative;
}

.maps-text {
	position: absolute;
	bottom: 1px;
	left: 0;
	background-color: #fff;
	padding: 3rem 4rem 0;
	min-width: 30rem;
}

.maps-text .maps-heading {
	font-size: 2.5rem;
	padding-bottom: .5rem;
	font-weight: 700;
}

@media only screen and (max-width: 1200px) {
	.maps-item {
		width: 48%;
	}
}

@media only screen and (max-width: 950px) {
	.maps-item {
		width: 100%;
		margin: 0 0 3rem 0;
	}
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
	background-color:#fff;
	padding: 0;
	color: #000;
	position: relative;
}

.footer .container {
    padding: 7rem 5rem 0;
    max-width: 160rem;
}

.footer .footer-heading {
	font-size: 1.6rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .1em;
	padding-bottom: 2rem;
	color: #283890;
}

.footer p, 
.footer a,
.footer li {
	text-align: left;
	font-size: 1.4rem;
	color: inherit;
}

.footer a:hover { 
	color:#283890;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem 0 0;
    position: relative;
}

.footer-logo-wrapper {
	width: 20rem;
	margin: 0 auto 10rem;
}

.footer-logo {
	width: 100%;
}

/* FOOTER MENU */
.footer-nav {
    width: 100%;
    margin-bottom: 5rem;
    padding-left: 2rem;
    text-align: right;
}

.footer-menu-wrapper {
    display: flex;
    list-style-type: none;
    padding-inline-start: 0;
    margin: 0;
}

.footer-menu {
    text-align: left;
    width: 33%;
}

.sigill img{
	max-width: 14rem;
}

/* FOOTER SUBMENU */
.footer-submenu {
    padding-inline-start: 0;
    list-style-type: none;
}

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

.footer-menu:last-child {
	width: 7rem;
}

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

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

/* FOOTER SOCIAL LINKS */
.footer .social-list {
    display: flex;
    list-style: none;
    padding: 0;
	margin: 0;
	flex-direction: column;
}

.footer .social {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    padding: 0;
	border-radius: 3rem;	
	background-color: transparent;
	border: 1px solid #283890;
	color: #283890; 
	-moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.footer .social:hover {
	background-color: #283890;
	color: #ffffff;
	text-decoration: none;
}

.footer .social::before {
	font-family: 'Font Awesome 5 Brands';
	font-weight: 400;
	font-size: 1.5rem;
	
	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 #283890;
	margin: 0 auto;
	width: 100%;
    padding: 2rem 1rem;
    box-sizing: border-box;	
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    line-height: 1rem;
}

.footer-bottom p {
	font-size: 1.2rem;
	padding: 0;
}

.footer-bottom .info-list {
	padding-inline-start: 0;
	list-style-type: none;
	display: flex;
}

.footer-bottom .info-list li {
	margin-right: 2rem;
	font-size: 1.2rem;
}

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

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

@media only screen and (max-width: 1250px)  {
	.footer-menu:first-child {
		width: 50%;
	}

	.footer-menu:nth-child(2) {
		width: 45%;
	}
}

@media only screen and (max-width: 1060px) {
	.footer .container {
		padding: 5rem 2rem 0;
	}

	.footer-container,
	.footer-menu-wrapper {
		flex-wrap: wrap;
	}

	.footer-menu:first-child {
		width: 100%;
		padding-bottom: 3rem;
	}

	.footer-menu:nth-child(2) {
		width: 35%;
	}

	.footer-menu:nth-child(3) {
		width: 45%;
	}
}

@media only screen and (max-width: 700px) {
	.footer .container {
		padding: 6rem 2rem 0;
	}

	.footer-menu,
	.footer-menu:first-child,
	.footer-menu:nth-child(2),
	.footer-menu:last-child {
	    width: 100%;
		margin-bottom: 0;
		padding: 2rem 0;
	}

	.footer-nav {
		padding: 0;
	}

	.footer .social-list {
		flex-direction: row;
	}

	.footer .social {
		margin: 0 0 0 1rem;
	}
}
