/* Häggvikstrafikskola AB */

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700&display=swap');

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

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

/* 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%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

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

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

html {
	font-size: 62.5%;
}

body {
	background-position: center center;
}

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

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

.LayoutPage .section-wrapper {
	/* 	background-color: transparent; */
}


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

.btn {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 200px;
	max-width: 1000px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 1.5rem 2.5rem;
	background-color: #d63340;
	border: 2px solid #d63340;
	border-radius: 0.5rem;
	color: #fff;
	text-align: center;
	text-transform: none;
	font-weight: 500;
	/*  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.15); */
	-webkit-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	display: block;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-shadow: none !important;
	font-size: 1.5rem;
	cursor: pointer;
	font-family: 'Source Sans Pro', sans-serif;
}

.btn:hover {
	background-color: transparent;
	color: #d63340;
	border: 2px solid #d63340;
	text-decoration: none;
}

/* Använd "btn btn-center" för att centrera knappen */
.btn.center {
	margin: 0 auto !important;
	text-align: center !important;
}

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

.width-1400 .section-block .section-block-wrapper {
	max-width: 1400px;
}

.SubPage .section-block li:before {
	content: "\f105";
	color: #312217;
	font-weight: bold;
	display: inline-block;
	width: 1.5em;
	margin-left: -1.5em;
	font-family: 'Roboto', sans-serif;
}

.SubPage .section-block ul {
	list-style: none;
}

.SubPage .section-block li {
	padding-bottom: 10px;
}

.display-none {
	display: none;
}

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

ul {
	margin: 0;
	padding: 0;
}

/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
	display: none;
}

.popup-wrapper {
	z-index: 10;
	position: fixed;
	bottom: 3rem;
	right: 3rem;
}

/* Knappar */
.popup-button {
	position: relative;
	width: 5rem;
	height: 5rem;
	background:  #d63340;
	border-radius: 50%;
	box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
	cursor: pointer;
}

.popup-button i {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 2.8rem;
	color: #fff;
	transform: translate(-50%, -50%);
	transition: .3s ease;
}

.popup-wrapper h3 {
	font-size: 3rem;
	margin-bottom: 2rem;
	border: none;
	padding: 0;
}

.popup-wrapper .popup-button .icon-open,
.popup-wrapper.opened .popup-button .icon-close {
	transform: translate(-50%, -50%) scale(1);
}

.popup-wrapper.opened .popup-button .icon-open,
.popup-wrapper .popup-button .icon-close {
	transform: translate(-50%, -50%) scale(0);
}

/* Innehåll */
.popup-window {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	right: 0;
	bottom: 6rem;
	max-width: 45rem;
	max-height: calc(100vh - 12rem);
	padding: 4rem;
	margin: 0 2rem;
	background: #fff;
	border-radius: 2rem;
	box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
	overflow: auto;
	transition: opacity .3s ease, bottom .3s ease;
}

.popup-wrapper.opened .popup-window {
	opacity: 1;
	visibility: visible;
	display: block;
	bottom: 10rem;
}

.icon-close-popup {
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-size: 2.5rem;
	cursor: pointer;
}

@media only screen and (max-width: 450px) {
	.popup-window {
		padding: 2rem 3rem 2rem 2rem;
	}

	.icon-close-popup {
		top: 1rem;
	}
}

/* ==========================================================================
Text och typsnitt
========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6,
p,
btn,
a,
li,
nav.mainmenu a {
	font-family: 'Roboto', sans-serif;
}

p,
a,
li {
	line-height: 175%;
	font-size: 1.6rem;
	color: #222;
	font-weight: 300;
	text-decoration: none;
}

a {
	color: #d63340;
}

a.link-styled {
	letter-spacing: 2px;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 1.6rem;
}

a:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	letter-spacing: 0px;
	color: #222;
	text-transform: unset;
	-webkit-font-smoothing: antialiased;
	font-family: 'Source Sans Pro', sans-serif;
}

h1,
h2 {
	font-size: 1.6rem;
	padding-bottom: 1.5rem;
	line-height: 100%;
	letter-spacing: 0.1rem;
	font-weight: 400;
	text-transform: uppercase;
	color: #888;
	opacity: 1;

	/*
	word-wrap:break-word;
	overflow-wrap:break-word;
	hyphens:auto;
	-webkit-hyphens:auto;
	-moz-hyphens:auto;
*/
}

/*
h3:after{
	content:"";
	display:block;
	position: absolute;
	margin-left:-2rem;
	width:0.4rem;
	height:3.5rem;
	background:#d63340;
	margin-top:-3.9rem;
}
*/

.EditMode h3:after {
	display: none !important;
}

h3 {
	font-size: 4.5rem;
	margin-bottom: 3.5rem;
	line-height: 1.2;
	padding: 0;
	vertical-align: middle;
	padding-left: 2.5rem;
	padding-bottom: 0.2rem;
	font-weight: 700;
	/* 	text-transform: uppercase; */
	word-spacing: 0.1rem;
	letter-spacing: 0.01rem;
	border-left: 5px solid #d63340;
	font-family: 'Source Sans Pro', sans-serif;
}

h3 strong {
	color: #d63340;
	font-weight: 700;
}

h4 {
	font-size: 2.5rem;
	padding: 0;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	font-weight: 700;
	text-transform: uppercase;
	color: #2e59a0;
}

