/* Flen Trafikskola AB */

@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css'); 

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,700&display=swap');

:root {
    --primary-color: #111;
    --secondary-color: #333;
    --gray: #666;
}

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

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

@media only screen and (hover:none) {
	*,
	*::before,
	*::after {
		background-attachment: scroll !important;
		background-position: center center;
	}
}

html {
	font-size: 62.5%;
}

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

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

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

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

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

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: #bb0713;
    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;
    transform: translate(-50%,-50%);
    transition: .3s ease;
}

.popup-wrapper i {
	color: #fff;
}

.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: #bb0713;
    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;
    }
}

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

.arrow-link::after {
    content: ' \2023';
    display: inline-block;
    margin-left: .5rem;
    transition: transform .4s ease;
}

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

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


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

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

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

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


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

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

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

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

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

.pb-1{
	padding-bottom: 1rem !important;
}
.display-none {
	display: none;
}

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

.LayoutPage .bg-primary {
	background-color: #bb0713;
}

.LayoutPage .bg-primary-black {
	background-color: var(--primary-color)
}

.LayoutPage .bg-primary * {
	color: #fff;
}

.LayoutPage .primary-color {
    color: #bb0713;
}

.secondary-color {
    color: #333;
}

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

.text-red {
	color: red;
	font-weight: 600;
}

.gray .section-block {
	background-color: #f2f2f2;
}
.grays{
	background-color: #f2f2f2 !important;
}
.bg-white{
	background-color: #ffffff !important;
}

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


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

.gradient-white-darkgray .section-block {
	background-image: linear-gradient(to top, #181717 50%, #FFF 50%);
}
.p-2{
	padding: 2rem !important;
}
.pb-0 .section-block .block-container {
    padding-bottom: 0 !important;
}
.pb-2 {
	padding-bottom: 4rem !important;
}


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

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

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

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

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

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

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

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

.btn-primary,
.btn-primary:hover,
.ContactSubmit, .ContactSubmit:hover {
	background-color: #bb0713;
	border-color: #bb0713;
	color: #FFF;
}

.btn-secondary,
.btn-secondary:hover {
	background-color: #fff;
	border-color: #fff;
	color: #111;
}

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

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

/* Button with arrow */

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

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

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

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

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

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

@media only screen and (max-width: 480px) {
	.btn {
		display: block;
		width: 100%;
	}
	
	.btn-wrapper .btn {
		margin: 1.5rem 0;
	}
}
@media only screen and (max-width: 900px) {
.col-1,
.col-2{
	width: 100% !important;
}
}
/* ==========================================================================
Text och typsnitt
========================================================================== */
p {
	line-height: 1.8;
	font-size: 1.6rem;
	color: #666666;
	font-family: inherit;
	font-weight: 400;
	text-decoration: none;
}

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

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

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


.section-heading-wrapper {
	padding-bottom: 5rem;
}




.intro {
	max-width: 60rem;
}

h1 {
	font-size: 5rem;
}

h2, h2.section-title + h3 {
	font-size: 3.5rem;
}

h3 {
	font-size: 3rem;
}

h4 {
	font-size: 2.5rem;
}



.bold {
	font-weight: 700;
}

.lead {
	font-size: 1.25em;
}

.text-label {
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.25em;
    font-size: 1.4rem;
/*     text-align: left; */
    padding-bottom: 2.5rem;
    text-shadow: none;
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    color: #333;
    font-style: normal;
}

.section-title {
	font-size: 5rem;
	text-transform: none;
	letter-spacing: normal;
	padding-bottom: 2rem;
	font-weight: 600;
}

strong {
	font-weight: 700;
}

.h-intro {
	font-style: normal;
	font-size: .6em;
}
.text-block{
	max-width: 90rem;
}
.text-block-center{
	max-width: 90rem;
	margin: auto;
	text-align: center;
}
.text-center{
	text-align: center;
}
.justify-center{
	justify-content: center;
}

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

@media only screen and (max-width: 1024px) {
	h1 {
		font-size: 4rem;
	}
	
	h2, h2.section-title + h3 {
		font-size: 3rem;
	}
	
	h3 {
		font-size: 2.5rem;
	}
	
	h4 {
		font-size: 2rem;
	}
}

.box-shadow{
	box-shadow: 0rem 0.7rem 2rem rgba(0,0,0, .1);
}


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

.full-width-textblock h3 {
	padding: 0;
}

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

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

}

