/* Safe Return Asset Management Nordic AB */

/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Open Sans:wght@300;400;500;600;700;800&family=Tenor+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

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

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

/* Of-wrapper
========================================================================== */
.of-wrapper img {
	position: static;
    transform: none;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

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

body {
	-webkit-font-smoothing: antialiased;
	background-position: center center !important;
}

html {
	font-size: 62.5%;
}

/* 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.isMobile .body-background {
	background-size: cover;
}



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

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

#video-start .section-block-wrapper {
	max-width: 110rem;
}

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

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

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

.container {
	max-width: 140rem;
}

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

.custom-image {
	width: 80%;
}

.LayoutPage .pt-0 .section-block,
.SubPage .LayoutPage .pt-0 .section-block {
	padding-top: 0;
}


/* paddings */
.pb-05 {
	padding-bottom: 0.5rem !important;
}

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

.pt-1 {
	padding-top: 1rem !important;
}

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

.py-3 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

/* Margins */
.m-auto {
	margin: auto;
}

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

/* ==========================================================================
Cookies 
========================================================================== */
.cookies-notis {
	display: none;
}

.cookies-notis {
	z-index: 9;
	position: fixed;
	bottom: 0;
	background: #3D9628;
	border: 1px solid #3D9628;
	text-align: center;
	padding: 3rem 2rem;
	max-width: 100%;
	width: 100%;
	border-radius: 0;
}

.cookies-notis p,
.cookies-notis a {
	color: #fff;
	font-size: 1.4rem;
	padding: 0;
	font-weight: 400;
}

.cookies-notis a {
	font-size: 1.5rem;
	color: #fff;
	text-decoration: underline;
	white-space: nowrap;
	text-transform: none;
	font-weight: 300;
}

.cookies-notis a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.cookies-notis #close-cookies {
	position: absolute;
	top: 1rem;
	right: 1rem;
	cursor: pointer;
}

.cookies-notis #close-cookies em {
	font-size: 3rem;
	padding: 1rem;
	color: #fff;
	transition: .25s ease-in-out;
}

.cookies-notis #close-cookies em:hover {
	color: #f5d4b8;
}

@media only screen and (max-width: 630px) {
	.cookies-notis {
		margin-bottom: 7rem;
	}
}

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

	.cookies-notis p,
	.cookies-notis a {
		max-width: 35rem;
		margin: 0 auto;
	}
}

/* ==========================================================================
Knappar & speciella länkar
========================================================================== */

.btn {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-style: normal;
	width: 22rem;
	max-width: 25rem;
	box-sizing: border-box;
	padding: 1.6rem 3.9rem;
	cursor: pointer;
	font-size: 1.2rem;
	border-radius: 40px;
	border: none;
	outline: none;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	line-height: 1.5;
	background-color: #3D9628;
	color: #fff !important;
	letter-spacing: .1em;
	text-transform: uppercase;
	display: block;
}

.btn:hover {
	background-color: #343E3D;
	color: #fff;
	border: none;
}

.btn-center {
	margin: 0 auto;
	text-align: center;
	display: block;
	max-width: 250px;
}

.btn-grey {
	background-color: #343E3D;
	border: 2px solid transparent;
}

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

.btn-green {
	background-color: #3D9628;
	border: 2px solid transparent;
}

.btn-green:hover {
	border: 2px solid #3D9628;
	color: #3D9628;
	background-color: transparent;
}

.arrow-link::after {
	content: ' \f178';
	opacity: 1;
	transition: all .3s ease;
	font-family: 'Font Awesome 5 Pro';
	margin-left: 3px;
	font-weight: 400;
}

.arrow-link:hover::after {
	content: ' \f178';
	opacity: 1;
	margin-left: 10px;
}

.button-wrap{
	display: flex;
	justify-content: space-around;
}

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

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

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

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

.split-content {
	width: 50%;
	padding: 7rem 9rem;
	text-align: left;
	z-index: 2;
}

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

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

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

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

	.split-content,
	.split-image {
		width: 100%;
	}

	.split-content {
		padding: 5rem 3rem;
	}
}

/* ==========================================================================
Text och typsnitt
========================================================================== */
p,
li,
td {
	color: #6f6f6f;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-style: normal;
	text-decoration: none;
	font-size: 1.9rem;
	line-height: 1.8;
	letter-spacing: normal;
}

a {
	color: #3D9628;
	font-family: 'Open Sans', sans-serif;
	font-weight: 800;
	font-style: normal;
	text-decoration: none;
	font-size: 1.55rem;
	line-height: 1.7;
	letter-spacing: .05em;
	text-transform: uppercase;
}

a:hover {
	text-decoration: none;
	color: #333;
}

ul {
	list-style-type: inherit;
}

.bold-text,
.text-bold {
	font-weight: 600;
}

.italic-text {
	font-style: italic;
}

.gdpr-text {
	font-size: 1.4rem;
	max-width: 65rem;
	margin: 0 auto;
	padding-top: 0rem;
	
	font-weight: 400;
	text-align: center;
}

.gdpr-text a {
	font-size: 1.4rem;
	max-width: 65rem;
	margin: 0 auto;
	padding-top: 3rem;
	color: inherit;
	text-transform: none;
	font-weight: 400;
	text-decoration: underline;
}

.text-label {
	font-style: normal;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: normal;
	color: #3D962F;
	font-family: 'Open Sans', sans-serif;
	text-transform: none;
	font-size: 2rem;
}

.text-label-black {
	font-style: normal;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: normal;
	font-family: 'Open Sans', sans-serif;
	text-transform: none;
	font-size: 2.2rem;
}

.light-text {
	font-weight: 300;
}

h1,
h2,
.LayoutPage .section-title  {
	font-weight: 600;
	font-style: normal;
	font-family: 'Open Sans', sans-serif;
	padding-bottom: 20px;
	text-transform: none;
	font-size: 4.5rem;
	line-height: 1.3;
	letter-spacing: normal;
}

.small-title {
font-weight: 600;
font-style: normal;
font-family: 'Open Sans', sans-serif;
padding-bottom: 20px;
text-transform: none;
font-size: 3rem;
line-height: 1.3;
letter-spacing: normal;
}

.LayoutPage .text-label-alt,
h3 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
	font-style: normal;
	line-height: 1.7;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #3D9628;
}

.LayoutPage .small-title,
h4 {
	font-style: normal;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: .08em;
	color: #607466;
	font-family: 'Open Sans', sans-serif;
	text-transform: none;
	font-size: 2.2rem;
}

h5 {
	font-size: 1.3rem;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	color: #87a18e;
}

.text-black{
	color: #87a18e !important;
}

.text-center{
	text-align: center;
}
/* lilla "abc"-blocket */
.smalltext-type {
	max-width: 60rem;
}

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

.playfair-display {
	font-family: 'Playfair Display', serif;
	font-weight: 500;
	font-style: italic;
	line-height: 1.6;
}

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

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

@media only screen and (max-width: 330px) {
	.LayoutPage .section-title,
	h2 {
		font-size: 3rem;
	}
}

/* ==========================================================================
Grafiska Element
========================================================================== */

.op-left {
	object-position: left;
}

/* ==========================================================================
Färger
========================================================================== */

.text-red{
	color: rgb(194, 2, 2);
}

.text-primary,
.text-green {
	color: rgb(2, 129, 2);
}

.text-black2{
	color: black !important;
	font-weight: 600 !important;
}

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

.top-header-cta  {
font-size: 1.4rem;
font-weight: 600;
}

/* hide header on scroll */
.IndexPage header {
	background-color: transparent;
	box-shadow: none;
}
header {
	background-color: #11111184;
	position: fixed;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.04);
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-ms-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

header.scrolled {
	background-color: #11111184;
}

header.hidden {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
}

.EditMode header.hidden {
	transform: none;
}

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