h4:not(:first-of-type) {
	margin-top: 3rem;
}

h5 {
	font-size: 1.7rem;
	letter-spacing: 3px;
	font-weight: 400;
	text-transform: uppercase;
	color: #616161;
	padding-bottom: 30px;
}

.f-4 {
	font-size: 4rem !important;
}

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

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

.heading-type h5 {
	text-align: center;
}

.bolder {
	font-weight: 700;
}

@media screen and (max-width: 580px) {
	.f-4 {
		font-size: 2.5rem !important;
	}
}

/* ==========================================================================
Färger 
========================================================================== */
.bg-blue.section-wrapper {
	background: #2e59a0;
}

.text-white {
	color: white !important;
}

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

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

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

.split-image {
	width: 50%;
}

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

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

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

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

	.split-content,
	.split-wrapper .w-30,
	.split-wrapper .w-70 {
		width: 100%;
	}

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

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

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

/* Cards
========================================================================== */

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


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

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

/* Generellt */
a.card-item {
	transition: .3s ease;
}

/* Card 2-5 */
.card-2-5 .card-item {
	position: relative;
	display: flex;
	align-items: center;
	padding: 1rem 0;
}

.card-2-5 .card-header {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 7rem;
	height: 7rem;
	border-radius: 50%;
	background-color: white;
	border: 2px solid #2e59a0;
}

.card-2-5 .card-body {
	flex: 1 1 0px;
	padding: 2rem;
}

@media only screen and (max-width: 650px) {
	.card-2-5 .card-header {
		width: 4rem;
		height: 4rem;
	}

	.card-2-5 .card-header i {
		font-size: 1.8rem;
	}

	.card-2-5 .card-body {
		padding: 0.2rem;
	}
}


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

/* Paddings */
.pb-0 .section-block,
.pb-0:not(.section-wrapper) {
	padding-bottom: 0;
}

/* Grafiska element
========================================================================== */
/* Linje genom element */
.line-through-primary {
	position: relative;
}

.line-through-primary::before {
	position: absolute;
	content: '';
	display: block;
	height: calc(100% - 4rem);
	width: 2px;
	top: 5rem;
	left: 3.5rem;
	background-color: #2e59a0;
}

@media only screen and (max-width: 650px) {
	.line-through-primary::before {
		left: 2rem;
	}
}

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

/* ==========================================================================
  Undersida: Sa fungerar det
  ========================================================================== */
.section-steps .split-content {
	padding-top: 0;
	padding-bottom: 0;
}

.section-steps .split-image {
	position: sticky;
	top: calc(var(--menu-height-scrolled) * 2);
	align-self: flex-start;
}



/* ==========================================================================
Header / Navigation
========================================================================== */
/*
header {
	background-color: #fff;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.05);
}
*/

header {
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

header .container {
	max-width: none;
}

header.scrolled {
	background: #fff;
	-webkit-box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.3);
	box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.3);
}

.logo-image-positive {
	opacity: 0;
	-webkit-transition: ease .3s;
	-o-transition: ease .3s;
	transition: ease .3s;
}

.logo-image-negative {
	opacity: 1;
	-webkit-transition: ease .3s;
	-o-transition: ease .3s;
	transition: ease .3s;
}

header.scrolled .logo-image-positive {
	opacity: 1;
}

header.scrolled .logo-image-negative {
	opacity: 0;
}


header .header-logo {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/*
    height: 83px;
    padding: 18px 0;
*/
	height: 72px;
	width: 300px;
	-webkit-transition: all ease-out .3s;
	-o-transition: all ease-out .3s;
	transition: all ease-out .3s;
	/*     opacity:0; */
	display: none;
}

.header-logo h2 {
	font-size: 4.5rem;
	padding: 0.9rem;
	padding-left: 1rem;
	color: #fff;
	font-weight: 400;
	-webkit-transition: ease .3s;
	-o-transition: ease .3s;
	transition: ease .3s;
	opacity: 1;
	font-family: 'Source Sans Pro', sans-serif;
}

.header-logo h2 strong {
	color: #d63340;
}

header.scrolled .header-logo h2 {
	/* 	opacity:1; */
}

header.scrolled .header-logo {
	/*
    height: 72px;
    padding: 0px 0;
*/
	opacity: 1;
}

.header-logo-image {
	height: 100%;
	position: relative;
}

header .header-logo img {
	max-height: 100%;
	max-width: 100%;
	position: absolute;
}

.header-logo a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

@media only screen and (max-width: 1024px) {
	header.scrolled .header-logo {
		padding-left: 10px;
	}
}


nav.mainmenu {
	text-align: center;
}

nav.mainmenu a {
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 72px;
	color: #fff;
	text-transform: none;
	padding: 0 1rem;
	letter-spacing: 0.1rem;
	word-spacing: 0.1rem;
	text-transform: uppercase;
	-webkit-transition: all ease-out 0.3s;
	-o-transition: all ease-out 0.3s;
	transition: all ease-out 0.3s;
	font-family: 'Source Sans Pro', sans-serif;
}

header.scrolled nav.mainmenu li a {
	color: #222;
	line-height: 72px;
}

nav.mainmenu li.active {}

