/* Work for you i Sverige AB */

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;500;600;700&family=Roboto+Slab:wght@300;400;700&display=swap');

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

#aspnetForm {
	height: auto;
}

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

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

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

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

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

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

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

.paddingbottom0 .section-block {
	padding-bottom: 0 !important;
}

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

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

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

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

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

.display-none {
	display: none;
}

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

/* ==========================================================================
Colors
========================================================================== */

.primary-color {
    color: #f39800;
}

.secondary-color {
    color: #95c22b;
}

/* ==========================================================================
Responsive iframe (YouTube)
========================================================================== */

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
}

.embed-container iframe, 
.embed-container object,
.embed-container embed {
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%;
	height: 100%;
}

.embed-container iframe {
	margin-top: 1.5rem;
}

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

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

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

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

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

.btn-primary,
.btn-primary:hover {
	background-color: #f39800;
	border-color: #f39800;
	color: #ffffff;
}

.btn-secondary,
.btn-secondary:hover {
	background-color: #ffd080;
	border-color: #ffd080;
	color: #000000;
}

.btn-black,
.btn-black:hover {
	background-color: #212121;
	border-color: #212121;
	color: #ffffff;
}

.btn-orange,
.btn-orange:hover {
	background-color: rgb(243, 152, 0);
	border-color: #f39800;
	color: #ffffff;
}

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

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

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

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

/* Pulse btn */
.pulse-btn {
    box-shadow: 0 0 0 0 rgb(243, 152, 0);
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

@-webkit-keyframes pulsing {
	to { box-shadow: 0 0 0 5px rgba(243, 154, 0, 0.719); }
}

@-moz-keyframes pulsing {
	to { box-shadow: 0 0 0 5px rgba(243, 154, 0, 0.719); }
}

@-ms-keyframes pulsing {
	to { box-shadow: 0 0 0 5px rgba(243, 154, 0, 0.719); }
}

@keyframes pulsing {
	to { box-shadow: 0 0 0 5px rgba(243, 154, 0, 0.719); }
}

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

/* ==========================================================================
Text och typsnitt
========================================================================== */
p, li, a {
	line-height: 1.7;
	font-size: 1.6rem;
	color: #555;
	font-family: inherit;
	font-weight: 400;
	text-decoration: none;
	padding-bottom: 0.8em;
}

p a {
	text-decoration: underline;
	color: inherit;
	text-decoration-color: #f39800;
	position: relative;
	z-index: 0;
}

p a::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0px;
    background-color: #f39800;
    z-index: -1;
    opacity: 0;
    transform-origin: bottom;
    transition: all .1s ease;
}

p a:hover::after {
    opacity: .3;
    background-color: #f39800;
    transform-origin: bottom;
    transition: all .1s ease;
}

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

h1, h2, h3, h4, h5, h6,
.small-title,
.section-title {
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 1.25;
	color: #212121;
	text-transform: normal;
	padding-bottom: 3rem;
}

h1 {
	font-size: 7rem;
}

h2, .section-title {
	font-size: 5.5rem;
}

h3 {
	font-size: 4.3rem;
}

h4, .small-title {
	font-size: 3rem;
	padding-bottom: 1rem;
}

.text-center{
	text-align: center;
}
.ingress {
	font-size: 1.8rem;
	font-family: 'Roboto Slab', serif;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 1.6;
    color: #212121;	
}

.lead {
	font-size: 1.25em;
}


.section-label {
	font-family: 'Libre Franklin', sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: .2em;
	padding-bottom: 1em;
}

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

.smalltext-type {
	max-width: none;
}

.normaltext-type {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.bold-text {
	color: #333;
	font-weight: 600;
}

.text-white{
	color: white;
}
.bullet-list li {
    line-height: 1em !important;
    padding-bottom: 1.5rem;
    list-style: none;
}

.bullet-list ul li::before {
	content: "\f0da";
    display: inline-block;
    width: 1.8em;
    margin-left: -1.8em;
    color: #f29701;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
    font-size: 1.6rem;
}

@media only screen and (max-width: 510px) {
	
	h2, .section-title {
		font-size: 4rem;
	}
	
	.startpage h3,
	h2.cta-title {
		font-size: 3.5rem !important;
	}
	
	h4, .small-title {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 380px) {
	.startpage h3,
	h2.cta-title {
		font-size: 3rem !important;
	}
}

/* ==========================================================================
Cookies
========================================================================== */
.cookies-notis {
    z-index: 9;
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 3rem 4rem 3rem 2rem;
    text-align: center;
    background: #f39800;
}

.cookies-close {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    font-size: 2.5rem;
}

.cookies-close .fal {
	color:#FFF !important;
}

.cookies-notis a {
	padding-bottom: 0;
    text-decoration: underline;
}

.cookies-notis p {
	padding-bottom: 0;
}
  
@media only screen and (max-width: 580px) {
    .cookies-notis {
        text-align: left;
    }
}

/* ==========================================================================
Grafiska element
========================================================================== */

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

.parallax .section-block {
	background: rgba(0,0,0,.7);
}

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

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

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

.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.split-wrapper2 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
	height: 500px;
	max-width: 1300px;
}

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

.split-content {
    width: 50%;
    padding: 5rem;
    text-align: left;
}

.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: unset !important;
}

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

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

/* Speciella paddings */
.split-wrapper .pl-0 {
    padding-left: 0;
}

.split-wrapper .pr-0 {
    padding-right: 0;
}

@media screen and (max-width: 1100px) {
    .split-content,
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }

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

    /* Speciella paddings */
    .split-wrapper .pl-0,
    .split-wrapper .pr-0 {
        padding: 3rem;
    }
}

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

    .split-content,
    .split-wrapper .pl-0,
    .split-wrapper .pr-0 {
        padding: 0 0 3rem 0;
    }
}
@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 screen and (max-width: 1100px) {
	
	.split-wrapper {
		max-width: 70rem;
		margin: 0 auto;
	}
	
	.split-wrapper.reverse {
		flex-direction: row;
	}
	
	.split-content {
		width: 100%;
		padding: 0 0 5rem;
	}
	
	.split-content:last-child {
	    padding-bottom: 0;
	}
	
	.split-image {
		width: 100%;
		padding: 0;
	}
	.split-image2 {
        width: 100%;
        min-height: 40rem;
		padding-bottom: 20px
		
	;
    }
}