header .header-logo {
	width: 19rem;
	position: absolute;
	line-height: 0;
	padding-top: 1.8rem;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

header.scrolled .header-logo,
header.hidden .header-logo {
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

nav.mainmenu {
	text-align: center;
	display: block;
}

.EditMode nav.mainmenu {
	display: block;
}

nav.mainmenu ul {
	text-align: center;
}

nav.mainmenu ul.TemplateMenu>li {
	line-height: 72px;
	height: 72px;
}

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

nav.mainmenu a {
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 1.2rem;
	color: #fff;
	text-transform: uppercase;
	padding: 0 5px;
	letter-spacing: .08em;
}

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

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

nav.mainmenu .expandable:after {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	content: '\f0d7';
	margin-left: 7px;
	text-decoration: none;
	display: inline-block;
}

nav.mainmenu .fab {
	color: #fff;
	font-size: 2.5rem;
	vertical-align: middle;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}

nav.mainmenu .facebook-item a:before {
	display: none;
}

nav.mainmenu .fab:hover {
	color: #fff;
}

nav.mainmenu .facebook-item a {
	margin-left: 0;
	padding-left: 10px;
	padding-right: 1em;
}

/* Dropdown menu */

.expandable-li ul {
	background-color: #1111116c;
	border-top: 2px solid #3D9628;
}

.expandable-li ul li a {
	line-height: 6rem;
}

nav.mainmenu ul>li>ul {
	top: 7.2rem;
	width: 37rem;
}

nav.mainmenu .expandable-li:hover ul>li>a {
	color: #fff !important;
	text-decoration: none;
}

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

nav.mainmenu .expandable-li ul>li:hover>a {
	color: #3D9628 !important;
	text-decoration: none;
}

.EditMode nav.mainmenu ul>li>ul>li>ul {
	left: unset;
	right: 100%;
	max-height: 50vh;
	overflow: auto;
}

.dropdown-arrow::before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	content: '\f0d7';
	text-decoration: none;
	display: inline-block;
	color: #222;
	right: 4rem;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
}

.dropdown-link {
	font-size: 1.8rem !important;
	padding: 0 3rem !important;
}

.dropdown-link::after {
	color: #222;
	content: '\f0da';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	font-size: .8em;
	margin-left: 1rem;
	transition: all .3s ease;
}

.expandable-li ul li:hover .dropdown-link::after {
	color: #009dde;
	margin-left: 1.5rem;
	transition: all .3s ease;
}

/* Bokaknapp */

.boka-item a {
	color: #fff !important;
	border-radius: 4rem;
	padding: 1.5rem 4rem !important;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	/*font-weight: 800 !important;*/
	text-transform: none !important;
	background-color: #3D9628;
}

nav.mainmenu .boka-item {
	position: absolute;
	right: 2rem;
}

nav.mainmenu .boka-item:hover a,
nav.mainmenu .boka-item.active a {
	background-color: #607466;
	color: #fff !important;
}

nav.mainmenu .boka-item.active a:before,
nav.mainmenu .boka-item:hover a:before {
	display: none;
}

@media only screen and (min-width: 1600px) {
	header .container {
		min-width: 160rem;
	}
}

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

	.dropdown-arrow::before {
		font-family: 'Font Awesome 5 Pro';
		font-weight: 700;
		font-size: 1.6rem;
		content: '\f0d7';
		text-decoration: none;
		display: inline-block;
		color: #111;
		right: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		position: absolute;
	}

	.dropdown-arrow {
		max-width: 50px;
		width: 100%;
		height: 50px;
		top: 0;
		right: 0;
	}

	nav.mainmenu .expandable:after {
		display: none;
	}

	nav.mainmenu {
		text-align: center;
		width: 100%;
		box-shadow: none;
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		height: 100%;
		overflow-y: scroll;
		background-color: #111111c5;
	}

	header .header-logo {
		z-index: 99999 !important;
		padding-top: 2rem;
		width: 17rem;
	}

	.openmenu {
		display: none !important;
	}

	.mainmenu {
		position: fixed;
		top: 0;
		left: 0;
		display: block !important;
		height: 72px !important;
		width: 100% !important;
		background: transparent;
		-ms-overflow-style: none;
		overflow: -moz-scrollbars-none;
		scrollbar-width: none;
		box-shadow: none !important;
		transition: all .5s ease;
	}

	.mainmenu::-webkit-scrollbar {
		width: 0 !important
	}

	/* nav ej aktiv */
	#close {
		position: fixed;
		top: 25px;
		right: 5px;
		transform: translateY(-25px);
		width: 60px;
		height: 60px;
		display: flex;
		flex-direction: column;
		align-items: center;
		cursor: pointer;
	}

	#close .bar {
		position: absolute;
		width: 50%;
		height: 2px;
		background-color: #fff;
		transition: all .5s ease;
	}

	#close .bar:first-of-type {
		top: 42%
	}

	#close .bar:last-of-type {
		top: 58%
	}

	.Padding {
		display: block !important;
		visibility: hidden;
		margin: 0 !important;
		padding: 120px 0 0 0 !important;
		transition: all .5s ease;
	}

	.Padding ul li {
		height: auto !important;
		line-height: unset !important;
		opacity: 0;
		text-align: center;
		-webkit-transition: opacity 0.75s ease;
		-moz-transition: opacity 0.75s ease;
		-o-transition: opacity 0.75s ease;
		transition: opacity 0.75s ease;
	}

	.Padding ul li a {
		color: #333 !important;
		padding: 15px 0 !important;
		margin: 5px 0 !important;
		transition: color .25s ease;
		width: 100%;
	}

	.expandable-li ul,
	nav.mainmenu ul>li>ul {
		background: #111;
	}

	nav.mainmenu .expandable-li a {
		margin: 0 60px !important;
		width: calc(100% - 120px);
	}

	nav.mainmenu ul>li>ul>li {
		margin: 0;
	}

	nav.mainmenu ul>li>ul>li.active {
		background-color: #111;
	}

	nav.mainmenu ul>li>ul>li.active a {
		color: #3D9628;
	}

	nav.mainmenu ul>li>ul>li a {
		margin: 0 auto !important;
		font-size: 1.9rem;
		padding: 1rem 0 !important;
	}

	nav.mainmenu li,
	nav.mainmenu li a {
		padding-left: 0 !important;
	}

	.dropdown-arrow-open,
	.dropdown-arrow-close {
		background: none !important;
	}

	.dropdown-arrow-open:hover,
	.dropdown-arrow-close:hover {
		background: none !important;
	}

	.dropdown-arrow,
	.dropdown-arrow:hover {
		width: 60px;
		height: 100%;
		top: 0;
		right: 0;
	}

	.dropdown-arrow,
	.dropdown-arrow:hover {
		width: 60px;
		height: 53px;
		top: 0;
		right: 0;
	}

	.dropdown-arrow::after {
		content: '\25B7';
		position: absolute;
		top: 50%;
		left: 42%;
		transform: translate(-50%, -50%);
		transition: transform .25s ease;
		font-size: 2.5rem;
	}

	.level-open .dropdown-arrow::after {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	.level-close .dropdown-arrow::after {
		transform: rotate(180deg);
	}

	/* nav aktiv */
	.mainmenu.active-menu {
		height: 100% !important;
	}

	.mainmenu.active-menu #close .bar {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.mainmenu.active-menu #close .bar:first-of-type {
		transform: rotate(225deg);
	}

	.mainmenu.active-menu #close .bar:last-of-type {
		transform: rotate(-225deg);
	}

	.mainmenu.active-menu .Padding {
		visibility: visible;
	}

	.mainmenu.active-menu .Padding ul li {
		opacity: 1;
	}

	.closemenu {
		display: none;
		background: url('/assets/images/closemenu-icon-black.png') no-repeat center center;
		width: 50px;
		height: 50px;
		cursor: pointer;
		position: absolute;
		right: 20px;
		top: 10px;
		background-size: 40px 40px;
	}

	nav.mainmenu .Padding {
		padding: 40px 0 0 0;
		margin-top: 72px;
	}

	nav.mainmenu ul.TemplateMenu>li {
		height: 60px;
		width: 100%;
	}

	nav.mainmenu a {
		padding: 10px 36px;
		font-size: 22px;
	}

	.SubPage nav.mainmenu .home {
		display: block;
	}

	nav.mainmenu li,
	nav.mainmenu li a {
		font-size: 2.5rem;
		border-bottom: none;
		margin: 3rem 0;
		color: #fff !important;
		padding-left: 0;
		font-weight: 500;
	}

	nav.mainmenu li.level-open {
		background-color: #111;
	}

	nav.mainmenu .boka-item {
		right: 0;
	}

	nav.mainmenu .boka-item a {
		max-width: 25rem;
		margin: 0 auto !important;
		font-size: 1.6rem;
		padding: 1.9rem 0 !important;
	}
}

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

	nav.mainmenu li,
	nav.mainmenu li a {
		font-size: 1.9rem;
	}
}

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

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

	nav.mainmenu li,
	nav.mainmenu li a {
		font-size: 1.7rem;
	}
}