nav.mainmenu li {
	-webkit-transition: ease-out .1s;
	-o-transition: ease-out .1s;
	transition: ease-out .1s;
}



nav.mainmenu li:last-of-type {
	margin-right: 10px;
}

header.scrolled nav.mainmenu li:last-of-type {
	/* 	margin-right:0; */
}

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


/*
nav.mainmenu li:first-of-type {
	display: none;
}
*/

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

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

@media only screen and (min-width:981px) {

	nav.mainmenu li.active>a,
	nav.mainmenu li:hover>a:not(.headersocial) {
		-webkit-transform: translateY(-0.5rem);
		-ms-transform: translateY(-0.5rem);
		transform: translateY(-0.5rem);
	}

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

	nav.mainmenu a {
		line-height: 102px;
	}
}

nav.mainmenu ul>li.expandable-li:hover {
	color: #222;
}


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

nav.mainmenu li.active a:before,
nav.mainmenu li:hover a:not(.headersocial):before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

nav.mainmenu a:before {
	background-color: #d63340;
	visibility: hidden;
	position: absolute;
	content: "";
	height: 0.2rem;
	/*     border-radius: 100px; */
	bottom: 0.8rem;
	width: 100%;
	left: 0;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

header.scrolled nav.mainmenu a:before {}

header .mobile-menu span {
	height: 4px;
	width: 100%;
	border-radius: 2px;
	margin-bottom: 5px;
	display: none;
}

header .close-menu {
	display: none;
}

header .close-menu:before,
header .close-menu:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 3px;
	background-color: #222;
}

header .close-menu:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

header .close-menu:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.headersocial {
	font-size: 3rem !important;
	line-height: 6.4rem !important;
}

header nav.mainmenu li a.headersocial:hover {
	color: #d63340 !important;
}

.headersocial .fab {
	-webkit-transform: translateY(4px);
	-ms-transform: translateY(4px);
	transform: translateY(4px);
}

/* -- Undermeny -- */

nav.mainmenu li>ul {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
	-webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1), inset 0 0.2rem 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1), inset 0 0.2rem 0 rgba(0, 0, 0, 0.05);
}

header.scrolled nav.mainmenu li>ul {
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}

nav.mainmenu li:hover>ul {
	padding: 0;
	margin-top: -1px;
	background-color: #fff;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 0 0 5px 5px;
	overflow: hidden;
}

nav.mainmenu li>ul>li {
	padding-left: 0 !important;
	border-radius: 0 !important;
	width: 100%;
	background: transparent;
}