@media only screen and (max-width: 768px) {
	.full-width-textblock {
		padding: 0 2rem 5rem;
	}
	.section-title {
		font-size: 3rem;
	}
}

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

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

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

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

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

/* ==========================================================================
Split Wrapper
========================================================================== */
.split-section .section-block {
	background-color: #F2F2F2;
}

.split-content .btn-cta {
	margin-top: 2rem;
	color: #fff;
	background-color: #000;
}

.split-content .btn-cta:hover {
	margin-top: 2rem;
	color: #fff;
	background-color: #e30913;
}
/* .split-section .section-block .btn-cta {
	margin-top:2rem;
} */

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

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

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

.split-content {
	display: flex;
    width: 50%;
    padding: 10rem;
    text-align: left;
    background-color: #fff;
}
.split-content-slim{
	padding-top: 2rem;
	padding-bottom: 2rem;
	padding-left: 4rem;
	padding-right: 4rem;
}

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

.split-image {
	display: flex;
    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: 1200px) {
	
	.split-content {
	    padding: 6rem;
	}
	
}

@media only screen and (max-width: 1000px) {
	
	.split-content {
	    padding: 2rem;
		width: 100%;
	}

	.split-image {
		width: 100%;
	}
	
}
/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

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

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

@media only screen and (max-width: 480px) {
    /* Paddings */
    .card-item.p-3,
    .card-item .p-3 {
        padding: 2rem;
    }
}

/* Card 1-1 */
.card-1-1 .card-item{
	border-radius: 2rem;
	padding: 3rem;
}
.card-1-1 .border-top-black {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}


/* ==========================================================================
img tag till bakgrundsbild
========================================================================== */

.image-wrapper {
	display: flex;
    position: relative;
    overflow: hidden;
}

.image-wrapper 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) {
    .image-wrapper img {
        position: relative;
        transform: none;
        top: unset;
        left: unset;

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


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

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

header.scrolled {
	background-color: #222;
	box-shadow: 0 1rem 4rem rgba(0,0,0, .1);
	transition: all 300ms linear;
}

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

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

@media only screen and (max-width: 550px) {
	
	header .container {
		padding: 0 1rem;
	}
	
}

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


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

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



nav.mainmenu {
	text-align: left;
	margin-left: 5rem;
	display: inline-block;
	width: auto;
}

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

nav.mainmenu .TemplateMenu > li:nth-child(1) {
	display: none;
}

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

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

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

.expandable:after {
	font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    content: '\f107';
    text-decoration: none;
    display: inline-block;
    color: #bb0713;
    margin-left: 1rem;
}

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

/* Dropdown menu */
.expandable-li ul li a {
	line-height: 60px;
}

nav.mainmenu ul > li > ul {
    top: 80px;
    width: 42rem;
    left: -23rem;
    background-color: #fff;
	border-top: 1px solid rgba(101, 101, 101, 0.78);
	max-height: 60rem;
	overflow-y: scroll;
}

nav.mainmenu ul > li > ul > li:hover a {
	background-color: #bb0713;
}

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

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

nav.mainmenu ul > li > ul > li > a {
    color: #fff;
    padding: 3px 30px 0 30px;
    letter-spacing: 2px !important;
}

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

.dropdown-link {
	font-size: 18px !important;
	padding: 0 30px !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;
}


header .close-menu {
	display: none;
}

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

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

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

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



.btn-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	width: 4rem;
    height: 4rem;
    margin-right: 1.2rem;
    letter-spacing: unset;
    padding: 0;
	border: none;
	border-radius: 2rem;	
/* 	background-color: #364B70; */
	color: #364B70 !important; 
}

.btn-cta:hover {
	border: none;
	text-decoration: none;
	color: #fff !important;
	background-color: #e30913 !important;
}

.btn-cta::before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	font-size: 1.7rem;
	display: inline-block;
	position: relative;
	top: 1px;
}

.btn-cta::after {
	display: none;
}