/* ==========================================================================
Top-section
========================================================================== */
.top-section {
	height: 100vh;
}

.page-title-wrap {
	top: 53%;
	left: 50%;
	width: 100%;
	max-width: 90rem;
}

.page-title-wrap h1 {
	text-transform: none;
	font-size: 6.5rem;
	font-weight: 500;
	font-style: normal;
	line-height: 1.3;
	letter-spacing: normal;
	color: #fff;
	text-shadow: none;
	padding-bottom: 0.3em;
	font-family: 'Tenor Sans', sans-serif;
}

.page-title-wrap h2 {
	line-height: 1.8;
	padding-bottom: 2.5rem;
	letter-spacing: normal;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-family: 'Open Sans', sans-serif;
	font-size: 2rem;
	font-weight: 900;
	color: #3D9628;
}

.page-title-wrap .btn {
	display: inline-block;
	max-width: 260px;
	margin: 2rem;
}

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

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

	.page-title-wrap p {
		text-align: center;
	}
}

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

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

	.page-title-wrap {
		padding: 4rem;
		top: 49%;
	}
}

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

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


/* Funktion: Scroll down
========================================================================== */
@-moz-keyframes bounce {

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

	40% {
		-moz-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	60% {
		-moz-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

@-webkit-keyframes bounce {

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

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	60% {
		-moz-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

.arrow {
	position: absolute;
	bottom: 20%;
	margin-left: 50%;
	left: -2rem;
	width: 3rem;
	height: 3rem;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
	background-size: contain;
}

.SubPage .arrow {
	display: none;
}

.bounce {
	-moz-animation: bounce 2.5s infinite;
	-webkit-animation: bounce 2.5s infinite;
	animation: bounce 2.5s infinite;
}

@media only screen and (max-width: 630px) {
	.arrow {
		display: none;
	}
}


/**/

#parallax-malgrupp {
	background-image: url(/assets/images/safe-return-personal-2000px.jpg);
	max-width: 100% !important;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	height: 40rem;
}

/* Full width split */
.wrapper {
	display: flex;
	height: 90vh;
}

.bild,
.text {
	flex: 1;
	height: 100%;
}

.text {
	display: flex;
	height: 100%;
}

.text-wrapper {
	align-self: center;
	padding: 12rem;
}

/* Mobilikoner */

.mobile-wrapper {
	display: none;
}

@media only screen and (max-width: 630px) {
	.mobile-wrapper {
		display: block;
		width: 100vw;
		position: fixed;
		bottom: 0;
		z-index: 20;
	}

	.mobile-wrapper .mobile-wrap {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		border-top: 1px solid #3D9628;
		background-color: #111;
	}

	.mobile-wrapper .mobile-icon-wrap {
		width: 33%;
		text-align: center;
	}

	.mobile-wrapper .mobile-icon-wrap:nth-child(2) {
		border-left: 1px solid #333;
		border-right: 1px solid #333;
	}

	.mobile-wrapper .fal {
		font-size: 1.9rem;
		font-weight: 100;
	}

	.mobile-wrapper .mobile-icon {
		order: 0;
		height: 7.5rem;
		width: 7.5rem;
		padding: 1.5rem;
		box-sizing: border-box;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
	}

	.mobile-wrapper .mobile-icon .fal::after {
		background-color: transparent;
		top: 0;
		font-size: 1.1rem;
		transform: translateX(0);
		transition-property: opacity, top, transform;
		transition-delay: .4s, .4s, .4s;
		color: #fff !important;
		color: var(--menu-text-color);
		font-family: 'Open sans', sans-serif;
		display: block;
		font-weight: 600;
		padding-top: 1.4rem;
		letter-spacing: 1px;
	}

	.mobile-wrapper .mobile-icon .mobile-pin::after {
		content: 'KARTA';
	}

	.mobile-wrapper .mobile-icon .mobile-phone::after {
		content: 'RING';
	}

	.mobile-wrapper .mobile-icon .mobile-email::after {
		content: 'EPOST';
	}
}

/* Blogg-snurra på startsidan 
========================================================================== */
#safereturn-blogg {
	background: #111;
	padding: 8px 0;
	bottom: 0px;
	position: relative;
}

#safereturn-blogg .section-block-wrapper {
	display: flex;
	flex-wrap: wrap;
}

#safereturn-blogg .blogg-item-slick {
	padding: 0.5rem 5rem !important;
}

#safereturn-blogg p {
	color: #3D9628;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
}

#safereturn-blogg h3 {
	font-size: 1.6rem;
	color: #FFF;
}

.halloween-header {
	word-break: break-all;
}

#safereturn-blogg .slick-slide:focus,
#safereturn-blogg .slick-slide a:focus {
	outline: none;
}

.table {
	width: 50%;
	margin: 2rem 0;
}


.table td {
	font-size: 1.4rem;
}

/* Om oss
========================================================================== */

.services-wrapper {
	display: flex;
	flex-wrap: wrap;
	padding-top: 5rem;
	max-width: 100rem;
	margin: 0 auto;
}

.service-card {
	background-color: #3D9628;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
	border-radius: 2px;
	overflow: hidden;
	width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

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

.service-image {
	width: 100%;
	height: 22rem;
	overflow: hidden;
}

.service-image img {
	object-fit: cover;
	object-position: center;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	transition: all .3s ease;
}

.service-card:hover .service-image img {
	transform: scale(1.05);
	transition: all .3s ease;
}

.service-text {
	padding: 2rem 3rem;
}

.service-text p {
	padding: 0;
	font-size: 2rem;
	vertical-align: middle;
	color: #fff;
	font-weight: 600;
	text-transform: none;
	font-family: 'Open Sans', sans-serif;
}

.service-text p::after {
	display: inline-block;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	content: '\f0da';
	position: relative;
	margin-left: 1rem;
	transition: all .5s ease;
	font-size: .7em;
	vertical-align: middle;
}

.service-card:hover .service-text p::after {
	margin-left: 2rem;
	transition: all .5s ease;
}

@media only screen and (max-width: 980px) {
	.service-text {
		padding: 2rem;
	}

	.service-text p {
		font-size: 1.6rem;
	}
}

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

/* Medarbetare
========================================================================== */

#malgrupp {
	overflow: hidden;
}

#malgrupp .section-block {
	padding-bottom: 20rem !important;
}

.overlay-wrapper {
	width: 100%;
	position: relative;
}

.overlay-image {
	width: 100%;
	height: 60rem;
	overflow: hidden;
}

.overlay-wrapper.left .overlay-image {
	border-radius: 0 5px 5px 0;
}

.overlay-wrapper.right .overlay-image {
	border-radius: 5px 0 0 5px;
	margin-left: 20%;
}

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

.overlay-textblock .text-label {
	padding-bottom: 0;
}

.overlay-text p {
	max-width: 62rem;
	margin: 0 auto;
	padding-bottom: 0;
	font-size: 2.5rem;
}

.overlay-text h2 {
	font-size: 3.5rem;
	padding-bottom: 1.5rem;
}