nav.mainmenu ul>li>ul>li>a {
	color: #222 !important;
	line-height: 72px;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

nav.mainmenu ul>li>ul>li:hover,
nav.mainmenu ul>li>ul>li.active {
	background: #d63340;
}

nav.mainmenu ul>li>ul>li:hover>a,
nav.mainmenu ul>li>ul>li.active>a {
	color: #fff !important;
	-webkit-transform: translate(0) !important;
	-ms-transform: translate(0) !important;
	transform: translate(0) !important;
	width: 100%
}

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

.block {
	display: block;
}

@media only screen and (max-width:980px) {
	header.scrolled {
		background: transparent;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

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

	.dropdown-arrow {
		width: 100%;
		height: 72px;
		z-index: 100;
		top: 0;
		left: 0;
	}

	nav.mainmenu li.level-open,
	nav.mainmenu li>ul>li {
		background: #f7f7f7;
	}

	nav.mainmenu ul>li.expandable-li:hover>a {
		padding-bottom: 0;
	}

	header.scrolled .mobile-menu span {
		background: #222;
	}

	header .mobile-menu span {
		background: #222;
	}

	.mobile-menu {
		-webkit-transform: translateX(-1rem);
		-ms-transform: translateX(-1rem);
		transform: translateX(-1rem);
		padding: 1.2rem;
		width: 5rem;
		padding-bottom: 0.75rem;
		border-radius: 1rem;
		background: #fff;
		-webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
		box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
	}
}

/* ==========================================================================
Top-section
========================================================================== */
.top-section {
	height: 100%;
	background: rgba(0, 52, 107, 0.67);
	/* 	box-shadow:inset 0 0px 12rem rgba(0,0,0,0.5); */
	overflow: hidden;
	-webkit-box-shadow: 0 0 12rem rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 12rem rgba(0, 0, 0, 0.1);
}

.svgscroll {
	margin: auto;
	height: 2.75rem;
	width: 2.75rem;
	left: calc(50% - 1.5rem);
	position: absolute;
	top: 85vh;
	display: none;
}

.page-title-wrap {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: transparent;
	top: 52%;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 2rem;
	/*
	margin-left:5rem;
	border-left:2rem solid #d63340;
*/
	text-align: center;
}

/*
.page-title-wrap:after {
	box-sizing: border-box;
	content:"";
	display:block;
	position: absolute;
	width:55rem;
	height:55rem;
	background:#d63340;
	left:calc(50% - 27.5rem);
	top:-13.5rem;
	border-radius: 55rem;
	z-index:-1;
}
*/

.page-title-wrap img {
	margin-bottom: 4rem;
	width: 30rem;
	padding-left: 2rem;
}

.page-title-wrap h1,
.page-title-wrap h2,
.page-title-wrap h3 {
	max-width: 120rem;
	color: #fff;
	margin: auto;
	font-family: 'Source Sans Pro', sans-serif;
}

.page-title-wrap h1 {
	font-size: 2rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.25rem;
	word-spacing: 0.25rem;
	text-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 40rem;
	margin-top: 2.5rem;
}

.page-title-wrap h2 {
	width: 100%;
	font-size: 9rem;
	font-weight: 400;
	text-transform: unset;
	text-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
	line-height: normal;
	letter-spacing: 0;
	padding-bottom: 0;
	line-height: 1.2;
	color: #fff;
}

.page-title-wrap h2 strong {
	color: #d63340;

}

.page-title-wrap h2 span:before {
	display: block;
	content: "";
	height: 0.2rem;
	width: 78%;
	opacity: 0.5;
	margin: auto;
	margin-top: 1rem;
	background: white;
}

.page-title-wrap a {
	padding: 2rem 4rem;
	width: 25rem;
	display: block;
	font-weight: 700;
	background: white;
	text-align: left !important;
	position: relative;
	-webkit-transition: ease .3s;
	-o-transition: ease .3s;
	transition: ease .3s;
	border-radius: 100rem;
	margin: auto;
	margin-top: 5rem;
	border: 2px solid #fff;
	color: #2e59a0;
}

.page-title-wrap a em {
	position: absolute;
	right: 2rem;
	top: 2.67rem;
}

@media (hover:hover) {
	.page-title-wrap a:hover {
		width: 30rem;
		background: rgba(0, 0, 0, 0);
		color: #fff;
		text-decoration: none;
	}

	.page-title-wrap a:hover em {
		-webkit-animation-name: arrowMove;
		animation-name: arrowMove;
		-webkit-animation-iteration-count: infinite;
		animation-iteration-count: infinite;
		-webkit-animation-duration: 1s;
		animation-duration: 1s;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
}



@-webkit-keyframes arrowMove {
	0% {
		-webkit-transform: translateX(-0rem);
		transform: translateX(-0rem);
	}

	50% {
		-webkit-transform: translateX(-1.5rem);
		transform: translateX(-1.5rem);
	}

	100% {
		-webkit-transform: translateX(-0rem);
		transform: translateX(-0rem);
	}
}



@keyframes arrowMove {
	0% {
		-webkit-transform: translateX(-0rem);
		transform: translateX(-0rem);
	}

	50% {
		-webkit-transform: translateX(-1.5rem);
		transform: translateX(-1.5rem);
	}

	100% {
		-webkit-transform: translateX(-0rem);
		transform: translateX(-0rem);
	}
}


.page-title-wrap h3 {
	font-size: 2rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.25rem;
	word-spacing: 0.25rem;
	text-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 2.5rem;
	padding: 0;
	border: none;
}

.page-title-wrap p {
	max-width: 650px;
	margin: 0 auto;
	font-size: 2.0rem;
	line-height: 35px;
}

@media only screen and (max-width:550px) {
	.page-title-wrap h2 {
		font-size: 6rem;
	}

	.page-title-wrap h1 {
		min-width: 0;
	}
}


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

#top {
	position: absolute;
	top: 0;
	height: 100vh;
	width: 0;
}

#about-us,
#contact-us {
	overflow: hidden;
}

#about-us {
	padding: 8rem 0;
	padding-top: 40rem;
}

#about-us .btnwrap,
#contact-us .btnwrap {
	margin-top: 4rem;
}

#about-us h3,
#contact-us h3 {
	padding: 0;
	border: none;
}

#contact-us {
	padding: 8rem 0;
}

.contact-content .col-0 {
	-webkit-animation-name: form-in;
	animation-name: form-in;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 1;
}


@-webkit-keyframes form-in {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-10rem);
		transform: translateX(-10rem)
	}

	16.6667% {
		opacity: 0;
		-webkit-transform: translateX(-10rem);
		transform: translateX(-10rem)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0rem);
		transform: translateX(0rem)
	}
}


@keyframes form-in {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-10rem);
		transform: translateX(-10rem)
	}

	16.6667% {
		opacity: 0;
		-webkit-transform: translateX(-10rem);
		transform: translateX(-10rem)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0rem);
		transform: translateX(0rem)
	}
}

#intro,
#partners {
	-webkit-box-shadow: inset 0 0 4rem rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 0 4rem rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width:1200px) {
	#about-us {
		padding-top: 12rem;
	}
}

@media only screen and (max-width:980px) {
	#contact-us {
		padding-top: 0;
	}
}

@media only screen and (max-width:550px) {
	#about-us {
		padding-top: 3rem;
	}


}


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

.instagram {
	min-height: 38vw;
}