/* ==========================================================================
Bilder och grafiska element
========================================================================== */

/* Object fit */
.of-wrapper {
	position: relative;
    overflow: hidden;
}

.LayoutPage .of-wrapper img {
	position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    max-width: none;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

@supports (object-fit: cover) {
	.of-wrapper img {
		position: static;
        transform: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
	
    .of-wrapper img.contain {
		object-fit: contain;
    }
}

/* Bakgrundsbild  */
.bg-image {
	position: relative;
	z-index: 1;
}

.bg-image-wrapper {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* ==========================================================================
Accordion
========================================================================== */
.accordion-section *,
.accordion-section *:before,
.accordion-section *:after {
    transition: all 200ms linear;
}

.accordion-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.accordion {
	width: 100%;
	margin: 1rem 0;
	align-self: flex-start;
}

.accordion-header {
	position: relative;
	cursor: pointer;
	padding: 1rem 3.5rem 1rem 0;
	border-bottom: 1px solid #e2e2e2;
}

.accordion-button {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

.accordion-button::before, 
.accordion-button::after {
    width: 1.5rem;
    height: 2px;
    top: 50%;
    content: '';
    position: absolute;
    display: block;
    background-color: #f39800;
}

.accordion-button::before {
	transform: rotate(90deg);
}

.accordion-button::after {
	transform: rotate(0deg);
}

.accordion-header.active .accordion-button::before {
	transform: rotate(135deg);
}

.accordion-header.active .accordion-button::after{
	transform: rotate(45deg);
}

.accordion-title {
	color: inherit;
	text-transform: none;
	padding-bottom: 0;
	font-weight: 600;
	letter-spacing: 0.02em;
	font-family: 'Roboto Slab', serif;
}

.accordion-panel {
	max-height: 0;
	overflow: hidden;
}

.accordion-content {
	padding: 0 0 !important;
}

.accordion-content p,
.accordion-content a,
.accordion-content li {
	font-size: 1.5rem;
}

.accordion-paragraph {
	color: inherit;
	padding: 0 0;
}

.accordion li {
    line-height: 1em !important;
    padding-bottom: 1.5rem;
    list-style: none;
}

.accordion ul li::before {
	content: "\f0da";
    display: inline-block;
    width: 1.8em;
    margin-left: -1.8em;
    color: #f29701;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
    font-size: 1.6rem;
}

@media only screen and (max-width: 480px) {
	.accordion-button {
		right: 1.5rem;
		width: 1.5rem;
		height: 1.6rem;
	}
	
	.accordion-button::before, 
	.accordion-button::after {
		width: 1.5rem;
		height: 1px;
	}
}

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

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

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

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

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

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

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

/* Cards 5 */
.cards-5 .card-item {
	text-decoration: none;
    display: flex;
    align-items: center;
    background-color: #ffe9c2;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    transition: all .2s ease-in-out;
    flex: 1 1 21rem;
    margin: 0 1rem 1rem 0;
}

.cards-5 .icon-wrapper {
	font-size: 3rem;
	margin-right: 2rem;
	line-height: 1;
	color: #f39800;
}

.cards-5 .small-title {
	font-size: 2rem;
	padding: 0;
}

.cards-5 .card-item:hover {
	background-color: #f39800;
	transition: all .2s ease-in-out;
}

.cards-5 .card-item:hover * {
	color: rgb(255, 255, 255);
}

/* Sektionens namn 
========================================================================== */
.page-content .accordion-wrapper {
	margin-top: 4rem;
}

.page-content .accordion-item {
    padding-bottom: 2rem;
	width: 100%;
}

.page-content .accordion-question {
    position: relative;
    padding: 0 2rem 1rem;
    border-bottom: 1px solid #f39800;;
    cursor: pointer;
}

.page-content .accordion-question::after {
    content: "\f078";
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 1.7rem;
    font-family: "Font Awesome 5 Pro";
    transition: .5s ease;
}

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

.page-content .accordion-question p {
    padding-right: 2.5rem;
}

.page-content .accordion-answer {
    padding: 2rem;
}


/* ==========================================================================
Header / Navigation
========================================================================== */
.EditMode #top-notis {
	display: none;
}

/* --- TOP HEADER ------- */
.top-menu {
    background: #212121;
    text-align: right;
	top: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    /* -moz-transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; */
	
}

.top-menu-container {
	max-width: 160rem;
	padding: 0 2rem;
	margin: 0 auto;
	position: sticky;
}

.top-menu a {
	line-height: 4rem;
	box-sizing: border-box;
	width: 100%;
    color: #FFF;
    font-size: 1.2rem;
	white-space: nowrap;
    overflow: hidden !important;
	max-width:100%;
	text-decoration: none;
	align-items: right;
	padding: 0 1rem;
	margin: 0 1rem;
}

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

/* HEADER BAR */
header {
    background-color: white;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    transition: all 500ms linear;
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.05);
	height: 14rem;
	position: sticky;
}

.EditMode.WebbEssDIY header {
	position: relative;
	top: 6px !important;
}

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

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

/* HEADER LOGO */
header .header-logo {
    width: 13rem;
    padding: 1.5rem 0;
    line-height: 10rem;
    transition: all 500ms linear;
}

/* MAIN MENU */
nav.mainmenu ul.TemplateMenu > li {
    line-height: auto;
    height: auto;
    transition: all 500ms linear;
}

nav.mainmenu {
	text-align: right;
}

nav.mainmenu a {
	font-family: 'Roboto Slab', serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 10rem;
	color: #212121;
	text-transform: none;
	padding: 0 1rem;
    transition: all 200ms linear;
}

/* :hover and active menuitem */
nav.mainmenu li:hover a, 
nav.mainmenu li.active a {
    color: unset;
}

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

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

nav.mainmenu ul > li.expandable-li a {
	color: #212121 !important;
}
nav.mainmenu ul > li.expandable-li a:hover,
nav.mainmenu ul > li.expandable-li a.active {
    color: #f39800 !important;

	
}

.expandable:after {
    content: '\f0d7';
    display: inline-block;
    margin-left: 7px;
    transform: translateY(-1px);
    font-size: .7em;
    font-weight: 700;
    font-family: 'Font Awesome 5 Pro';
    text-decoration: none;
}

/* dropdown */
nav.mainmenu ul > li.expandable-li > ul > li > a {
 	word-break: normal !important;
    white-space: normal !important;
}

nav.mainmenu ul > li.expandable-li > ul > li:nth-child(3) > a,
nav.mainmenu ul > li.expandable-li > ul > li:nth-child(4) > a {
	line-height: 1.7 !important;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}


nav.mainmenu ul > li > ul {
    width: auto;
    background-color: #fff;
    padding: 0;
    margin: unset;
    max-width: 30rem;
    width: 25rem;
}

nav.mainmenu ul > li > ul > li > a {
    padding: unset;
    padding: 0 2rem;
    line-height: 3 !important;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
}

nav.mainmenu ul > li > ul > li:hover,
nav.mainmenu ul > li > ul > li.active {
    background-image: none;
    background-color: transparent;
    cursor: pointer;
}

@media only screen and (min-width: 1046px) {
    
    .hamburger {
        display: none;
    }
    
}

@media only screen and (max-width: 1045px) {
	
	.top-menu-container {
		padding: 0 0.5rem; 
	}

	header {
		height: 10rem;
	}
	
	header .container {
		padding: 0 1.5rem;
	}
	
	header .header-logo {
    	width: 8rem;
    	padding: 0.9rem 0;
    }
    
    /* Navigation */
	nav.mainmenu {
		text-align: left;
		display: none;
		position: fixed;
		height: 100%;
		left: 0;
		width: 31rem;
		background-color: #fff;
		z-index: 15;
		top: 0;
		box-shadow: none;
		overflow-y: scroll;
	}
	
	nav.mainmenu .Padding {
		padding: 2rem 0 0 0;
		margin: 7.2rem 0;
	}
	
	nav.mainmenu li {
		text-align: left;
		display: block;
	}
	
	nav.mainmenu li a {
		margin: unset;
		padding: unset;
		padding-left: 4rem;
		font-size: 1.6rem;
		line-height: 3.7;
		color: #212121;
	}
	
	nav.mainmenu ul > li > ul {
		position: relative;
	}
	
	#overlay {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgba(0, 0 , 0, 0.75);
	    z-index: 7;
	}
	
	/* Hamburger */
	.hamburger {
	    position: absolute;
	    z-index: 99;
	    left: auto;
	    right: 1rem;
	    top: 4.4rem;
	}
	
	.hamburger-inner, 
	.hamburger-inner::after, 
	.hamburger-inner::before {
		color: #000;
		background-color: #000;
	}
	
	/* Dropdown */
	nav.mainmenu ul > li > ul {
	    background-color: #fff !important;
	    width: auto !important;
	}
	
	nav.mainmenu ul > li > ul {
		display: block !important;
	}
	
	nav.mainmenu ul > li > ul > li a {
		color: #333 !important;
	}
	
	nav.mainmenu ul > li > ul > li > a {
	    width: auto;
	    padding: 0 0 0 6rem;
	}
	
	nav.mainmenu ul > li.expandable-li:hover > a {
		padding-bottom: 0;
	}
	 
	nav.mainmenu ul.TemplateMenu > li {
	    line-height: unset;
	    height: unset;
	}
	
}

@media only screen and (max-width: 980px) {
	
	nav.mainmenu li a {
		color: unset !important;
	}
}	


/* ==========================================================================
Startsida: Top-section
========================================================================== */
.top-section {
	height: 60rem;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.45) 30%, rgb(0, 0, 0, 0.15) 70%), url(/assets/images/wfy-cover.jpg);
	background-size: cover;
	background-position: center center;
}