.overlay-textblock {
	position: absolute;
	bottom: -10rem;
	max-width: 160rem;
	width: 100%;
	padding: 0 8rem;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
}

.overlay-text {
	width: 80rem;
	max-width: 100%;
	background-color: #111;
	padding: 5rem;
	text-align: left;
	border-radius: 5px;
	margin: 0 auto;
	box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
}

.overlay-wrapper.right .overlay-textblock {
	display: flex;
	justify-content: flex-end;
}

.overlay-text * {
	color: #FFF;
	text-align: center;
}

#about-us .section-block {
	padding-top: 0 !important;
}

@media only screen and (max-width:1466px) {
	.overlay-image {
		height: 57rem;
	}

	.overlay-image img {
		object-position: center 65%;
	}
}

@media only screen and (max-width: 630px) {
	.overlay-textblock {
		padding: 0 3rem;
	}

	.overlay-text {
		padding: 5rem 3rem;
	}
}

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

@media only screen and (max-width: 330px) {
	.overlay-text h2 {
		font-size: 3rem;
	}

	.overlay-text p {
		font-size: 1.9rem;
	}
}

/* Blogg
========================================================================== */

#blog * {
	text-align: left;
}

#blog h2 {
	text-align: center;
	padding-bottom: 3rem;
}

.news-wrap {
	display: flex;
	flex-wrap: wrap;
	font-size: 0;
}

.news-wrap .news-item {
	position: relative;
	display: block;
	width: calc(33% - 4rem);
	margin: 2rem;
}

.news-wrap .news-image {
	height: 25rem;
}

.news-wrap .news-header {
	display: flex;
	flex-wrap: wrap;
}

.news-wrap .date {
	order: 2;
}

.news-wrap .date p {
	font-size: 1.3rem !important;
	font-weight: 600 !important;
	font-family: 'Open Sans', sans-serif;
	color: #87a18e;
}

.news-wrap h4 {
	width: 100%;
	font-weight: 700;
	letter-spacing: normal;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.news-wrap p {
	text-transform: none;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

p.arrow-link {
	color: #3D9628;
	font-family: 'Open Sans', sans-serif;
	font-weight: 800 !important;
	font-style: normal;
	text-decoration: none;
	font-size: 1.55rem;
	line-height: 1.7;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.news-article .img-text img {
	display: block !important;
	width: 100% !important;
	max-width: 500px !important;
	margin: 0 auto;
	padding-bottom: 0px;
}

.news-article img.miniatyr {
	padding-bottom: 0rem;
	width: 25px;
}

.news-article .img-text {
	padding: 5rem 0rem;
}

.news-article .img-text p {
	text-align: center;
}

.news-article .image-wrapper.align-center {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.LayoutPage .block-object .news-article img.mw-50 {
	max-width: 50% !important; 
}



@media only screen and (max-width:1024px) {
	.news-wrap .news-item {
		width: calc(50% - 4rem);
	}
}

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

	.news-wrap .news-image {
		height: auto;
	}
}



.table2 {
    width: 100%;
    max-width: 110rem;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.cell {
    width: calc(100% / 2);
    padding: 1rem;
}

@media only screen and (max-width: 750px) {
    .table2-heading {
        display: none;
    }

    .cell {
        width: 100%;
    }

    .cell:before {
        content: attr(data-title);
        display: block;
        font-size: 1.3rem;
        color: #666;
        text-transform: uppercase;
        margin-bottom: 13px;
    }
}

/* Tabell */
.section-tabell {
	padding: 5rem 0rem;
}

.section-tabell table tr:first-child {
	background-color: #666669;
	color: #fff;
}

.section-tabell table {
	border-collapse: collapse;
	width: 100%;
}

.section-tabell td,
.section-tabell th {
	text-align: left;
	padding: 15px 10px;
}

.section-tabell tr:nth-child(even) {
	background-color: rgb(61 150 40 / 10%);
}

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

	.section-tabell {
		overflow-x: auto;
	}

	.section-tabell table {
		border: 0;
	}

	.section-tabell table caption {
		font-size: 1.3em;
	}

	.section-tabell table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	.section-tabell table th {
		font-size: 1.4rem;
	}


	.section-tabell table td {
		font-size: 1.4rem
	}

	.section-tabell table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}

	.section-tabell table td:last-child {
		border-bottom: 0;
	}
}

/* Nyhetsbrev
========================================================================== */

#prenumerera {
	background-color: #3D9628;
}

#prenumerera .section-block-wrapper {
	max-width: 80rem;
}

.subscribe h3,
.subscribe p,
.subscribe h2 {
	color: #fff;
}

.subscribe a {
	font-size: 1.4rem;
	max-width: 65rem;
	margin: 0 auto;
	padding-top: 3rem;
	color: #fff;
	text-transform: none;
	font-weight: 400;
	text-decoration: underline;
}

.subscribe h2 {
	padding-bottom: 1rem;
}

.subscribe h3 {
	padding-bottom: 3rem;
	text-transform: none;
	letter-spacing: normal;
}

.subscribe p {
	font-size: 1.4rem;
	max-width: 65rem;
	margin: 0 auto;
	padding-top: 3rem;
	font-weight: 400;
}