@media only screen and (max-width: 1300px) {
	
	/* Hamburger */
	.hamburger {
	    position: absolute;
	    z-index: 99;
	    left: auto;
	    right: 1rem;
	    top: 1.1rem;
	}
	
	.hamburger-inner, 
	.hamburger-inner::after, 
	.hamburger-inner::before {
		color: #bb0713;
        background-color: #bb0713;
    }

    .scrolled .hamburger-inner, 
	.scrolled .hamburger-inner::after, 
	.scrolled .hamburger-inner::before {
		color: #fff;
		background-color: #fff;
    }

	.hamburger.is-clicked .hamburger-inner, 
	.hamburger.is-clicked .hamburger-inner::after, 
	.hamburger.is-clicked .hamburger-inner::before {
		color: #222;
        background-color: #222;
    }
    
    /* Navigation */
	nav.mainmenu {
		text-align: left;
		display: none;
		position: fixed;
		height: 100%;
		right: 0;
		left: auto;
		width: 45rem;
		background-color: #FFF;
		z-index: 15;
		top: 0;
		box-shadow: none;
		overflow-y: scroll;
		margin-left: 0;
	}
	
	nav.mainmenu .Padding {
		margin: 8rem 0 !important;
	}
	
	nav.mainmenu li {
		text-align: left;
		display: block;
	}
	
	nav.mainmenu li a {
		margin: unset;
		padding: unset;
		padding-left: 4rem;
		font-size: 1.6rem;
        line-height: 3.7;
        opacity: 1;
        color: #333;
	}
	
	nav.mainmenu .header-btn {
		left: 4rem;
		margin-top: 2rem;
	}
	header nav.mainmenu li.header-btn a {
		padding: inherit !important;
		color: #fff !important;
	}
	header nav.mainmenu li.header-btn:hover a  {
		color: #333 !important;
	}
	
	#overlay {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgba(0, 0 , 0, 0.75);
	    z-index: 7;
	}
    
	/* Dropdown */
	nav.mainmenu ul > li > ul {
	    background-color: #fff !important;
	    width: auto !important;
	    border: none;
	}
	
	nav.mainmenu ul > li > ul {
		display: contents !important;
	}
	
	nav.mainmenu ul > li > ul > li a {
		color: #333 !important;
		
	}
	
	nav.mainmenu ul > li > ul > li > a {
	    width: auto;
	    padding: 0 0 0 6rem;
	    font-size: 1.5rem;
	}
	
	nav.mainmenu ul > li > ul {
		margin-bottom: 4rem;
	}
	
	nav.mainmenu ul > li > ul > li > a,
	nav.mainmenu ul > li > ul > li {
		height: 5rem;
		width: 100%;
		letter-spacing: normal !important;
	}
	
	nav.mainmenu ul > li.expandable-li:hover > a {
		padding-bottom: 0;
	}
	 
	nav.mainmenu ul.TemplateMenu > li,
	.scrolled nav.mainmenu ul.TemplateMenu > li {
	    line-height: unset;
	    height: unset;
	}
	
	#overlay {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgba(0, 0 , 0, 0.75);
	    z-index: 7;
	}
	
}

@media only screen and (max-width: 768px) {
	
	header .header-logo {
		width: 14rem;
		padding-top: 1.1rem;
		line-height: 6rem;
	}
	
	header .container {
		padding-left: 1rem;
	}
}

@media only screen and (max-width: 510px) {
	
	nav.mainmenu {
		width: 100%;
	}
}


/* CTA Button */

.cta-menu {
	float: right;
	display: flex;
	align-items: center;
	height: 8rem;
	line-height: 8rem;
	transition: all 300ms linear;
}

.cta-menu .btn {
	padding: 1.4rem 2rem;
	/* height: 4rem; */
}

.cta-menu .btn-white {
	font-size: 1.3rem;
	border-radius: 5rem;
	font-weight: 400;
	letter-spacing: normal;
}

.btn-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	width: 4rem;
    height: 4rem;
    margin-right: 1.2rem;
    letter-spacing: unset;
    padding: 0;
	border: none;	
	background-color: #fff;
	color: #222; 
}

.btn-cta:hover {
	background-color: #e30913;
	border: none;
	color: #fff !important;
	text-decoration: none;
}

.cta-menu .btn-white::before,
.btn-cta::before {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 700;
	font-size: 1.7rem;
	display: inline-block;
	position: relative;
	top: 1px;
}

.cta-menu .btn-white::before{
	margin-right: 1rem;
}