.page-title-wrap {
	background-color: transparent;
    top: 48%;
    left: 50%;
    width: 100%;
    max-width: 140rem;
    text-align: left;
    padding: 0 5rem;
}

.page-title-innerwrap {
	max-width: 57rem;
}

.page-title-wrap h1 {
	font-size: 5rem;
	color: #fff;
	padding:0;
	line-height: 1.2;
	margin-bottom: 3rem;
	text-shadow: none;
}

.page-title-wrap p {
	color: #fff;
}

.page-title-wrap .btn {
	padding-right: 4rem;
	padding-left: 4rem;
	width: 30rem;
	margin: 1rem 0;

}

@media only screen and (min-width: 1500px) {
	
	.page-title-wrap {	
   		max-width: 160rem;
    }
}

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

@media only screen and (max-width: 510px) {
	
	.top-section {	
   		height: calc(100vh - 10rem)!important;
    }
    
    .page-title-wrap {
	    padding: 0 3.5rem;
    }
}

@media only screen and (max-width: 380px) {
	
	.page-title-wrap h1 {	
   		font-size: 2.6rem;
   		line-height: normal;
    }

	.page-title-wrap .btn {
		padding-right: 0rem;
    	padding-left: 0rem;
		width: 25rem;
	}
}

@media only screen and (max-width: 330px) {
	
	.page-title-wrap p {	
   		font-size: 1.35rem;
    }
    
    .page-title-wrap h1 {
	    font-size: 2.2rem;
    }
}


/* Startsida: Våra tjänster
========================================================================== */
.services .section-block-wrapper {
	max-width: 130rem !important;
}

.service-offer-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.service-card {
    width: calc(33.33% - 3rem);
    background-color: #FFF;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0px 1rem 20px rgba(0,0,0, 0.05);
}

.service-card:nth-child(1), 
.service-card:nth-child(4) {
	margin-right: 1.5rem;
}

.service-card:nth-child(2), 
.service-card:nth-child(5) {
	margin-right: 1.5rem;
	margin-left: 1.5rem;
}

.service-card:nth-child(3), 
.service-card:nth-child(6) {
	margin-left: 1.5rem;
}