.cta-wrapper {
	background-color: #1e2d3b;
	border-radius: 5px;
	box-shadow: 0 1rem 2rem rgba(29, 44, 58, 0.15);
	padding: 5rem 10rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.newsletter-form {
	display: flex;
	width: 80%;
	margin-top: 3rem;
	display: none;
	margin: 0 auto;
}

.newsletter-email {
	-webkit-appearance: none;
	appearance: none;
	padding: 1.2em 2em;
	border: none;
	border-radius: 3rem;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	background-color: #FFF;
	width: 100%;
}

.newsletter-submit {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	border-radius: 3rem;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding: 1.2em 3em;
	background-color: #111;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.3rem;
	letter-spacing: .2em;
	cursor: pointer;
	font-weight: 600;
	transition: all .3s ease;
}

.newsletter-submit:hover {
	background-color: #424242;
}

.subscribe .Contact .ContactForm input.text {
	border-radius: 3rem;
	padding: 2.3rem 2rem;
}

.subscribe .Contact .ContactFormEmail input.text {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.subscribe .Contact .ContactForm input.ContactSubmit {
	color: white;
	-webkit-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	border-radius: 3rem;
	padding: 1.4rem 5rem;
	background-color: #111;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.3rem;
	letter-spacing: .2em;
	cursor: pointer;
	font-weight: 600;
	margin-top: 0;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	height: 5rem !important;
	margin-bottom: 0;
	transition: all .3s ease;
}

.subscribe .Contact .ContactForm input.ContactSubmit:hover {
	background-color: #607466;
}

.subscribe .Contact .ContactForm div.ContactFormMessage p,
.subscribe .Contact .ContactForm div.ContactFormMessage,
.subscribe .Contact .ContactForm div.ContactFormField,
.subscribe .Contact .ContactForm .ContactFormEmail p,
.subscribe .Contact .ContactForm .ContactFormField p,
.subscribe .Contact .ContactForm .ContactFormName p {
	display: none;
}

.subscribe .section-block .Contact .ContactForm input.text {
	font-size: 1.3rem;
	height: 5rem !important;
}

.subscribe .Contact .ContactForm div {
	width: 100%;
	padding-bottom: 0;
}

.subscribe .Contact .ContactForm {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.subscribe .Contact .ContactFormName {
	margin-right: .5rem;
	display: none;
}

.form-global .form-part .ContactSentMessage {
	max-width: 50rem;
	margin: 0 auto;
	margin-top: 2rem;
	padding: 20px 20px 20px 100px;
}

/* .subscribe .form-part .ContactSentMessage,
.form-global .form-part .ContactSentMessage {
	border: 0 !important;
    box-sizing: border-box;
    max-width: 73%;
    border-radius: 5rem;
    background-image: none;
    background-size: 60px 60px;
    background-position: 20px 10px;
    padding: 3rem;
    margin: 0 auto;
    margin-bottom: 4rem;
    background: #111;
}

.subscribe .form-part .ContactSentMessage p,
.form-global .form-part .ContactSentMessage p {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
    font-size: 2.2rem;
    font-weight: 500 !important;
    padding-bottom: 0;
}*/

.subscribe .form-part .ContactSentMessage p:nth-child(2),
.form-global .form-part .ContactSentMessage p:nth-child(2) {
	display: none;
}

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

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

	.subscribe .Contact .ContactForm div {
		width: 100%;
	}

	.subscribe .Contact .ContactForm {
		flex-wrap: wrap;
	}

	.subscribe .Contact .ContactFormEmail input.text {
		border-top-right-radius: 3rem;
		border-bottom-right-radius: 3rem;
	}

	.subscribe .Contact .ContactForm input.ContactSubmit {
		border-top-left-radius: 3rem;
		border-bottom-left-radius: 3rem;
		margin-top: 1rem;
		width: 100% !important;
	}

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

	.subscribe .form-part .ContactSentMessage {
		max-width: 100%;
	}
}

@media only screen and (max-width: 630px) {
	.subscribe h2 {
		font-size: 3.3rem;
	}

	.subscribe h3 {
		font-size: 1.6rem;
	}
}

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

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

/* Generellt för undersidor */

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

.SubPage .header-img {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 30rem;
}

.SubPage .intro-section .section-block {
	padding-top: 15rem;
}

@media only screen and (min-width:1500px) {
	.SubPage .header-img {
		height: 43rem;
	}
}

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

/* PDF-section styling */

.download-section {
	background-color: #fbf8f8;
	padding: 1.5rem 3rem;
}

.download-file {
	color: #469422;
	display: flex;
	align-items: center;
	font-weight: 600;
}

.download-file:hover {
	color: #3D9628;
}

.download-file::before,
.summary-report::before {
	display: inline-block;
	position: relative;
	margin-right: 1.5rem;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
	font-size: 2.1rem;
	content: '\f1c1';
}

.download-file.pdf::before {
	content: '\f1c1';
}

/* Header title */
.header-title .section-block {
	padding-bottom: 0 !important;
	padding-top: 15rem !important;
}

.header-title h1 {
	font-size: 5.5rem;
	font-weight: 600;
	padding-bottom: .5rem;
	max-width: 95rem;
	margin: 0 auto;
	padding-top: 0;
	color: #3D9628;
}

.header-title h3 {
	padding-bottom: 2rem;
	color: #87a18e;
}

.header-title * {
	color: #fff;
}

.header-title .sorted {
	font-weight: 800;
	color: #fff;
	text-transform: none;
	letter-spacing: normal;
	font-size: 2.2rem;
}

@media only screen and (max-width: 700px) {
	.header-title .section-block {
		padding-top: 10rem !important;
	}
}

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

/* Banner with contact form */

.contact-box .section-block .section-block-wrapper {
	max-width: 100rem;
}

.contact-box .section-block {
	background: #3D9628;
}

.contact-banner-item h3 {
	color: #fff;
	font-size: 4rem;
	font-style: normal;
	font-family: 'Open Sans', sans-serif;
	padding-bottom: 2rem;
	letter-spacing: 0;
	text-transform: none;
	font-weight: 600;
}

.contact-banner-item {
	text-align: center;
}

.contact-banner-item .btn {
	margin: 0 auto;
	background: #111;
	border: 2px solid #111;
}

.contact-banner-item .btn:hover {
	background: #424242;
	border: 2px solid #424242;
	color: #fff;
}

.contact-box .section-block {
	padding: 7rem !important;
}

@media only screen and (max-width: 375px) {
	.contact-box .section-block {
		padding: 7rem 3rem !important;
	}
}

/* aligna introt vänster */

.sub-klagomal .intro-section *,
.sub-tillstand .intro-section *,
.sub-aktiehandel .intro-section *,
.sub-radgivning .intro-section *,
.sub-analyskapital .intro-section *,
.sub-om .intro-section *,
.sub-gdpr .intro-section *,
.sub-bolagsstyrning .intro-section *,
.sub-styrelse .intro-section *,
.sub-bolagspresentation .intro-section * {
	text-align: left;
}

/* Styling på sektioner */
.section-info h3 {
	padding-top: 3rem;
}

@media only screen and (max-width: 580px) {
	.contact-banner-item h3 {
		font-size: 3.2rem;
	}
}

/* Undersida - Evenemang
========================================================================== */

.evenemang-wrapper {
	display: flex;
	flex-direction: column;
}

.evenemang-item {
	display: flex;
	margin: 2rem 0;
	justify-content: space-between;
	background-color: #fbf8f8;
}

.evenemang-item .text-wrapper {
	padding: 2rem;
	align-self: flex-start;
	width: 70%;
}

.evenemang-item .label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 12rem;
	border-radius: 0.5rem;
	background-color: #3D9628;
	color: #fff;
	padding: 5px 10px;
	font-size: 1.4rem;
	font-weight: 600;
}

.evenemang-item h2 {
	font-size: 2.8rem;
	padding: 1rem 0 1rem;
}

.evenemang-item p {
	padding: 0;
	font-size: 1.8rem;
	text-transform: none;
}

.evenemang-item .btn {
	margin: 2rem 0 0;
	text-align: center !important;
}

.evenemang-item .btn:hover {
	background: #607466;
	border: 2px solid #607466;
}

.evenemang-item .images-wrapper {
	position: relative;
}

.LayoutPage .evenemang-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.evenemang-item .badge {
	position: absolute;
	right: 2rem;
	width: auto;
	top: 0rem;
	background-color: #3D9628;
	color: #fff;
	padding: 0.7rem 1rem;
	border-radius: 0px 0 0.5rem 0.5rem;
	font-weight: 700;
	font-size: 1.4rem;
	text-transform: uppercase;
}

@media only screen and (max-width:1200px) {
	.evenemang-item h2 {
		font-size: 2.3rem;
	}
}

@media only screen and (max-width:780px) {
	.evenemang-item {
		flex-direction: column-reverse;
	}

	.evenemang-item .text-wrapper {
		width: 100%;
	}

	.evenemang-item .images-wrapper {
		margin-left: 0;
		align-self: auto;
	}
}

/* Undersida - Blogg
========================================================================== */

/* Popup */
.EditMode .popup-section {
	display: none !important;
}

#popup-container {
	height: 0px;
	overflow: hidden;
}

.EditMode #popup-container {
	display: block;
	height: 100%;
}

#startPopup-overlay {
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	transition: all .25s ease;
	display: none;
}

#startPopup {
	opacity: 0;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #FFF;
	max-width: 82rem;
	min-width: 35rem;
	width: 100%;
	max-height: 74rem;
	height: 100%;
	overflow: scroll;
	padding: 0px;
	box-sizing: border-box;
	border-radius: 5px;
	transition: all .25s ease;
	overflow: auto;
	display: none;
}

#startPopup iframe {
	min-height: 200px !important;
}

#startPopup-close {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	cursor: pointer;
}

#startPopup-close i {
	font-size: 32px;
}

.EditMode #read-more-popup {
	display: block;
}

#read-more-popup {
	display: none;
}

.form-section.page-section {
	padding-top: 1rem !important;
}

#startPopup h2 {
	font-size: 25px;
	padding-bottom: 20px;
}

#startPopup h2:last-of-type {
	padding-top: 30px;
	
}

#startPopup ul {
	margin-top: 0;
}

#startPopup * {
	text-align: center;
	margin: 0 auto;
}

#startPopup .ingress {
	font-size: 1.5rem;
	max-width: 60rem;
	font-weight: 400;
}

#startPopup .btn {
	max-width: 100%;
	width: 100%;
}

#startPopup .gdpr-text {
	
margin-top: -1.5rem !important;
}

#startPopup li {
	font-family: 'Open sans', sans-serif;
	font-weight: 300;
	color: #333;
	line-height: 22px;
	padding-bottom: 5px;
}

@media only screen and (max-width:800px) {
	#startPopup {
		max-width: 95vw;
	}
}