.cta-menu .btn-white::after,
.btn-cta::after {
	display: none;
}

.btn-social::before {
	font-family: 'Font Awesome 5 Brands';
	font-weight: 400;
}

.btn-social::after {
	display: none;
}

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

.icon-map::before {
	content: '\f276';
}

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

.icon-phone::before {
	content: '\f879';
}

.icon-users::before {
	content: '\f0c0';
}

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

    .cta-menu {
		margin-right: 7rem;
	}
}

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

    .cta-menu {
		display: none;
	}
}



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

.top-section {
	display: flex;
    align-items: center;
    justify-content: center;
	min-height: 87vh;
	height: auto;
    padding-top: 8rem;
    padding-bottom: 13rem;
	background-color: rgba(0, 0, 0, 0.7);
}

.page-title-wrap {
	align-self: center;
    position: static;
    transform: unset;
    max-width: none;
    max-width: 110rem;
}

.page-title-wrap h1 {
    font-size: 7rem;
    font-weight: 700;
    line-height: 1.2;
	padding-bottom: 1.5rem;
	text-align: center;
	color: #fff;
	text-shadow: none;
}

.page-title-wrap p {
	margin: 0 auto;
	text-align: center;
	color: #fff;
	font-weight: 400;
	max-width: 80rem;
}

.page-title-wrap .btn {
	margin:5px 0;
}


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

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

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

	.page-title-wrap {
		padding: 7rem 1.5rem 0;
	}
	
}

/* Modal som öppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color),.7);
  }

  body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 75rem;
    max-height: 90vh;
    padding: 0rem;
    border-radius:2rem;
    overflow: auto;
    background: rgb(var(--white-color));
    transform: translate(-50%,-50%);
	overflow-y: hidden;
  }

  .section-auto-modal .close-modal {
    position: absolute;
    top: 18%;
    right: 15%;
    font-size: 3rem;
    cursor: pointer;
	color: white;
  }

  @media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-auto-modal .section-block {
      padding: 3rem 2rem;
    }
  }


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



/* Services
========================================================================== */
.service-section {
	position: relative;
}

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

.service-section .smalltext-type {
	display: none;
}

.service-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	top: -13rem;
}

.service {
	display: flex;
    width: 60%;
    border-radius: 2px;
	padding: 4rem 3rem;
    text-align: center;
    flex-direction: column;
	margin: auto;
    align-items: center;
/*     align-self: stretch; */
    background-color: #fff;
/*     border: 5px solid #F2F2F2; */
    border-radius: 1rem;
    transition: all .25s ease;
    box-shadow: 0rem 0.7rem 2rem rgba(0,0,0, .1);
}

.service:nth-child(1) {
	background-color: #f1f9f4;
}

.service:nth-child(2) {  
	background-color: #fdfbd8; 
} 

.service:nth-child(3) {  
	background-color: #ecf5fe; 
} 

.service:nth-child(4) { 
	background-color: #fef2f3; 
} 


.service:hover {
	text-decoration: none;
	transform: translatey(-1.5rem);
}


.service.highlighted .service-link,
.service-link:hover {
	background-color: #F2F2F2;
	transition: all .25s ease;
	box-shadow: 0rem 0rem 0.5rem rgba(0,0,0, .1);
} 

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

.service-icon-wrap {
	margin-bottom: 3rem;
}

.service-icon {
	font-size: 7rem;
	font-weight: 700;
	color: #333;
}