.service-card-textblock {
	padding: 4rem 4rem;
	width: 100%;
}

.service-card-heading {
	font-weight: 400;
	font-size: 2.8rem;
}

.service-card-textblock p {
	line-height: 1.7;
	font-size: 1.55rem;
}

.service-card-btn {
	border-bottom: 5px solid;
	display: block;
	text-decoration: none;
	padding: 1.5rem 4rem 1rem 4rem;
	align-self: flex-end;
    width: 100%;
    transition: all .3s ease;
}

.service-card-btn::after {
	content: '\2192';
	float: right; 	
}

.service-card-btn:hover {
	text-decoration: none;
}

.service-card:nth-of-type(4n+1) .service-card-btn {
	background-color: #f39800;
	color: #FFF;
	border-color: #f39800;
}

.service-card:nth-of-type(4n+2) .service-card-btn {
	background-color: #949E0B;
	color: #FFF;
	border-color: #949E0B;
}

.service-card:nth-of-type(4n+3) .service-card-btn {
	background-color: #007D69;
	color: #FFF;
	border-color: #007D69;
}

.service-card:nth-of-type(4n+4) .service-card-btn {
	background-color: #2F4858;
	color: #FFF;
	border-color: #2F4858;
}

.service-card:nth-of-type(4n+1) .service-card-btn:hover {
	border-color: #f39800;
	background-color: transparent;
	color: #212121;
}

.service-card:nth-of-type(4n+2) .service-card-btn:hover {
	border-color: #949E0B;
	background-color: transparent;
	color: #212121;
}

.service-card:nth-of-type(4n+3) .service-card-btn:hover {
	border-color: #007D69;
	background-color: transparent;
	color: #212121;
}

.service-card:nth-of-type(4n+4) .service-card-btn:hover {
	border-color: #2F4858;
	background-color: transparent;
	color: #212121;
}

@media only screen and (max-width: 1080px) {
	
	.service-card {
    	width: 48%;
    	margin: 0 1% 3rem !important;
    }
}

@media only screen and (max-width: 980px) {
	
	.service-card {
    	width: 100%;
    	margin: 0 0 3rem !important;
    }
}

@media only screen and (max-width: 510px) {
	
	.service-card-textblock {
    	padding: 3rem 2.5rem;
    }
}



/* Startsida: Här finns vi
========================================================================== */
.offices .search-title {
	display: none;
}

.offices .office-wrapper {
	display: flex;
	flex-wrap: wrap;
	padding-top: 5rem;
	padding-bottom: 3rem;
}

.offices .office-item {
    position: relative;
    z-index: 1;
	width: 23%;
	margin: 1%;
	height: 20rem;
    /* width: 100%;
    margin: 0 1rem;
    height: 23rem; */
    overflow: hidden;
}

.office-item a {
	display: block;
	height: 100%;
	padding: 0;
}

.office-wrap {
	display: block;
	height: 100%;
}

.LayoutPage .offices .office-item img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.offices .office-item:hover img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	overflow: hidden;
}

.offices .thumbnail {
	position: relative;
	display: block;
	z-index: 2;
	width: 100%;
	height: 100%;
	box-shadow: 0 2rem 2rem rgba(0,0,0, 0.03);
}