@media only screen and (max-width: 580px) {
	#startPopup .ingress {
		font-size: 1.3rem;
	}

	#startPopup .gdpr-text {
		font-size: 1.1rem;
	}

	#startPopup {
		max-height: 130rem;
		overflow: scroll !important;
	}

	#startPopup h2 {
		font-size: 2rem;
	}
}

#news-section h3 {
	text-align: left;
}

#news p {
	font-size: 1.8rem;
	line-height: 1.8;
}

.news-section .section-block {
	padding-top: 5rem !important;
}

/* Blogginlägg */


.sub-blogginlagg .news-article .section-block {
	padding-top: 8rem;
}

.news-month.hide {
	display: none;
}

.news-list {
	padding-right: 6rem;
}

.news-list .news-item {
	display: block;
	background: #f7f7f7;
	padding-bottom: 2rem;
	margin-bottom: 7rem;
}

.news-list img {
	background: #FFF;
	
}

.news-list .news-header {
	display: flex;
}

.news-list .date {
	min-width: 10rem;
	padding: 2rem;
	background: #3D9628;
}

.news-list .date p {
	color: #FFF;
	font-weight: 600;
	font-size: 3rem;
	line-height: normal;
	text-align: center;
	padding: 0;
}

.news-list .date span {
	display: block;
	white-space: nowrap;
	font-size: 1.25rem;
}

.news-list h4 {
	align-self: center;
	padding-left: 3rem;
	padding-bottom: 0;
}

.news-list p {
	padding-left: 13rem;
	padding-right: 2rem;
	text-transform: initial;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Två bilder bredvid varandra */
.multi-img-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.multi-img-wrapper .multi-img {
	width: 46%;
}

@media only screen and (max-width:600px) {
	.multi-img-wrapper .multi-img {
		width: 100%;
	}
}

/* Pagination*/
.simple-pagination ul {
	display: flex;
	justify-content: center;
	margin-top: 3rem !important;
}

.simple-pagination li {
	float: none !important;
}

.light-theme a,
.light-theme span {
	padding: .5rem 1.25rem !important;
	background: #FFF !important;
	border: 1px solid #3D9628 !important;
	border-radius: 2px !important;
	box-shadow: none !important;
}

.light-theme .current {
	background: #3D9628 !important;
}

.simple-pagination li:first-of-type,
.simple-pagination li:last-of-type {
	display: none;
}

/* Senaste inläggen/Arkiv */
.latest-posts-list {
	margin-bottom: 4rem;
}

.archive-list a,
.latest-posts-list a {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.6em;
	color: #6f6f6f;
	text-transform: none;
	margin: 1rem 0;
}

.archive-list a:hover,
.latest-posts-list a:hover {
	text-decoration: underline;
}

.archive-list h4 {
	font-size: 1.8rem;
	margin: .5rem 0;
}

.archive-list h4:last-of-type {
	margin-top: 2rem;
}

.archive-list ul {
	list-style: none;
	padding-left: 2rem;
	margin: 0;
}

.archive-list li em {
	margin-right: 2rem;
	transition: .25s ease;
}

.archive-list li.show em {
	transform: rotate(90deg);
}

.archive-list li {
	font-size: 1.7rem;
	cursor: pointer;
}

.archive-list li .items-list {
	max-height: 0;
	transition: max-height 0.25s ease;
	overflow: hidden;
}

.archive-list li.show .items-list {
	max-height: 500px;
	transition: max-height 1s ease;
}

@media only screen and (max-width:1200px) {
	#news-section .section-block {
		padding: 14rem 2rem;
	}

	.news-list {
		padding-right: 1rem;
	}
}

@media only screen and (max-width:980px) {
	#news-section .col-block {
		width: 100%;
	}

	.news-list {
		padding: 0;
	}

	#news-section .col-1 {
		padding-top: 7rem !important;
		font-size: 0;
	}

	#news-section .col-1 .code-part {
		display: inline-block;
		vertical-align: top;
	}

	#news-section .col-1 .code-part:first-of-type {
		width: 68%;
		margin-right: 2%;
	}

	#news-section .col-1 .code-part:last-of-type {
		width: 30%;
	}
}

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

	.news-list p {
		margin: 2rem;
		padding: 0;
	}

	.news-list .date p {
		margin: 0;
	}

	#news-section .col-1 .code-part {
		width: 100% !important;
		margin: 0;
	}
}

@media only screen and (max-width:450px) {
	.SubPage .news-header {
		flex-wrap: wrap;
		padding: 2rem 2rem 0 2rem;
	}

	.news-list h4 {
		order: 1;
		align-self: auto;
		width: 100%;
		padding: 0;
	}

	.SubPage .news-header .date {
		order: 2;
		width: 100%;
		padding: 0;
		padding-top: 2rem;
		background: transparent;
	}

	.news-list .date p {
		color: #3D9628;
		font-size: initial;
		text-align: left;
	}

	.news-list .date span {
		display: inline-block;
		white-space: initial;
		font-size: initial;
	}
}

/* Undersida för blogginlägg
========================================================================== */

#news-section .section-block {
	padding-bottom: 0;
	padding-top: 18rem;
}

.news-wrapper {
	max-width: 85rem;
	width: 100%;
	margin: 0 auto;
}

.news-article img {
	padding-bottom: 5rem;
	width: 100%;
}

.LayoutPage .block-object .news-article img:not(:first-of-type) {
	display: block !important;
	width: 100% !important;
	max-width: 500px !important;
	margin: 0 auto;
	padding-top: 5rem;
}

.news-article .img-wrapper {
	display: block !important;
	width: 100% !important;
	max-width: 500px !important;
	margin: 0 auto;
	padding-bottom: 5rem;
}

.news-article .img-wrapper img {
	padding-bottom: 1rem !important;
}

.news-article .img-wrapper p {
	font-weight: 400;
	font-style: italic;
}

.news-article p,
.news-article a {
	font-size: 1.6rem;
	letter-spacing: normal;
}

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

.news-article a {
	font-size: 1.6rem;
	letter-spacing: normal;
	color: #3D9628;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-style: normal;
	text-decoration: none;
	text-transform: none;
	font-weight: 600;
}

.news-article a:hover {
	text-decoration: underline;
}

.news-article li {
	font-size: 1.6rem;
}

.news-article .news-author {
	font-style: italic;
}

.news-article h5.date,
.news-article p.date {
	font-size: 1.3rem;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	color: #87a18e;
	padding-bottom: 3rem;
	letter-spacing: 1px;
}

.news-article h5:not(.date) {
	font-weight: initial;
	font-size: 1.6rem;
	color: #6f6f6f;
	padding: 1rem 0;
}

.news-article h4 {
	font-size: 1.8rem;
	padding-bottom: 1rem;
}

.news-article .news-link {
	text-transform: none;
	font-weight: 500;
}

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

	.news {
		flex-wrap: wrap;
		padding-bottom: 0;
	}

	.news-wrapper {
		width: 100%;
		max-width: none;
	}
}

@media only screen and (max-width: 580px) {
	.news-article .section-block {
		padding: 6rem 2rem !important;
	}
}

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

.sub-om .header-img {
	background-image: url(/assets/images/safe-return-omoss-cover.jpg);
	background-position: center top;
}

@media only screen and (max-width: 580px) {
	.sub-om .header-img {
		background-position: center center;
		background-size: contain;
		height: 34rem;
		margin-bottom: -1px;
	}

	.sub-om .intro-section .section-block {
		padding-top: 2rem;
	}
}

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

.sub-bolagsstyrning .header-img {
	background-image: url(/assets/images/safereturnassetmanagementkapital.jpg);
	background-position: center bottom 25%;
}

@media only screen and (max-width: 580px) {
	.sub-bolagsstyrning .header-img {
		background-size: contain;
		background-position: center center;
	}

	.sub-bolagsstyrning .intro-section .section-block {
		padding-top: 2rem;
	}
}

/* Undersida Om oss > Förköpsinformation
========================================================================== */