.fullblock {
	min-height: 50rem;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 12rem 9rem;
	position: relative;
	background-position: center center;
	background-size: cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.fullblock .shader {
	background: rgba(0, 52, 107, 0.4);
	background: -webkit-gradient(linear, left top, right top, from(rgba(0, 52, 107, 1)), to(rgba(0, 52, 107, 0.5)));
	background: -o-linear-gradient(left, rgba(0, 52, 107, 1) 0%, rgba(0, 52, 107, 0.5) 100%);
	background: linear-gradient(90deg, rgba(0, 52, 107, 1) 0%, rgba(0, 52, 107, 0.5) 100%);
	position: absolute !important;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.fullblock h2,
.fullblock h3,
.fullblock p,
.fullblock .btn {
	position: relative;
	z-index: 1;
}

.fullblock h2 {
	color: #fff;
	margin-bottom: 1.6rem;
	width: 100%;
	max-width: 60rem;
}

.fullblock h3 {
	color: #fff;
	line-height: 1.2;
	max-width: 60rem;

}

.fullblock p {
	color: #fff;
	line-height: 1.6;
	font-weight: 300;
	max-width: 60rem;
}

.fullblock .btnwrap {
	margin-top: 4rem;
	width: 100%;
	max-width: 60rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.fullblock .btn:not(:last-of-type) {
	margin-right: 2rem;
}

.fullblock .btn:hover {
	color: #fff;
}


/* Block-List CSS */

.halfblock-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
}

.row-reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.halfblock {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	min-height: 70rem;
	margin: 0;
	padding: 9rem;
	position: relative;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.halfblock:nth-child(odd) {
	width: 60%;
}

.halfblock:nth-child(even) {
	width: 40%;
	border-radius: 1.5rem;
}

.halfblock {
	/*
	flex-direction: row;
	justify-content: flex-end;
*/
	background-size: cover;
	background-position: center center;
}

#about-us .halfblock:nth-child(even) {
	background-image: url('/assets/images/pages/haggvikstrafikskola-license.jpg');
	background-position: center center;
}

#contact-us .halfblock:nth-child(even) {
	background-image: url('/assets/images/haggvikstrafikskola-kontakt.jpg');
	background-position: center center;
}

#license {
	background-image: url('/assets/images/pages/haggvikstrafikskola-license2.jpg');
	background-position: center center;
}

#risk {
	background-image: url('/assets/images/pages/haggvikstrafikskola-risk.jpg');
	background-position: center 90%;
}

#tutor {
	background-image: url('/assets/images/pages/haggvikstrafikskola-tutor.jpg');
	background-position: center 60%;
}

#contact {
	background-image: url('/assets/images/pages/haggvikstrafikskola-contact.jpg');
	background-position: left top;
}

#about {
	background-image: url('/assets/images/haggvikstrafikskola-about.jpg');
	background-position: right 75%;
}


#intro h3,
#partners h3 {
	max-width: 60rem;
}

.text-box-blue {
	text-align: center;
	margin: auto;
	padding: 5rem;
	background: #2e59a0;
	border-radius: 2rem;
	max-width: 70rem;
	color: white;
	box-shadow: 2px 1px 2px 1px rgb(224, 224, 224);
}

@media only screen and (max-width: 1200px) {
	#store .halfblock:nth-child(even) {
		display: none;
	}
}

@media only screen and (max-width: 980px) {
	.halfblock-wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.halfblock {
		width: 100% !important;
	}

	.halfblock {
		padding: 6rem 2rem;
		min-height: 35rem;
	}

	.text-box-blue {
		padding: 4rem 2rem;
		border-radius: 0;
	}
}

/* Parallax
========================================================================== */
#scroll {
	background-image: url('/assets/images/vikestallet-divider.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	height: 300px;
	-webkit-box-shadow: inset 0 0px 12rem rgba(0, 0, 0, 0.5);
	box-shadow: inset 0 0px 12rem rgba(0, 0, 0, 0.5);
}

#scroll .section-block {
	background: rgba(0, 0, 0, 0.3);
	height: 100%;
}


/* Tjänster
========================================================================== */

#services {
	width: 100%;
	position: absolute;
}

.service-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	margin-top: -10rem;
	position: relative;
	z-index: 3;
}

.service-wrap .service {
	background-color: #fff;
	padding: 6rem;
	padding-bottom: 4rem;
	margin: 2rem;
	border-radius: 1.5rem;
	-webkit-transition: ease .2s;
	-o-transition: ease .2s;
	transition: ease .2s;
	-webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}

.service:hover {
	-webkit-transform: scale(1.05)translateY(-2rem);
	-ms-transform: scale(1.05)translateY(-2rem);
	transform: scale(1.05)translateY(-2rem);
	background-color: #2e59a0;
}

.service:hover * {
	color: #fff;
}

.service:hover a {
	color: #fff !important;
}

.service h2 {
	font-size: 2.5rem;
	font-weight: 700;
	text-transform: unset;
	color: #222;
}

.service h2:after {
	content: "";
	display: block;
	margin-top: 3rem;
	margin-bottom: 1rem;
	width: 5rem;
	height: 0.2rem;
	background: #d63340;
}

.service:hover a {
	color: #d63340;
}

.service a {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 1.4rem;
	padding: 2rem;
	padding-right: 0;
	letter-spacing: 0.1rem;
	display: block;
	margin: auto;
	margin-right: 0;
	text-align: right;
	font-weight: 400;
	text-transform: uppercase;
}

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

.service a:hover:after {
	margin-left: 1.5rem;
}

.service a:after {
	content: "»";
	font-size: 1.5em;
	font-weight: 300;
	display: inline-block;
	-webkit-transform: scaleY(1.25);
	-ms-transform: scaleY(1.25);
	transform: scaleY(1.25);
	margin-left: 0.5rem;
	-webkit-transition: ease .2s;
	-o-transition: ease .2s;
	transition: ease .2s;

}

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

	#services {
		position: static;
		padding: 6rem 0;
		background: #f7f7f7;
	}

	.service-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 0;
	}

	.service-wrap .service {
		width: 100%;
	}
}