.offices .office-content {
	margin: 0 auto;
    background-color: #2c3034;
    padding: 1rem 1.5rem;
    bottom: 0;
    width: 65%;
    position: absolute;
    z-index: 2;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

/* .offices .office-item:nth-child(4n+1) .office-content {background-color: #f39800;} */
/* .offices .office-item:nth-child(4n+2) .office-content {background-color: #949E0B;}
.offices .office-item:nth-child(4n+3) .office-content {background-color: #007D69;}
.offices .office-item:nth-child(4n+4) .office-content {background-color: #2F4858;} */

.offices .office-content p {
    font-size: 1.8rem;
    max-width: 850px;
    margin: 0 auto;
    text-transform: none;
    padding-bottom: 0;
    color: #fff;
    font-weight: 400;
    text-align: left;
    font-family: 'Roboto Slab', serif;
}

/* Slick slider */
.slick-dots {
	bottom: -4rem;
}

.slick-prev, 
.slick-next {
	top: 54%;
}

.slick-prev:before, 
.slick-next:before {
	color: #f39800;
	font-size: 25px;
}

.slick-dots li button:before {
	font-size: 1.3rem;
}

@media only screen and (max-width: 1200px) {
	.offices .office-item {
		width: 31.333%;
	}
}

@media only screen and (max-width: 900px) {
	.offices .office-item {
		width: 48%;
	}
}

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

	.offices .office-item {
		height: 10rem;
	}

	.offices .office-content {
		width: calc(100% - 3rem);
		padding: 0.5rem 1rem;
	}

	.offices .office-content p {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 768px) {
	.offices .section-block {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

/* Startsida: Kontakta oss
========================================================================== */
.call-to-action {
	background: linear-gradient(180deg , #f2f2f2 50%, #f2f2f2 50%);
}

.call-to-action .section-block {
    padding-top: 0;
    margin-top: -10rem;
    position: relative;
    padding-bottom: 6rem;
}
    
.cta-wrapper {
    background-color: #fff;
    width: 100%;
    padding: 4rem 6rem;
    text-align: center;
    box-shadow: 0px 1rem 20px rgba(0,0,0, 0.05);
    border-radius: 5px;
}

.cta-wrapper * {
	text-align: center;
}

.cta-title {
    padding-bottom: 3rem;
    font-size: 4.3rem;
}

@media only screen and (max-width: 600px) {
	
	.cta-wrapper {
		padding: 4rem 3rem;
	}
}
 
/* ==========================================================================
Undersidor - alla undersidor
========================================================================== */
.SubPage .top-section {
	display: none;
}

.SubPage h2 {
	font-size: 4rem;
    letter-spacing: 0.02em;
    line-height: normal;
}

/* Header title */
.SubPage .page-title {
	position: relative;
	z-index: 1;
    background-size: cover;
    background-position: center center;
 	height: auto; 
}

.SubPage .page-title .section-label { text-align: center; }
.SubPage .page-title .section-title { padding-bottom: 0; }

.SubPage .page-title .section-block {
	height: 100%;
	padding-top: 14rem;
	padding-bottom: 14rem;
	background-color: rgba(0,0,0,0.3);
}

.SubPage .page-title .section-title {
	font-size: 5rem;
	color: #fff;
	letter-spacing: 0.02em;
	line-height: 1.1;
}

.SubPage .page-title .section-label,
.SubPage .section-label {
	font-family: 'Libre Franklin', sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	text-transform: uppercase;
	letter-spacing: .2em;
	padding-bottom: 1em;
	color: #fff;
}

.SubPage .section-label {
	color: #333;
}
 
/* Subpage with sidebar */
.page-content .section-block {
	padding-top: 6rem !important;
}

.page-content .section-block-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 130rem;
}

.SubPage .page-content h2 {
	font-size: 4rem;
	line-height: 1.2;
}

.SubPage .page-content h3 {
	font-size: 3rem;
}

.SubPage .page-content h4,
.SubPage .page-content .small-title {
	font-size: 1.8rem;
}

/* Sidebar */
.page-content .col-0 {
	width: 30rem !important;
	padding: 0 !important;
	margin-right: 5rem;
	align-self: flex-start;
}


.page-content ul li,
.page-content ol li {
	padding-bottom: 1.2em;
	line-height: 1.8em;
}

/* Sidebar navigation */
.page-navigation {
    width: 100%;
    background-color: #fff;
    padding: 0;
    margin-top: 3rem;
}

.page-navigation-title {
	font-size: 2.2rem !important;
	color: #212121;
    padding: 0 0rem 1.5rem;
    border-bottom: 1px solid #e2e2e2;
    font-weight: 500 !important;
    font-family: 'Roboto Slab', serif;
}

.page-navigation ul {
	list-style: none;
	padding: 0;
	padding-top: 1rem;
}

.page-navigation .pagemenu-item {
    position: relative;
    padding: 0;
    line-height: 1;
    padding-bottom: 1rem;
}

.page-navigation .pagemenu-item::before {
	display: none;
}


.pagemenu-link {
    display: block;
    padding: 1rem 2rem;
    height: /* 4rem */ auto;
    vertical-align: middle;
    line-height: 1.4;
    background-color: #f39800;
    color: #fff;
}

.pagemenu-link:hover {
	background-color: #f39800;
	text-decoration: none;
	color: #fff;
}

.pagemenu-link.active {
	color: #fff;
}



.pagemenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    width: 4rem;
    height: 4rem;
    border: none;
    cursor: pointer;
    color: #fff;
}

.pagemenu-toggle:hover {
	background-color: #f39800;
}

.pagemenu-toggle::after {
	display: inline-block;
	position: absolute;
	content: '\f078';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
	font-size: 1.4rem;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}

.pagemenu-toggle.button-clicked::after {
	transform: translate(-50%, -50%) rotate(180deg);
}



.page-navigation .pagemenu-submenu {
    background-color: #f9f9f9;
    padding: 1rem 0;
	display: none;
}

.pagemenu-submenu {
	display: none;
}

.page-navigation .pagemenu-subpage-item {
	padding: 0;
	line-height: 1;
}

.pagemenu-submenu-link {
    padding: .5rem 2rem;
    display: block;
    font-size: 1.4rem;
    line-height: 1.4;
}

.pagemenu-subpage-item.active .pagemenu-submenu-link {
	color: inherit;
}

/* Text content */
.page-content .col-1 {
	width: 100% !important;
	max-width: 80rem;
	padding: 0;
} 

.article-container {
	background-color: transparent;
	padding: 7rem 0rem 7rem 0rem;
	text-align: left;
}

.article-container:last-child {
    padding-bottom: 0;
}
.article-section:last-child {
    margin-bottom: 0 !important;
}

.article-section {
	margin-bottom: 5rem;
}

.article-container:last-child {
    padding-bottom: 0;
}

.article-section ul li, 
.article-section ol li {
    line-height: 1.4 !important;
    padding-bottom: 1rem !important;
}

.article-section li {
    line-height: 1em !important;
    padding-bottom: 1.5rem;
    list-style: none;
}
.article-section ul li::before {
	content: "\f0da";
    display: inline-block;
    width: 1.8em;
    margin-left: -1.8em;
    color: #f29701;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
    font-size: 1.6rem;
}

@media only screen and (max-width: 980px) {
	
	.page-content .section-block-wrapper {
    	display: block;
    }

	.LayoutPage .page-content .col-0 {
		width: 100% !important;
		position: relative;
		top: auto;
		margin: 0;
		margin-bottom: 5rem;
	}
	
	.article-container {
		padding: 3rem 0rem;
	}

	

}

@media only screen and (max-width: 510px) {
	
	.LayoutPage .page-content .col-0 {
		width: 100% !important;
		position: relative;
		top: auto;
		margin: 0;
		margin-bottom: 5rem;
	}
	
	.LayoutPage .page-content .col-1 {
		width: calc(100% + 3rem) !important;
		max-width: 80rem;
		padding: 0;
		margin: 0 -1.5rem;
	}
	
	.article-container {
		padding: 3rem 1.5rem;
	}
	
	.article-section {
		margin-bottom: 5rem;
	}
	
	.SubPage .page-title .section-title {
		font-size: 3.8rem;
	}
	
	.SubPage h2,
	.SubPage .page-content h2 {
		font-size: 3rem;
		line-height: normal;
	}
	
	.SubPage h3,
	.SubPage .page-content h3 {
		font-size: 2.5rem;
	}
	
}


/* Undersida: Våra tjänster
========================================================================== */
.sub-services h3 {
	padding-top: 2rem;
}

.sub-services h4,
.sub-services .small-title {
	padding-top: 1rem;
}

.sub-services .fal {
	vertical-align: bottom;
	font-size: 1.5em;
	color: #f39800;
	padding-right: 5px;
}

/* Undersida: Stöd och matchning */
.sub-stodmatchning .page-title {
    background-image: url('/assets/images/workforyou-header-stodmatchning-2000px.jpg');
	background-position: center top 35%;
}

/* Undersida: Rusta och Matcha
========================================================================== */
.sub-yrkessvenska .page-title {
	background-image: url('/assets/images/workforyou-header-yrkessvenska-1920px.jpg');
    background-position: center;
}

/* Undersida: Rusta och Matcha
========================================================================== */
.sub-rustamatcha .page-title {
	background-image: url('/assets/images/workforyou-header-rustamatcha-2000px.jpg');
    background-position: center top 35%;
}

.LayoutPage .eu-flagga{
	width: 20rem !important;
	margin-top: 2rem;  
}

/* Citat */
.review-slider {
	margin-bottom: 5rem !important;
}
.review-slider .slick-track {
	display: flex !important;
}

.review-slider .slick-dots {
	bottom: -3rem;
}

.slick-dots li button:before {
    font-size: 1rem !important;
}
.citat-item {
	display: flex !important;
	align-items: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 3rem;
	border-radius: 1rem;
	background-color: #fdf3e2;
	margin: 0.5rem;
}

.review-slider .citat-item {
	height: auto;
}

.citat-item blockquote {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 auto;
	color: #212121; 
	padding: 1rem 2rem; 
	text-align: center;
}

.citat-item::before {
    content: '\f10d';
    position: absolute;
	z-index: -1;
	left: 2rem;
	top: -2rem;
    font-weight: 900;
    font-size: 12rem;
    color: rgb(243 152 0 / 30%);
    font-family: 'Font Awesome 5 Pro';
}

.citat-item::after {
    content: '\f10e';
    position: absolute;
	z-index: -1;
	right: 3rem;
	bottom: -1rem;
    font-weight: 900;
    font-size: 8rem;
    color: rgb(243 152 0 / 30%);
    font-family: 'Font Awesome 5 Pro';
}

.citat-item .bold{
	font-weight: 600;
}

.quote-wrapper{
	padding: 1rem 0rem 3rem 0rem;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
}

@media only screen and (max-width: 1430px) {
    blockquote {
        font-size: 2rem;
        margin-left: 2rem;
    }
    
    blockquote::after, blockquote::before {
        font-size: 6rem;
    }
    
    blockquote::before {
        margin: -3rem 0 0 -3rem;
    }
    
    blockquote::after {
        margin: -3rem 0 0 -3rem;
    }
}

/* Enskilda undersidor: Orter för Rusta och Matcha
========================================================================== */
.sub-rusta h2 {
	font-size: 2.6rem !important;
	padding-top: 2rem;
	padding-bottom: 1rem;
}

.sub-rusta h4 {
	padding-bottom: 1rem; 
}

/* Undersida: YSM */
.sub-ysm .page-title {
	background-image: url('/assets/images/workforyou-header-ysm-2000px.jpg');
	background-position: center top 42%;
}

/* Undersida: Arbetsmarknadsutbildning för synsvaga */
.sub-synsvaga .page-title {
	background-image: url('/assets/images/workforyou-header-synsvaga-2000px.jpg');
	background-position: center top 35%;
}

/* Undersida: Starta näringsverksamhet */
.sub-naringsverksamhet .page-title {
	background-image: url('/assets/images/workforyou-header-naringsverksamhet-2000px.jpg');
	background-position: center top 60%;
}

/* Undersida: Min väg till arbete */
.sub-mvta .page-title {
	background-image: url('/assets/images/workforyou-header-mvta-2000px.jpg');
	background-position: center top 30%;
}

/* Undersida: Om oss
========================================================================== */
.sub-about .page-title {
    background-image: url('/assets/images/workforyou-header-aboutus-2000px.jpg');
    background-position: center bottom 15%; 
}

.sub-about .section-title {
	color: #f39800;
}

.sub-about img {
	padding-top: 3rem;
}

.sub-about img:nth-child(2) {
	padding-bottom: 4rem;
}

.sub-about .header-logo img {
	padding-top: 0;
	padding-bottom: 0;
}

/* Våra värderingar */
.section-values {
	background-image: url(/assets/images/wfy-cover.jpg);
}

.section-values .section-label {
	color: #FFF;
}

.section-values .section-title {
	padding-bottom: 1.5rem;
	font-size: 4.5rem;
}

.section-values p {
	color: #FFF;
}

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



.section-values2 .section-title {
	padding-bottom: 1.5rem;
	font-size: 4.5rem;
}



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

/* Undersida: Hitta utbildning
========================================================================== */
.sub-education .page-title {
    background-image: url('/assets/images/workforyou-header-education-2000px.jpg');
	background-position: center top 36%;
}

/* Undersida: Komvux
========================================================================== */
.sub-komvux .page-title {
    background-image: url('/assets/images/workforyou-header-komvux-2000px.jpg');
	background-position: center top 36%;
}

/* Undersida: FAQ Komvux
========================================================================== */
.sub-faq .page-title {
    background-image: url('/assets/images/workforyou-header-faq-2000px.jpg');
	background-position: center top 36%;
}

/* Undersida: Lediga jobb
========================================================================== */
.sub-findjob .page-title {
    background-image: url('/assets/images/workforyou-header-findjob-2000px.jpg');
	background-position: center top 36%;
}

div#workbuster_container {
    margin-top: 8rem;
    box-shadow: 0px 1rem 20px rgba(0,0,0, 0.05);
}

/* Undersida: Kontakt
========================================================================== */
.sub-contact .page-title {
    background-image: url('/assets/images/cities/workforyou-huvudkontoret-2000px.jpg');
    background-position: center top 30%; 
}

.sub-contact .article-section {
	margin-bottom: 5rem;
}
.sub-contact .article-section h5 {
	padding-top: 1.5rem;
}
.sub-contact iframe {
	padding-top: 3rem;
}

#synpunkter .section-block-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Undersida: Alla orter + enskilda sidor 
========================================================================== */
/* Filtrering */
.sub-city .search-title {
    padding: 0 0rem 1.5rem;
	margin: 7rem 0 1.5rem;
    font-weight: 500 !important;
    border-bottom: 1px solid #e2e2e2;
}
      
.sub-city .search-wrapper {
    width: auto;
    border: 1px solid #eaeaea;
    box-shadow: none;
}

.sub-city .office-wrapper {
    position: relative;
    border: 1px solid #eaeaea;
    border-top: none;
    border-radius: 0 0 1rem 1rem;
    padding: 1rem 2rem;
    box-shadow: 0 1rem 1rem rgb(0 0 0 / 6%);
    margin: 0 2rem;
    background-color: #FFF;
}
 
.sub-city .office-item {
	padding: .5rem 0;
}

.sub-city .office-item .thumbnail {
	display: none;
}

.sub-city .office-item p {
	padding: 0;
} 
 
/* Content */
.sub-city .article-section {
	margin-bottom: 5rem;
}

.sub-city .article-section h4 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.sub-city .coworker-text h4 {
	padding-top: 0 !important;
}

.sub-city iframe {
	padding-top: 3rem;
}

/* Medarbetare */
.coworker-card-wrapper {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.coworker-card {
	width: 31%;
	margin: 1%;
	position: relative;
	max-width: 34rem;
	background: #F39812;
}

.coworker-image {
	width: 100%;
}

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

.coworker-text {
    box-sizing: border-box;
    padding: 2rem 2.5rem;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.coworker-text * {
	color: #fff;
}

.coworker-text h4 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    padding-bottom: 0;
}

.coworker-text h5 {
	font-size: 1.6rem;
	letter-spacing: 0.02rem;
	font-weight: 300;
	text-transform: none;
	padding-bottom: 2rem;
	font-style: italic;
}

.coworker-text .fas {
	padding-right: 7px;
}

.coworker-text a {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 0;
	line-height: 2;
}

.coworker-text a:hover {
    color: #fff !important;
    text-decoration-color: #fff;
}

.coworker-image,
.coworker-text {
	width: 100%;
}

.contact-details {
	font-style: normal;
}

.contact-detail {
    display: /* flex */ block;
    margin: 0 0;
    align-items: center;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0;
    font-weight: 200;
}

.contact-detail::before {
	display: inline-block;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	font-size: 1.3em;
	margin-right: 0.5rem;
	vertical-align: middle;
	color: #E73137;
	width: 2em;
	text-align: center;
	display: none;
}

.contact-detail a:hover {
	text-decoration: underline;
	  text-decoration-color: #fff !important;
}

.contact-detail.address::before { content: '\f3c5'; }
.contact-detail.mobile::before { content: '\f3cd'; }
.contact-detail.phone::before { content: '\f67d'; }
.contact-detail.mail::before { content: '\f0e0'; }

@media only screen and (max-width: 1150px) {
	.coworker-image,
	.coworker-text {
		width: 100%;
	}
	
	.coworker-text {
	    padding: 3rem 3rem;
	    border-radius: 0;
	}
}

@media only screen and (max-width: 980px) {
	.sub-city .search-title {
		margin-top: 0;
	}
}

@media only screen and (max-width: 768px) {
	
	.coworker-card {
		width: 48%;
	}
}


@media only screen and (max-width: 510px) {
	
	.coworker-card {
		width: 100%;
		margin: 0 0 2rem 0;
	}
	
	.coworker-card-wrapper {
		justify-content: center;
	}
}

/* Enskilda orter */
.sub-bollnas .page-title {
    background-image: url('/assets/images/cities/workforyou-bollnas-2000px.jpg');
}

.sub-gavle .page-title {
    background-image: url('/assets/images/cities/workforyou-gavle-2000px.jpg');
}

.sub-ljusdal .page-title {
    background-image: url('/assets/images/wfy-cover.jpg');
}

.sub-sandviken .page-title {
    background-image: url('/assets/images/cities/workforyou-sandviken-2000px.jpg');
}

.sub-hofors .page-title {
    background-image: url('/assets/images/cities/workforyou-hofors-2000px.jpg');
    background-position: center bottom 40%;
}

.sub-hudiksvall .page-title {
    background-image: url('/assets/images/cities/workforyou-hudiksvall-2000px.jpg');
}

.sub-skelleftea .page-title {
    background-image: url('/assets/images/cities/workforyou-skelleftea-2000px.jpg');
}

.sub-huvudkontor .page-title {
    background-image: url('/assets/images/cities/workforyou-huvudkontoret-2000px.jpg');
    background-position: center top 30%;
}

.sub-kista .page-title {
    background-image: url('/assets/images/wfy-cover.jpg');
}

.sub-uppsala .page-title {
    background-image: url('/assets/images/cities/workforyou-uppsala-2000px.jpg');
}

.sub-sodertalje .page-title {
    background-image: url('/assets/images/cities/workforyou-sodertalje-2000px.jpg');
}

.sub-haninge .page-title {
    background-image: url('/assets/images/cities/workforyou-haninge-2000px.jpg');
	background-position: center top 45%;
}

.sub-nykoping .page-title {
    background-image: url('/assets/images/cities/workforyou-nykoping-2000px.jpg');
    background-position: center top 40%;
}

.sub-eskilstuna .page-title {
    background-image: url('/assets/images/cities/workforyou-eskilstuna-2000px.jpg');
}

.sub-karlstad .page-title {
    background-image: url('/assets/images/cities/workforyou-karlstad-2000px.jpg');
}

.sub-oxelosund .page-title {
    background-image: url('/assets/images/cities/workforyou-oxelosund-2000px.jpg');
    background-position: center bottom 20%;
}

.sub-hassleholm .page-title {
    background-image: url('/assets/images/wfy-cover.jpg');
    background-position: center bottom 35%;
}

.sub-karlshamn .page-title {
    background-image: url('/assets/images/wfy-cover.jpg');
}

.sub-ystad .page-title {
    background-image: url('/assets/images/cities/workforyou-ystad-2000px.jpg');
    background-position: center bottom 32%;
}

.sub-lund .page-title {
    background-image: url('/assets/images/cities/workforyou-lund-2000px.jpg');
    background-position: center top 47%;
}

.sub-angelholm .page-title {
    background-image: url('/assets/images/cities/workforyou-angelholm-2000px.jpg');
    background-position: center top 38%;
}

.sub-landskrona .page-title {
    background-image: url('/assets/images/cities/workforyou-landskrona-2000px.jpg');
    background-position: center top 35%;
}

.sub-jonkoping .page-title {
    background-image: url('/assets/images/cities/workforyou-jonkoping-2000px.jpg');
}

.sub-linkoping .page-title {
    background-image: url('/assets/images/cities/workforyou-linkoping-2000px.jpg');
    background-position: center bottom 30%;
}

.sub-visby .page-title {
    background-image: url('/assets/images/cities/workforyou-visby-2000px.jpg');
    background-position: center top 30%;
}

.sub-astorp .page-title {
    background-image: url('/assets/images/wfy-cover.jpg');
}

.sub-goteborg .page-title {
    background-image: url('/assets/images/cities/workforyou-goteborg-2000px.jpg');
    background-position: center bottom 15%;
}

.sub-eksjo .page-title {
    background-image: url('/assets/images/cities/workforyou-eksjo-2000px.jpg');
    background-position: center bottom 40%;
}

/* Undersida: New in Sweden?
========================================================================== */
.sub-newinsweden .page-title {
    background-image: url('/assets/images/workforyou-header-newinsweden-2000px.jpg');
	background-position: center top 20%;
}

.sub-newinsweden h3 {
	font-size: 3.5rem;
}

.sub-newinsweden h4 {
	font-size: 2rem;
	padding-top: 2rem;
}

/* Undersida: För arbetsgivare
========================================================================== */
.sub-employer .page-title {
    background-image: url('/assets/images/workforyou-header-employer-2000px.jpg');
	background-position: center top 42%;
}

/* Undersida: Bemanning och rekrytering
========================================================================== */
.sub-recruitment .page-title {
    background-image: url('/assets/images/workforyou-header-recruitment-2000px.jpg');
	background-position: center top 38%;
}

/* Undersida: Tolk och översättning
========================================================================== */
.sub-translate .page-title {
    background-image: url('/assets/images/workforyou-header-translation-2000px.jpg');
	background-position: center top 40%;
}

/* Undersida: Omställning
========================================================================== */
.sub-conversion .page-title {
    background-image: url('/assets/images/workforyou-header-conversion-2000px.jpg');
	background-position: center top 36%;
	
}

/* ==========================================================================
Undersida: Här finns vi
========================================================================== */
.sub-stallen .page-title {
    background-image: url(/assets/images/workforyou-header-naringsverksamhet-2000px.jpg);
    background-position: center top 60%;
}

/* Sök */
.search-wrapper {
    position: relative;
    width: 35rem;
    max-width: 100%;
    height: 4rem;
    padding: 0 2rem 0 5rem;
    border: none;
    border-radius: 5rem;
    box-shadow: 1px 1px 5px rgb(0 0 0 / 20%);
}

.search-wrapper em {
    position: absolute;
    left: 2rem;
    top: 50%;
    font-size: 2rem;
    transform: translateY(-50%);
}

.search-wrapper input {
    width: 100%;
    height: 100%;
    border: none;
}

.search-wrapper input:focus {
    outline: unset;
}

.office-item.hidden-search-item {
    display: none;
} 
/* ==============
Undersida Work stories
========================================================================== */
.width-1300 .section-block .section-block-wrapper{
	max-width: 1400px!important;
	margin: auto;
	
}

.width-1100 .section-block .section-block-wrapper{
	max-width: 900px!important;
	
	
}
.width-800 .section-block .section-block-wrapper{
	max-width: 800px!important;
	
	
}

.quote{
	width: 700px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	 
	 font-weight: 500;
}

.service-offer-wrapper2 .service-card {
	
	
	margin: auto;

   
 
}
/* ==========================================================================
Footer
========================================================================== */
.footer {
    background: #F2F2F2;
    padding: 0;
    display: block;
}

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

.footer p, 
.footer a,
.footer span {
	text-align: left;
	font-size: 1.6rem;
	color: #212121;
}

.footer-container {
    display: flex;
    padding: 4rem 0 5rem;
}

.SubPage .footer-container {
    padding: 6rem 0 4rem;
}

.footer-section {
    width: 30%;
    align-self: center;
}

.footer-logo {
    width: 20rem;
    margin: 0;
    display: block;
    text-align: left;
}

/* FOOTER MENU */
.footer-nav {
    width: 70%;
}

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

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

p.footer-heading {
	font-size: 1.8rem;
	font-weight: 400;
	color: #f39800;
	padding-bottom: 2rem;
	font-family: 'Roboto Slab', sans-serif;
	letter-spacing: 0.01em;
}

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

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

.footer .footer-menu-link {
	font-size: 1.6rem;
}

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

/* 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;
	
	border-radius: 2rem;	
	background-color: #212121;
	color: #FFF; 
}

.footer .social:hover {
	background-color: #f39800;
	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 {
	width: 100%;
    display: flex;
    justify-content: space-between;
    text-align: right;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.footer-bottom p,
.footer-bottom span,
.footer-bottom a {
    font-size: 1.3rem;
}

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

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

@media only screen and (max-width: 1200px) {
	
	.footer-container {
	    flex-wrap: wrap;
	}
	
	.footer-section {
	    width: 100%;
	    order: 2;
	}
	
	.footer-nav {
		width: 100%;
		order: 1;
    }
    
    .footer-menu-wrapper {
	    flex-wrap: wrap;
	}

	.footer-menu {
	    width: 25%;
	}
	
	.footer-logo {
	    margin: 0 auto;
	}
	
}

@media only screen and (max-width: 800px) {
	
	.footer-section {
		order: 1;
	}
	
	.footer-section img {
		padding-bottom: 2rem;
		padding-top: 2rem;
	}
	
	.footer .container {
		padding: 0 2rem;
	}
    	
	.footer-menu {
	    width: 100%;
	}
	
	.footer-menu * {
		text-align: center !important;
	}
	
	.footer .social-list {
		justify-content: center;
	}

}