.service:nth-child(1) .service-icon { color: #009640; }
.service:nth-child(2) .service-icon { color: #e1c000; } 
.service:nth-child(3) .service-icon { color: #0253a6; } 
.service:nth-child(4) .service-icon { color: #e30c15; } 

.service-title {
	font-family: 'Cabin', sans-serif;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.2em;
	color: #111;
}

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

.service .btn {
	color: #333;
	padding: 1.6rem;
}


.service-link:hover * {
	color: #000;
}

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

	.service {
		width: calc(100% / 2 - 1rem);
		margin-bottom: 2rem;
	}
}

@media screen and (max-width: 750px) {
	.service {
		width: 100%;

	}
}

@media screen and (max-width: 550px) {
	.LayoutPage .service-section .section-block {
		padding: 7.5rem 1.5rem 4rem;
	}

	.service-wrapper {
		top: auto;
	}
}


/* Parallax
========================================================================== */

.parallax-section {
	background-image: url('/assets/images/flen-parallax-vag-2000.jpg');
	background-attachment: fixed;
	background-size: cover;
	position: relative;
	background-position: bottom;
}

.LayoutPage .price-start .section-block {
	padding: 18rem 3rem;
	background-color: rgba(0, 0, 0, 0.8);
}

.LayoutPage .price-start * {
	color: #fff;
	text-align: center;
}

.LayoutPage .price-start .section-title {
	font-size: 6rem;
}

.LayoutPage .price-start  p {
	max-width: 70rem;
	margin: 0 auto;
}



/* Kurser
========================================================================== */

.course-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 6rem;
}

.course-card {
	width: 49%;
	margin-bottom: 4rem;
	display: flex;
	background-color: #333;
}
.ContactFormName,
.ContactFormEmail,
.ContactFormField{
	width: 100% !important;
}
.contact-section p:after {
    content: "*" !important;
    font-size: 1.6rem;
    font-weight: 400;
    margin-left: 6px;
    color: red !important;
}
.ContactSentMessage p:after{
	content: none !important;
}
.course-card:hover {
	text-decoration: none;
}

.course-image {
	width: 50%;
	display: flex;
}

.course-text {
	padding: 5rem 3rem;
	width: 50%;
/* 	display: flex; */
}

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

.course-title {
/* 	font-family: 'Cabin', sans-serif; */
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
/* 	color: #333; */
	padding-bottom: .5em;
}

.course-description {
	font-size: 1.6rem;
/* 	color: #4d4f51; */
}

.price-wrapper {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-end;
}


.amount {
	font-weight: 700;
	font-size: 4.5rem;
}


@media only screen and (max-width:1200px) {
	.course-card {
		width:100%;
	}
}

@media only screen and (max-width:580px) {
	.course-card {
		flex-wrap:wrap;
	}

	.course-image {
		width:100%;
	}

	.course-text {
		width:100%;
	}
}


/* Sektion: galleri slider
========================================================================== */
.gallery-start .section-title {
	padding-bottom: 5rem;
}

.gallery-start .slick-dotted.slick-slider{
	padding-bottom: 4rem !important;
}


/* karta
========================================================================== */
.map {
	font-size: 0;
}



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

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

.SubPage header {
	background-color: #222;
    box-shadow: 0 1rem 4rem rgb(0 0 0 / 10%);
}

.SubPage .section-block {
	padding: 14rem 7rem !important;
}

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

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

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

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

@media only screen and (max-width: 480px) {
	.SubPage .section-block {
	    padding: 7.5rem 1.5rem !important;
	}
}

/* Sektion: "stor" topsektion fÃƒÆ’Ã‚Â¶r "huvudundersidorna"
========================================================================== */
.SubPage .subpage-topsection {
	margin-top: 7.2rem;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
}

.SubPage .subpage-topsection .section-block-wrapper {
	max-width: 140rem !important;
	
}

.SubPage .subpage-topsection .section-block {
	background-color: rgba(0, 0, 0, 0.6);
	height: 100%;
	padding: 3rem !important;
	height: 40rem;
}

.SubPage .subpage-topsection .block-container {
	display: flex;
    justify-content: center;
}

.SubPage .subpage-topsection * {
	color: #fff;
	align-self: center;
}

.SubPage .subpage-topsection h1 {
	font-weight: 700;
}

.SubPage .subpage-topsection .text-label {
	color: #9fc23a;
}

@media only screen and (max-width:1024px) {
	.SubPage .subpage-topsection .block-object {
    	height: 30rem;
	}
}

@media only screen and (max-width:1020px) {
	.SubPage .subpage-topsection .block-object {
    	height: 40rem;
	}
}

@media only screen and (max-width: 980px) {
	.SubPage .subpage-topsection {
		margin-top: 7.2rem;
		background-color: transparent;
	}
}

@media only screen and (max-width:768px) {
	.SubPage .subpage-topsection h1 {
		font-size: 5rem;
	}
	
	.SubPage .subpage-topsection .block-object {
    	height: 30rem;
	}
}

@media only screen and (max-width:500px) {
	.SubPage .subpage-topsection h1 {
		font-size: 4rem !important;
	}
	
	.SubPage .subpage-topsection .block-object {
    	height: 25rem;
	}
}


/* Sektion: "stor" topsektion fÃƒÆ’Ã‚Â¶r "huvudundersidorna"
========================================================================== */
.SubPage .small-topsection {
	margin-top: 7.2rem;
}

.SubPage .small-topsection .section-block {
	height: 100%;
	padding: 10rem 3rem 3rem !important;
}

.SubPage .small-topsection .block-container {
	display: flex;
    justify-content: center;
}

.SubPage .small-topsection * {
	align-self: center;
}

.SubPage .small-topsection .text-label {
	color: #e30913;
	text-align: center;
}


/* Sektion: sektion med text i 2 kolumner
========================================================================== */
.LayoutPage .sub-text .section-block .section-block-wrapper {
	max-width: 140rem;
}

.sub-text .col-1 {
	padding-right: 3% !important;
}

.sub-text .col-2 {
	padding-left: 3% !important;
}

.title-small {
	font-size: 3.5rem;
	padding-bottom: 3rem;
	font-weight: 600;
}

.LayoutPage .sub-text .split-image {
	border: 1rem solid #fff;
}

.LayoutPage .sub-text .split-text {
	padding-right: 0;
}

.small-heading {
	padding-top: 2rem;
	font-size: 2.5rem;
	font-weight: 500;
	color: #333;
	letter-spacing: 0.02em;
}

.sub-text .col-0 .heading-type {
	padding-bottom: 3rem;
	text-align: left;
}

.sub-text .col-0 .heading-type .subheading {
	text-align: left;
}

.sub-text .col-0 .heading-type p {
	max-width: 100rem;
	text-align: center;
	margin: 0 auto;
}


/* gÃƒÂ¶r alla lÃƒÂ¤nkar i lÃƒÂ¶ptext udnerstrukna */
.SubPage .split-text p a,
.sub-text p a {
	text-decoration: underline;
}

/* om en kolumn bÃƒÂ¶rjar med en rubrik ska man ta bort paddingen */
.no-padding {
	padding-top: 0 !important;
}


/* lista i lÃƒÂ¶ptext */
.SubPage .section-block ul li:before,
.modal ul li:before {
	content: "\f111";
	color: #e30713;
	font-weight: bold;
    display: inline-block;
    width: 1.9em;
    margin-left: -2em;
    font-family: 'Font Awesome 5 Pro';
    font-size: 1.2rem;
}

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

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

@media only screen and (max-width:980px) {
	.sub-text .col-1,
	.sub-text .col-2 {
		padding: 0 !important;
		width: 100% !important;
	}
	
	.sub-text .col-0 .heading-type h2 {
		font-size: 4rem;
		
		text-align: left !important;
	}
	
	.sub-text .col-0 .heading-type {
		padding-bottom: 0rem;
	}
	
	.sub-text .col-0 .heading-type p {
		max-width: none;
		text-align: left;
		margin: 0;
	}
	
	.no-padding {
		padding-top: 2rem;
	}
}

​/* ==========================================================================
Undersida: Om oss
========================================================================== */

.sub-about .split-content.bg-color {
	background-color: #111 !important;
}

.sub-about .split-content * {
	color: #111;
}

/* ==========================================================================
Undersida: generellt Utbildningarna
========================================================================== */


/* kort för utbildningstillfällen
========================================================================== */
.educations-wrapper {
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
}

.educations-card {
	display:flex;
	flex-direction: column;
	width: 23%;
	margin: 1%;
	margin-bottom: 1.8rem;
	background-color: #fff;
	border: 1px solid #ddd;
	border-bottom: 1rem solid #DF2811;
	box-shadow: 0 0 15px 0 rgb(0 0 0 / 7%);
	-webkit-transition: all .4s ease;
    transition: all .4s ease;
/* 	position: relative; */
}

.educations-text-wrapper {
	flex-grow: 1;
	padding: 2rem;
}

.education-title {
	font-size: 2rem;
	font-weight: 600;
	border-bottom: 1px dotted #333;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

.full {
	text-decoration: line-through;
}

.educations-card .date {
	font-weight: 400;
	font-size: 2rem;
	padding-bottom: 0;
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
}


.nav-wrapper a:hover {
	transition:all ease-out 0.3s;
	color: #DF2811;
}


.educations-card .price {
	background-color: #f9f9f9;
	width: 100%;
	padding: 2rem 4rem;
}

.educations-card:hover {
	transform: scale(1.02);
	-webkit-transform: scale(1.02);
}



@media only screen and (max-width:1000px) {
	.educations-card {
		width: 45%;
	}
	
	.educations-text-wrapper {
		padding: 2rem;
	}
}

@media only screen and (max-width:740px) {
	.educations-card {
		width: 100%;
	}
}


/* Sektion: boka utbildning
========================================================================== */

.LayoutPage .booking-section {
	background-color: rgba(0, 0, 0, 0.8);
}

.LayoutPage .booking-section * {
	color: #fff;
}


/* Tabell
========================================================================== */
.LayoutPage .pricelist .section-block-wrapper {
	max-width: 90rem;
}

.LayoutPage .pricelist h2 {
	text-align: left;
	color: #bb0713;
	font-weight: 600;
}

.table-wrapper {
	margin-bottom: 5rem;
	border-top: 1px solid #bebebe;
	border-bottom: 1px solid #bebebe;
}

.table-header {
	background-color: #bb0713 !important;
}

.table-header p {
	color: #fff;
	font-size: 2rem;
	font-weight: 600;
}

.tabel-col {
	width: 100%;
	padding: 2rem;
}

.tabel-col:nth-child(odd) {
	background-color: #f4f3f3;
}

.tabel-col p {
	padding-bottom: 0;
}

.tabel-col .price {
	float: right;
	font-weight: 600;
	padding-left: 2rem;
}

.rabatt {
	font-size: 1.3rem;
	padding: 0 0 2rem 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #009640;
}


/* Modaler för villkor på Intensivkurs 
========================================================================== */
.modal {
	max-width: 750px !important;
	width:100%;
	max-height:80vh !important;
	vertical-align: middle !important;
	overflow:auto;
	border-radius:0;
	padding:40px;
}
​
.blocker {
	z-index: 100;
}
​
.modal a.close-modal {
	top: 17px !important;
	right: 17px !important;
}

.modal li {
	margin-bottom: 1rem;
}

/* Sektion: forumlär kursundersidorna
========================================================================== */
.LayoutPage .course-form {
	background-color: rgba(0, 0, 0, 0.84);
}

.LayoutPage .course-form .section-block-wrapper {
	max-width: 80rem;
	margin: auto;
}

.LayoutPage .course-form .section-title {
	color: #fff;
	text-align: center !important;
}

/* ==========================================================================
Undersida: Priser - Ny
========================================================================== */
/* Prislista - tabell */
.section-price .table-wrapper .first{
	background: #00963f;
}

.section-price .table-wrapper .first p{
	color: white;
    font-weight: 600;
    font-size: 2rem;
}

.section-price .table-wrapper {
	box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
	border-bottom: none;
}

.section-price .table-wrapper .tabel-col p{
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-price .table-wrapper .tabel-col .desc{
	max-width: 80%;
}
.price2{
	color: red;
    float: right;
    font-weight: 600;
    font-size: 1.5rem;
}

@media only screen and (max-width: 480px) {
    .section-price .table-wrapper .tabel-col p {
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
    }

	.section-price .table-wrapper .tabel-col .desc{
		max-width: 100%;
	}

	.section-price .tabel-col .price{
		padding-left: 0rem;
    	padding-top: 1.5rem;
	}
}

/* Intensivkurser */
.section-price .price-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.section-price .price-item{
	box-shadow: 0 1rem 3rem rgb(0, 0, 0, .1);
	width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

.section-price .price-item h3{
	background: #00963f; 
    color: #fff;
    padding: 2rem;
}

.section-price .price-desc{
	padding: 2rem; 
}

.section-price .price-item ul{
	padding: 0rem 2.5rem;
}

.section-price .price-item .price{
	font-size: 2.6rem;
    color: #222;
    font-weight: 600;
}

.section-price .price-item .sale{
	color: #222;
	font-weight: 600;
}

.full{
	text-decoration: line-through;
}
.full-red{
	color: #bb0713;
}
@media only screen and (max-width: 750px) {
    .section-price .price-item {
        width: 100% !important;
        margin: 1rem 0;
    }
}

/* ==========================================================================
Undersida: kontakt
========================================================================== */

.contact-header {
	color: #bb0713;
}

.section-contact .pt-8 {
	padding-top: 8rem;
}

@media only screen and (max-width: 750px) {
	.section-contact .pt-8 {
		padding-top: 4rem;
	}
	.section-contact p {
		padding-bottom: 2rem;
	}
}

/* ==========================================================================
Undersida: galleri
========================================================================== */
.gallery .gallery-wrapper {
	font-size: 0;
	display:flex;
	flex-wrap:wrap;
}

.gallery .gallery-klaraelever {
	position: relative;
    display: inline-block;
    width: 24%;
    margin: 0.5%;
    line-height: 1;
    min-height: 30rem;
    padding: 0;
    box-sizing: border-box;
	overflow: hidden;
}

.gallery-klaraelever img {
    object-fit: cover;
    object-position:center center;
}


@supports (object-fit: cover) {
	
	.gallery .gallery-klaraelever img {
	    position: absolute;
	    top: 50%;
	    left: 50%;
	    transform: translate(-50%,-50%);
	    min-width: 100%;
	    min-height: 100%;
	    width: 100%;
	    height: 100% !important;
	}
}

@media only screen and (max-width: 1100px) {
	.gallery .gallery-klaraelever {
		width: 32.33%;
	}	
}

@media only screen and (max-width: 768px) {
	.gallery .gallery-klaraelever {
		min-height: 21rem;
	}
}

@media only screen and (max-width: 640px) {
	.gallery .gallery-klaraelever {
		min-height: 24rem;
		width: 49%;
	}
}

@media only screen and (max-width: 480px) {
	.gallery .gallery-klaraelever {
		min-height: 16rem;
	}
}



/* ==========================================================================
Footer
========================================================================== */
.footer {
	background-color: #111;
	padding: 0;
	color: #fff;
/* 	z-index: 1; */
	position: relative;
}

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

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

.footer li {
	line-height: 1.9;
}

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

.footer-logo {
	position: absolute;
    width: 15rem;
    margin: 0;
    display: none;
    text-align: left;
    top: -14rem;
    left: -1rem;
}

/* FOOTER MENU */

.footer-nav {
    width: 100%;
    margin-bottom: 10rem;
}

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

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

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

/* FOOTER SUBMENU */

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

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

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

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

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

.footer .social {
	display: flex;
	align-items: center;
	justify-content: center;
	
	font-size: 0;
	
	width: 4rem;
    height: 4rem;
    margin-right: 1.2rem;
    padding: 0;
	
	border-radius: 2rem;	
	background-color: #333;
	color: #FFF; 
}

.footer .social:hover {
	background-color: #fff;
	color: #333;
	text-decoration: none;
}

.footer .social::before {
	font-family: 'Font Awesome 5 Brands';
	font-weight: 400;
	font-size: 1.7rem;
	
	position: relative;
	top: 1px;
}

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

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

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

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

.footer-bottom {
	border-top: 1px solid #fff;
	margin: 0 auto;
	width: 100%;
	padding: 2rem;
    box-sizing: border-box;	
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    line-height: 1rem;
}

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

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

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

/* FOOTER PARTNER LINKS */

.partner-list {
	display: flex;
	list-style: none;
}

.partner-list li {
	width: 25%;
	margin: 0 1rem 0 0;
	padding: .5rem;
	border: 1px solid #c2c2c2;
	background-color: #FFF;
	border-radius: 5px;
}

.partner-list img {
	width: 100%;
	filter: grayscale(100%);
}

/* Footer Bottom */

.footer-bottom {
	border-top: 1px solid #FFF;
	margin: 0 auto;
	width: 100%;
	padding: 2rem;
    box-sizing: border-box;	
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    flex-direction: row;
    line-height: 1rem;
}

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

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

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

@media only screen and (max-width: 1024px) {
	
	.footer .container {
	    padding: 0rem 2rem 0;
	}
	
	.footer-container {
	    flex-wrap: wrap;
	}
	    
    .footer-menu-wrapper {
	    flex-wrap: wrap;
	}

	.footer-menu {
	    width: 50%;
	    margin-bottom: 5rem;
	}
	
}

@media only screen and (max-width: 550px) {
	
	.footer .container {
		padding: 0 2rem;
	}
    	
	.footer-menu {
	    width: 100%;
	    margin-bottom: 3rem;
	}

}