@media only screen and (max-width:550px) {
	.service-wrap {}

	.service-wrap .service {
		padding: 4rem 2rem;
	}
}


/* Prislista
========================================================================== */

.pricelist {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-height: 40rem;
	border: 1px solid #2e59a0;
}

.pricelist p span {
	font-weight: 400;
	font-size: 1.6em;
	background: #2e59a0;
	color: #fff;
	padding: 2rem;
	margin-right: 2rem;
	display: inline-block;
	min-width: 12rem;
}

.pricelist p {
	padding: 0;
	width: 50%;
	margin-bottom: 0 !important;
}

.pricelist p:nth-child(odd) {
	background: #f7f7f7;
}


@media only screen and (max-width:980px) {
	.pricelist {
		max-height: none;
		border: none;
	}

	.pricelist p span {
		margin-right: 0;
		margin-bottom: 2rem;
		width: 100%;

	}

	.pricelist p {
		width: 100%;
		border: 1px solid #2e59a0;
		text-align: center;
		background: #f7f7f7 !important;
		padding-bottom: 2rem;
		margin-bottom: 2rem !important;
	}
}


/* ==========================================================================
Undersidor - gäller alla undersidor 
========================================================================== */

.SubPage .top-section {
	height: 40%;
}

.SubPage .top-section .page-title-wrap {
	display: none;
}

.SubPage .section-block .col-1 {
	padding-right: 3%;
}

.SubPage .section-block .col-2 {
	padding-left: 3%;
}

.SubPage #subpage-title {
	position: absolute;
	display: block;
	margin: auto;
	width: 100%;
	margin-top: -15rem;
	background: transparent;
	text-align: center;
}

.SubPage #subpage-title .smalltext-type {
	max-width: none !important;
}

.SubPage #subpage-title h1 {
	font-size: 5rem;
	text-transform: unset;
	margin: auto;
	display: block;
	font-weight: 700;
	color: #fff;
}

.SubPage #subpage-content {
	padding: 8rem 2rem;
	overflow: hidden;
}

.SubPage #subpage-content p {
	margin-bottom: 2rem;
}

.SubPage #subpage-content ul li:before {
	display: inline-block;
	content: "";
	background: #D63340;
	height: 8px;
	width: 8px;
	margin-bottom: 1px;
	margin-left: 1rem;
	margin-right: 2rem;
}

.SubPage #subpage-content ul li {
	color: #222;
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 2rem;
}

.SubPage #subpage-content ul {
	overflow: initial;
	margin: 2rem 0;
}

.SubPage #subpage-content .btn {
	margin-right: 2rem;
	margin-bottom: 2rem;
}

.SubPage #subpage-content .btnwrap {
	margin-top: 4rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.oppettider {
	margin-top: 4rem;
	text-transform: uppercase;
	font-size: 1.4rem;
	font-weight: 400;
	padding-left: 2rem;
	padding-top: 0.5rem;
	border-left: 0.2rem solid #D63340;
	color: #666;
	letter-spacing: 0.1rem;
}

.SubPage #subpage-content .col-1 {
	padding: 0 5rem;
}

@media only screen and (max-width:980px) {
	.SubPage #subpage-content {
		padding: 0;
	}

	.SubPage #subpage-content .col-0,
	.SubPage #subpage-content .col-1 {
		width: 100%;
	}

	.SubPage #subpage-content .col-1 {
		padding: 0;
		padding-top: 5rem;
	}
}

/* ==========================================================================
Recensioner
========================================================================== */

.review-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.review {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: calc(100% / 3);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 2rem;
	margin: 0 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	background: rgba(0, 0, 0, 0.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.review p {
	color: #fff;
	font-size: 1.6rem;
}

/*
.review p:first-of-type {
	text-align: center;
	font-size:2rem;
	letter-spacing: 0.2rem;
	color:#daa520;
}
*/

.review p:last-of-type {
	text-align: right;
	display: inline;
	width: 100%;
	font-family: "Assistant", sans-serif;
	font-weight: 400;
	font-size: 1.8rem;
	margin-top: 2rem;
}


/* ==========================================================================
Kontakt
========================================================================== */
#floating-contact {
	height: 0;
}

.contact {
	position: fixed;
	overflow: hidden;
	bottom: 0;
	width: 100%;
	max-width: 66rem;
	left: calc(50% - 33rem);
	background: #afdcda;
	text-align: center;
	z-index: 10;
	padding: 1rem 0;
	border-radius: 5px 5px 0 0;
}

.contact a {
	padding: 1.5rem 2.5rem;
	color: #d63340;
	font-size: 1.7rem;
}

/*
.contact a:hover {
	text-decoration: underline;
}
*/

.contact a i {
	margin-right: 5px;
	opacity: 0.5;
}

.contact a:not(:last-of-type) {
	border-right: 2px solid rgba(0, 0, 0, 0.1);
}

.SubPage .section-booking {
	padding-top: 0 !important;
}

.section-booking .contact-heading {
	max-width: 70rem;
	margin: auto;
	background: #2e59a0;
	padding: 3rem 5rem 0;
	border-radius: 2rem 2rem 0 0;
	text-align: center;
}

.SubPage #subpage-content.section-booking p {
	margin-bottom: 0;
}