.sub-forkop .header-img {
	background-image: url(/assets/images/safe-return-forkopsinformation-cover.jpg);
	background-position: center center;
	display: none;
}

.sub-forkop .intro-section .section-block {
	padding-top: 18rem;
}

.sub-forkop .section-block h4 {
	letter-spacing: 0;
}

.sub-forkop .intro-section .split-content:nth-child(1) {
	padding-right: 2rem;
}

.link-list {
	/* 	list-style: none; */
	padding-inline-start: 2rem;
}

.link-list li {
	line-height: 1.2;
	padding-bottom: 0.5rem;
}

.link-list li a,
.linklist li {
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	color: #3D9628;
}

.link-list li a:hover {
	color: #3D9628;
	text-decoration: underline;
}

/* Undersida Om oss > Karriär
========================================================================== */

.sub-karriar .header-img {
	background-image: url(/assets/images/safe-return-karriar-cover.jpg);
	background-position: center center;
}

@media only screen and (min-width: 1500px) {
	.sub-karriar .intro-section {
		height: 70vh;
	}
}

/* Undersida Om oss > Klagomål
========================================================================== */

.sub-klagomal .header-img {
	background-image: url(/assets/images/safe-return-karriar-cover.jpg);
	background-position: center center;
	display: none;
}

.sub-klagomal .intro-section .section-block {
	padding-top: 18rem;
}


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

.sub-medarbetare .team-wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-top: 4em;
	padding-bottom: 7rem;
}

.sub-medarbetare .team-wrap.risk {
	padding-top: 0;
}

.sub-medarbetare .team-wrap p {
	font-size: 1.6rem;
}

.sub-medarbetare .team-box {
	width: 29%;
	margin: 2%;
	text-align: center;
}

.sub-medarbetare .team-text {
	padding: 2rem 4rem 4rem 4rem;
}

.sub-medarbetare h2 {
	padding: 0;
	font-size: 3.5rem;
	vertical-align: middle;
	font-weight: 600;
	text-transform: none;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 1px;
}

.sub-medarbetare .team-wrap h3 {
	text-transform: none;
	font-weight: 700;
	letter-spacing: 1px;
	padding-bottom: .5rem;
}

.sub-medarbetare .team-wrap h4 {
	font-size: 1.6rem;
}

.sub-medarbetare .team-box img {
	width: auto;
	height: auto;
}

@media only screen and (max-width: 768px) {
	.sub-medarbetare .team-box {
		width: 48%;
	}
}

@media only screen and (max-width: 630px) {
	.sub-medarbetare .team-box {
		width: 100%;
	}
}

/* Undersida Om oss > Tillstånd
========================================================================== */

.sub-tillstand .intro-section .section-block {
	padding-top: 20rem;
}

.sub-tillstand .intro-section a {
	color: #3D9628;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-style: normal;
	text-decoration: none;
	font-size: 1.9rem;
	line-height: 1.8;
	letter-spacing: normal;
	text-transform: none;
}

.logo-wrapper {
	margin: 1.5rem auto;
	text-align: center !important;
	margin-top: 2rem !important;
}

/* Undersida Om oss > Personuppgifter GDPR
========================================================================== */

.sub-gdpr .intro-section .section-block {
	padding-top: 20rem;
}

.sub-gdpr .intro-section .section-block-wrapper {
	max-width: 110rem;
}

.sub-gdpr .intro-section .normaltext-type {
	max-width: none;
}

.sub-gdpr .gdpr h4 {
	font-size: 1.9rem;
	letter-spacing: normal;
	padding-top: 2rem;
}

.sub-gdpr .gdpr h3 {
	color: #343E3D;
	text-transform: none;
	letter-spacing: normal;
	font-size: 1.9rem;
	padding-bottom: 0;
}

.sub-gdpr .gdpr a {
	line-height: 6;
}

.sub-gdpr .gdpr .gdpr-date {
	color: #343E3D;
	text-transform: none;
	letter-spacing: normal;
	font-size: 1.6rem;
	font-weight: 400;
	padding-bottom: 2rem;
}

/* Undersida Om oss > Risk & kapitaltäckning
========================================================================== */

.sub-riskkapital .intro-section .section-block {
	padding-top: 20rem;
}

.sub-riskkapital .intro-section .section-block-wrapper {
	max-width: 90rem;
}

.sub-riskkapital .intro-section h2 {
	padding-bottom: 5rem;
}

.sub-riskkapital .intro-section .year-risk {
	padding-bottom: 4rem;
}

.sub-riskkapital .intro-section .year-risk h3 {
	text-align: center;
}

.sub-riskkapital .intro-section .download-section p {
	font-size: 1.5rem;
	margin-left: 3rem;
}


/* Undersida: Om oss > Styrelse & VD
========================================================================== */
.section-coworkers .section-block .section-block-wrapper {
	max-width: 140rem;
}

.section-coworkers .section-block {
	padding-bottom: 2rem !important;
}

.coworker-card-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.coworker-card {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 0 4rem 0;
	position: relative;
	max-width: 100%;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

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

.coworker-text {
	box-sizing: border-box;
	align-self: center;
	padding: 3rem 3rem;
	text-align: left;
	background: transparent;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.coworker-text h3 {
	text-transform: none;
	font-weight: 700;
	letter-spacing: 1px;
	padding-bottom: .5rem;
	line-height: 1.2;
	font-size: 2rem;
}

.coworker-text h4 {
	font-size: 1.6rem;
}

.coworker-info-item {
	margin: 3rem 0;
}

.coworker-info-item p {
	font-size: 1.6rem;
}

.coworker-image {
	width: 35%;
}

.coworker-text {
	width: 65%;
	padding-left: 5rem;
}

@media only screen and (max-width:950px) {
	.coworker-text {
		width: 100%;
		padding-left: 0;
	}

	.coworker-image {
		width: 100%;
		max-width: 51rem;
	}

}

/* Undersida: Om oss > Vi i media
========================================================================== */
.section-media .section-block .section-block-wrapper {
	max-width: none;
}

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

.media-item {
	width: 31%;
	margin: 1%;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-moz-transition: 0.2s ease-in-out;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.media-item:hover {
	-moz-transform: scale(1.02);
	-webkit-transform: scale(1.02);
	transform: scale(1.02);
}

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

@media only screen and (max-width:768px) {
	.media-item {
		width: 100%;
		margin: 0;
		margin-bottom: 4rem;
	}
}

/* Undersida Aktiehandel
========================================================================== */

.sub-aktiehandel .header-img {
	background-image: url(/assets/images/safe-return-radgivning-cover.jpg);
	background-position: center top 50%;
	background-repeat: no-repeat;
	background-size: cover;
}

/* .sub-aktiehandel ul {
	list-style-type: inherit;
} */

@media only screen and (max-width: 580px) {
	.sub-aktiehandel .intro-section li {
		font-size: 1.7rem;
	}
}

/* Undersida Rådgivning
========================================================================== */

.sub-radgivning .header-img {
	background-image: url(/assets/images/safe-return-aktiehandel-cover.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Undersida analyskapital
========================================================================== */

.sub-analyskapital .header-img {
	background-image: url(/assets/images/safe-return-analyskapitalforvaltning-cover.jpg);
	background-position: center bottom 20%;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Undersida "Jag vill veta mer"
========================================================================== */

.know-more {
	font-size: 2rem !important;
	padding-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

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

.split-map {
	padding: 0 !important;
}

.section-offices .split-wrapper:first-child {
	margin-bottom: 4rem;
}

.section-offices .split-content {
	background: #F7F7F6;
	padding: 6rem 7rem;
}

.section-offices .split-content h3 {
	font-size: 1.5rem;
}

#karta {
	font-size: 0;
}

.section-offices iframe {
	height: 45rem;
}

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

.contact-detail {
	display: flex;
	margin: 0 0;
	align-items: center;
	color: #6f6f6f;
	text-transform: none;
	font-weight: 400;
}

.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: #3D9628;
	width: 2em;
	text-align: center;
}

.contact-detail:hover::before {
	text-decoration: none;
}

.contact-detail.address::before {
	content: '\f3c5';
}

.contact-detail.mobile::before {
	content: '\f3cd';
}

.contact-detail.telephone::before {
	content: '\f879';
}

.contact-detail.mail::before {
	content: '\f0e0';
}


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

@media only screen and (max-width:900px) {
	.section-offices .split-content {
		width: 100%;
		margin: 2rem 0;
	}
}

@media only screen and (max-width:696px) {
	.section-offices .split-content {
		padding: 2rem 0rem;
		background: transparent;
	}
}

/* Undersida: Bolagspresentation
========================================================================== */
.sub-bolagspresentation .video-container {
	max-width: 95rem;
	margin: 3rem auto 0 auto;
}

.sub-bolagspresentation video {
	max-width: 100%;
}

/* Undersida: Anmälan
========================================================================== */

.sub-anmalan .header-title .section-block {
	padding-bottom: 12rem !important;
}

#anmalan a {
	font-size: 1.4rem;
	max-width: 65rem;
	margin: 0 auto;
	padding-top: 3rem;
	text-transform: none;
	font-weight: 400;
	text-decoration: underline;
}

#anmalan .ContactForm {
	max-width: 950px;
	margin: 4rem auto 0 auto;
}

#anmalan .ContactForm div {
	display: inline-block;
	width: 47%;
	margin: 1%;
}

.form-global .form-part .ContactSentMessage {
	margin-top: 3rem;
}

#anmalan h1 {
	max-width: 75rem;
	margin: 0 auto;
	padding-bottom: 4rem;
}

#anmalan .ContactForm p,
#anmalan .ContactForm div.ContactFormMessage {
	display: none;
}