.section-booking .Contact {
	max-width: 70rem;
	margin: auto;
	background: #2e59a0;
	padding: 3rem 5rem;
	border-radius: 0 0 2rem 2rem;
}

@media only screen and (max-width: 580px) {
	.section-booking .contact-heading {
		padding: 4rem 2rem 0;
		min-width: 100vw;
		margin-left: -2rem;
		border-radius: 0;
	}

	.section-booking .Contact {
		padding: 3rem 2rem;
		min-width: 100vw;
		margin-left: -2rem;
		border-radius: 0;
	}
}

.ContactForm {
	margin-top: 10px;
}

.ContactForm p,
.ContactForm div:not(.ContactFormName, .ContactFormField) {
	display: none;
}

.LayoutPage .form-part div.ContactFormName {
	padding-bottom: 0;
}

.ContactForm div {
	margin-bottom: 10px;
}

.LayoutPage .Contact .ContactForm input.text {
	border-radius: .5rem;
}

.Diary .DiaryCommentForm input,
.Diary .DiaryCommentForm textarea,
.Guestbook .GuestbookForm input.textname,
.Guestbook .GuestbookForm textarea.textmessage,
.GalleryCommentFormControl textarea,
.Contact .ContactForm input.text,
.Contact .ContactForm textarea.textmessage {
	width: 100% !important;
	font-size: 1.5rem;
	padding: 22px 16px !important;
	border: none !important;
}

.LayoutPage .Contact .ContactForm div.ContactFormMessage {
	position: static;
}

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

.LayoutPage .Contact .ContactForm textarea.textmessage {
	height: 100px;
	padding: 11px 16px !important;
}

.LayoutPage .Contact .ContactForm input.ContactSubmit {
	padding: 20px 30px;
}

.Diary .DiaryCommentForm input[type="submit"],
.Guestbook .GuestbookForm input[type="submit"],
.GalleryCommentFormControl input[type="button"],
.Contact .ContactForm input[type="submit"] {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 200px;
	max-width: 1000px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 1.5rem 2.5rem;
	background-color: #d63340;
	border: 2px solid #d63340;
	border-radius: .5rem;
	color: #fff;
	text-align: center;
	text-transform: none;
	font-weight: 500;
	/*  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.15); */
	-webkit-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	display: block;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-shadow: none !important;
	font-size: 1.5rem;
	cursor: pointer;
	font-family: 'Source Sans Pro', sans-serif;
	margin: auto;
	margin-bottom: 2rem;
}

.Diary .DiaryCommentForm input[type="submit"],
.Guestbook .GuestbookForm input[type="submit"],
.GalleryCommentFormControl input[type="button"],
.Contact .ContactForm input[type="submit"]:hover {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	text-decoration: none;
}

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

	.Diary .DiaryCommentForm input[type="submit"],
	.Guestbook .GuestbookForm input[type="submit"],
	.GalleryCommentFormControl input[type="button"],
	.Contact .ContactForm input[type="submit"] {
		position: absolute;
		left: calc(50% - 130px);
	}
}

/* ==========================================================================
Undersida: De 11 stegen
========================================================================== */

.section-timeline {
	counter-increment: section;
}

.section-timeline .section-block-wrapper {
	padding-left: 15rem;
}

.text-block {
	padding-top: 8rem;
	padding-left: 8rem;
	padding-right: 8rem;
	padding-bottom: 4rem;
}

.timeline-title {
	font-size: 2.5rem !important;
	font-weight: 700 !important;
	text-transform: unset !important;
	color: #222 !important;

}

/* Linje till vänster */
.section-timeline .section-block {
	position: relative;
	padding-left: 12rem;

}

.section-timeline .section-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 8rem;
	width: .2rem;
	height: 100%;
	background: rgb(123, 195, 239);
}

.section-timeline .section-block::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 8rem;
	width: .2rem;
	height: 4rem;
	background: rgb(var(--white-color));
}

.section-timeline.bg-gray .section-block::after {}

.bg-gray.section-wrapper {
	background: rgb(245, 245, 245);
}

/* Kurvad linje */
.section-timeline .section-block-wrapper::after {
	content: '';
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 8rem;
	width: 9rem;
	height: 1.2rem;
	border: 2px solid rgb(123, 195, 239);
	border-top: none;
	border-right: none;
	border-bottom-left-radius: 1rem;
	transform: translateY(-50%);
}

/* Siffra */
.section-timeline .section-block-wrapper::before {
	content: '' counter(section);
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	left: calc(8rem + 9rem + 2rem);
	color: rgb(12, 47, 68);
	font-size: 8rem;
	font-weight: 800;
	font-family: inherit;
	color: rgb(v123, 195, 239);
}

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

	.text-block {

		padding-left: 14rem;

	}
}