#anmalan .ContactForm input {
	padding: 2.5rem 1.5rem !important;
	border-radius: 10px !important;
}

#anmalan .ContactForm input.ContactSubmit {
	width: 47% !important;
	padding: 1.7rem 0 !important;
	border: 2px solid #3D9628;
	background: #3D9628;
	color: #FFF;
	transition: .25s ease;
	margin: 1%;
	border-radius: 4rem !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1rem;
}

#anmalan .ContactForm input.ContactSubmit:hover {
	background: #607466;
	color: #fff;
	border: 2px solid #607466;
}

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

	#anmalan .ContactForm div,
	#anmalan .ContactForm input.ContactSubmit {
		width: 100% !important;
	}
}


/* Undersida: Inbjudan till bolagspresentation
========================================================================== */
#form-ce74a91a-cb81-41d6-b524-ca78a0d4a0db input.field-2 {
	display: none;
}

#form-ce74a91a-cb81-41d6-b524-ca78a0d4a0db select {
	width: 100%;
	height: 5rem;
	padding-left: 1rem;
	border-radius: 10px !important;
	border: solid 1px #dddddd !important;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: rgb(118, 118, 118);
}

#form-ce74a91a-cb81-41d6-b524-ca78a0d4a0db .ContactSubmit {
	display: block;
	margin: 14px auto !important;
}
/* Undersida: Presentation
========================================================================== */

/* Video ratio
========================================================================== */
.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

/* Sektionens namn
========================================================================== */
.video-wrapper {
	display: block;
    position: relative;
}


.video-wrapper img {
	padding: 0;
}

/* Play */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: .4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.video-wrapper:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-overlay em {
    color: #3c9628;
    font-size: 5rem;
    transition: .4s ease;
}

.play-overlay p {
    display: inline-block;
    color: white;
	font-size: 2rem;
    transition: .4s ease;
}
/* Video */
.fancybox-video {
    display: none;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
	background-color: #fff;
	padding: 0;
	box-sizing: border-box;
}

.footer .container {
	max-width: none;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0;
}

.footer .footer-top {
	max-width: 150rem;
	min-height: 20rem;
	padding: 8rem 5rem 5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}

.footer-col-top {
	width: 28%;
	box-sizing: border-box;
}

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

.footer-col-top:first-child p {
	font-size: 1.3rem;
	padding-right: 9rem;
	padding-top: 2rem;
	color: #6f6f6f;
}

.footer img {
	width: auto;
	height: 3.5rem;
	display: inline-block;
	padding-right: 6rem;
}

/* .footer-bottom img {
	padding-left: 6rem;
	padding-right: 0;
} */

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

.footer .container .footer-wrapper {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.footer .footer-bottom {
	border-top: 1px solid #eee;
	text-align: center;
	margin: 0 auto;
	width: 100%;
	padding: 1.5rem;
	padding-bottom: 3rem;
	margin: 0 auto;
	box-sizing: border-box;
	background: #fff;
	max-width: 130rem;
	min-height: 6rem;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap-reverse;
	justify-content: space-between;
	flex-direction: row;
	line-height: 1rem;
}

.footer-col-bottom {
	width: 100%;
	box-sizing: border-box;
}

/* .footer-col-bottom img {
	height: 8.5rem;
	float: right;
} */

.footer-col-bottom:first-child p {
	display: inline-block;
	color: #6f6f6f;
	font-size: 1.3rem;
	text-align: left !important;
}

.footer .container .fab:hover {
	color: #3D9628;
}

.footer .container .fab {
	margin: 0 auto;
	font-size: 0;
	padding: 0;
	color: #3D9628;
}

.footer .container .fab::before {
	font-size: 1.6rem;
}

.footer p,
.footer a,
.footer li {
	font-size: 1.4rem;
	padding: 0;
	font-weight: 400;
	line-height: 1.6em;
	padding-bottom: 4px;
	color: #6f6f6f;
	text-decoration: none !important;
}

.footer h4 {
	font-size: 1.7rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-bottom: 1.2rem;
	color: #3D9628;
	padding-top: 0;
	letter-spacing: 1px;
}

.footer * {
	text-align: left !important;
}

.footer a {
	display: inline-block;
}

.footer a:hover {
	color: #3D9628 !important;
	text-decoration: none !important;
}

.footer .social-media {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: left;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer .social-media li {
	display: inline-block;
	margin: 0 1rem 0 0;
}

.footer .social-media a {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 40px;
	height: 40px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-style: solid;
	border-width: 1px;
	border-color: #dcdcdc;
	-webkit-transition: background-color 600ms ease, border-color 600ms cubic-bezier(.165, .84, .44, 1);
	transition: background-color 600ms ease, border-color 600ms cubic-bezier(.165, .84, .44, 1);
	text-align: center;
	padding: 0;
	border-radius: 50%;
	font-size: 0;
}

.footer .social-media a:hover {
	border-color: #3D9628;
}

/* Link Menu */
.link-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
	margin: auto;
    padding: 0;
}

.link-menu li {
    margin: 1rem 1rem 1rem 0;
}

.link-menu a {
	padding: 0 1rem 0 1rem;
}

.footer-col-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
}

img.gas-logo {
	height: 8rem;
}

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

.webbess-stamp img {
	/* width: 3rem !important; */
	margin-left: 1rem;
}

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

	.footer .footer-top {
		padding: 8rem 3rem 5rem;
	}

	.footer .footer-bottom {
		padding: 2rem 3rem 3rem;
	}

	.footer-col-top {
		width: 25%;
	}
}

@media only screen and (max-width: 980px) {
	.footer .footer-bottom {
		min-height: auto;
	}

	.footer-col-top,
	.footer-col-top:last-child {
		width: 100%;
		margin-bottom: 3rem;
	}

	.footer-col-bottom:first-child p {
		padding-top: 3rem;
	}

	.link-menu {
		margin: 0 0 3rem;
	}

	.link-menu a {
		display: block;
		padding: 0.5rem 0;
	}

	.footer-col-bottom img {
		float: none;
	}

	.footer-col-bottom {
		width: 100%;
	}
}

@media only screen and (max-width: 580px) {
	.footer .footer-bottom {
		padding: 2rem 3rem 10rem;
	}

	.footer-col-bottom {
		flex-direction: column;
	}
}