@media only screen and (max-width: 980px) {
	.section-timeline .section-block {
		padding: 10rem 2rem 6rem 6rem;
	}

	.section-timeline .section-block-wrapper {
		padding-left: 0;
	}

	/* Linje till vänster */
	.section-timeline .section-block::before {
		left: 3rem;
	}

	.section-timeline .section-block::after {
		top: 4rem;
		left: 3rem;
	}

	/* Kurvad linje */
	.section-timeline .section-block-wrapper::after {
		top: 4rem;
		left: 3rem;
		width: 2rem;
		transform: unset;
	}

	/* Siffra */
	.section-timeline .section-block-wrapper::before {
		top: 3rem;
		left: calc(3rem + 2rem + 1rem);
		font-size: 3rem;
		transform: unset;
	}

	.text-block {

		padding-left: 8rem;

	}
}

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


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

.footer .footer-top {
	max-width: 1400px;
	min-height: 250px;
	padding: 81px 20px 50px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
}

.footer-col-top {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 350px;
}

.footer ul {
	margin: 0;
	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 rgba(255, 255, 255, 0.1);
	text-align: left;
	margin: 0 auto;
	width: 100%;
	padding: 15px;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 1400px;
	padding: 20px 20px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	line-height: 1rem;
}

.footer-col-bottom {
	width: calc(100% / 1);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*
.footer-col-bottom:first-child p {
	display: inline-block;
}

.footer-col-bottom:first-child img {
	margin-right: 20px;
}
*/

.footer img {
	width: 200px;
}

.footer-col-bottom:last-child p {
	text-align: right !important;
	font-size: 1.3rem;
}

.footer .container .fab {
	margin: 0;
}



.footer .social-icons {
	padding-top: 10px;
}

.footer p,
.footer a,
.footer li {
	font-size: 1.5rem;
	padding: 0;
	font-weight: 300;
	line-height: 1.6em;
	color: #fff;
	text-decoration: none !important;
}

.footer p {
	padding-bottom: 0.5rem;
}

.footer h4 {
	font-size: 2rem;
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	text-transform: uppercase;
	padding-bottom: 1.8rem;
	margin-bottom: 0;
	font-weight: 700;
	padding-top: 0;
	padding-left: 0;
	border: none;
}

.footer h4.foottitle {
	font-size: 4.5rem;
}

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

.footer a {
	display: inline-block;
}

.footer a:hover {
	text-decoration: underline !important;
}

.footer .container .fab:hover {
	color: #d63340 !important;
}

.footer .container .fab {
	vertical-align: sub;
	color: #fff !important;
}

.footer em {
	color: #D63340;
	margin-right: 5px;
}

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

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


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

	.footer .footer-top,
	.footer .footer-bottom {
		max-width: 900px;
	}

	.footer-col-top {}
}


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

	.footer .footer-bottom {
		min-height: auto;
	}

	.footer-col-top {
		width: 100%;
		margin-bottom: 3rem;

	}

	.footer-col-bottom {
		width: 100%;
		margin: 10px 0;
	}

	.footer .footer-top *,
	.footer-col-bottom:last-child p {
		text-align: center !important;
	}

	.footer h4 {
		padding-bottom: 10px;
	}
}

/* ==========================================================================
Media queries
========================================================================== */

/* Mobile devices */
@media only screen and (hover:none) {}




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

@media only screen and (max-width: 1366px) {
	body.isMobile #scroll {
		background-attachment: scroll !important;
	}
}

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

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

	/* Hamburgarmeny – Den är default svart, men för att ändra färg eller ikon använd koden nedan.*/
	.openmenu {
		/*
		background: transparent url('/files/menu-white.png') no-repeat center center;
	    background-size: 250px 25px;
	    width: 30px;
	    height: 30px;
	    right: 30px;
	    top: 20px;
*/
	}

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

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

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

	nav.mainmenu li a {
		font-size: 1.7rem;
		border-bottom: none;
		margin: 20px 0px;
		color: #312217 !important;
		padding-left: 10px;
	}

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

	nav.mainmenu a:before {
		display: none;
	}

	.openmenu,
	.closemenu {
		background-image: none;
	}

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

	.contact-wrap {
		position: static;
		background: #252525;
		padding-bottom: 60px;
	}

	.contact-info {
		-webkit-transform: translate(0px, 0px);
		-ms-transform: translate(0px, 0px);
		transform: translate(0px, 0px);
		background: white;
		width: 90%;
		margin: 0;
		margin-left: 5%;
		margin-top: -20px;
		-webkit-box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.15);
		box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.15);
	}

	.partners-wrap img {
		width: calc(25% - 20px);
	}
}


.svgscroll .scroller {
	fill: #fff;
}

.svgscroll .stroke {
	stroke: #fff;
}

.svgscroll .scroller {
	-webkit-animation: updown 1s infinite;
	animation: updown 1s infinite;
}

@-webkit-keyframes updown {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0)
	}

	50% {
		-webkit-transform: translate(0, 5px);
		transform: translate(0, 5px)
	}

	100% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0)
	}
}

@keyframes updown {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0)
	}

	50% {
		-webkit-transform: translate(0, 5px);
		transform: translate(0, 5px)
	}

	100% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0)
	}
}



/* Select only for IE11 */

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
	/*
    .LayoutPage .Contact .ContactForm p {
		display: block;
	}
*/
	/*
	#subpage-content .col-0 .ContactForm input {
		padding:0!important;
	}
*/

	#subpage-content .col-0 .ContactForm input:not(.ContactSubmit) {
		padding: 0 1.6rem !important;
	}
}