/* AN bargning AB */

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

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

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

html {
    font-size: 62.5%;
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: 'Open sans', sans-serif;
}


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

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

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

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

/*speciella bredder */
.mw-1400 .section-block-wrapper {
    max-width: 140rem;
}

.mw-none .section-block-wrapper {
    max-width: 200rem;
}

/* Speciella paddings */
.LayoutPage .pt-0 .section-block,
.LayoutPage .pt-0:not(.section-wrapper) {
    padding-top: 0;
}

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

    .LayoutPage .pt-0 .section-block,
    .LayoutPage .pt-0:not(.section-wrapper) {
        padding-top: 0;
    }
}

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

    .LayoutPage .pt-0 .section-block,
    .LayoutPage .pt-0:not(.section-wrapper) {
        padding-top: 0;
    }
}


/* ==========================================================================
Split Wrapper
========================================================================== */

.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;
    align-items: center;
    width: 50%;
    padding: 10rem;
    text-align: left;
    align-self: center;
}

.split-content.pl-0 {
    padding-left: 0;
}

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

.split-image {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.split-image img {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: unset !important;
}

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

@media screen and (max-width: 1100px) {
    .split-content {
        width: 50%;
        text-align: left;
        padding: 5rem;
    }
}

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

    .split-image {
        width: 100%;
        padding: 0;
    }
}

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

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

.btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    max-width: 50rem;
    display: inline-block;
    width: auto;
    box-sizing: border-box;
    border-radius: 6rem !important;
    padding: 1rem 3rem;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-transform: none;
    text-align: center;
    letter-spacing: 0rem;
    font-size: 1.5rem;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.btn:active {
    transform: scale(0.96);
}

.btn a {
    padding: 0;
}

.btn-primary {
    color: #444 !important;
    border: 2px solid #f2db2e !important;
    background-color: #f2db2e !important;
}

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

/* before och after - ikonknappar */
.btn::after {
    display: inline-block;
    content: " \2023";
    margin-left: 0.6rem;
    transition: all 0.4s ease;
}

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

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

.btn-wrapper .btn:first-child {
    margin-right: 2rem;
}

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

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

    .btn-wrapper .btn:first-child {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

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

.popup-wrapper {
    position: fixed;
    right: 2.5rem;
    bottom: 3rem;
    max-width: calc(100vw - 2rem);
    width: 100%;
    z-index: 50;
}

/* Popup buttons */
.popup-button {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: auto;
    background: #fff;
    border-radius: 6rem;
    cursor: pointer;
    -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.22);
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.22);
    transition: 0.25s ease;
    display: flex;
    padding: 1.1rem 3rem;
}

.popup-button:hover {
    transform: scale(1.05);
}

.popup-button .popup-text {
    font-family: inherit;
    padding-left: 1rem;
    letter-spacing: 0.01rem;
    font-weight: 500;
    font-size: 1.5rem;
    color: #be1e2c;
}


/* ==========================================================================
Text och typsnitt
========================================================================== */
p {
    font-family:inherit;
    color: #444;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8rem;
    line-height: 1.7;
    letter-spacing: normal;
}

p {
    padding-bottom: 0.9em;
}

a,
li {
    font-size: inherit;
}

a {
    text-decoration: none;
    font-family:inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-style: normal;
    color: #000;
    text-transform: none;
    line-height: 1.3;
    font-family: inherit;
}

h1 {
    font-weight: 400;
    font-style: normal;
}

h2,
.text-label {
    font-family: inherit;
    font-weight: 400;
    color: #444;
    font-size: 1.8rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
}

h3,
.section-title {
    text-transform: uppercase;
    font-family: inherit;
    font-size: 4rem;
    line-height: 1.4;
    padding-bottom: 3rem;
    margin: 0 auto;
    color: #be1e2c;
}

.small-title {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #fff;
    font-weight: 700;
    line-height: 1.5;
    font-size: 2.7rem;
    color: #fcef01;
}

.LayoutPage .text-center {
    text-align: center;
}

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

@media only screen and (max-width: 570px) {
    .section-title {
        font-size: 2.3rem;
        padding-bottom: 1rem;
    }

    .text-label {
        font-size: 1.4rem;
        letter-spacing: 0.05rem;
    }

    p {
        font-size: 1.5rem;
    }

    .small-title {
        font-size: 2.3rem;
    }
}

/* =======================================================================
farger 
=========================================================================== */

/* textfarger */

.color-primary,
.primary-color {
    color: #be1e2c;
}

.color-secondary {
    color: #d11311;
}

.color-white,
.text-white {
    color: #fff;
}

.color-offwhite {
    color: rgb(236, 236, 236);
}

.color-darkgrey {
    color: #444;
}

/* bakgrundsfarger */
.bg-lightgray .section-block {
	background-color: #f2f2f2;
}

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

/* Header > CTA Btn  */
header .cta-socials {
    position: absolute;
    top: 1.8rem;
    right: 1rem;
    opacity: 1;
    -moz-transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.cta-socials .social-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-socials .social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 1rem;
    padding: 0;
    border-radius: 2rem;
    background-color: #be1e2c;
    border-color: #be1e2c;
    color: #fff;
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.cta-socials .social:hover {
    background-color: transparent;
    border: 1px solid #be1e2c;
    color: #be1e2c;
    text-decoration: none;
}

.cta-socials .social::before {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    font-size: 1.5rem;
    position: relative;
    top: 1px;
}

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

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

/* header */
header .container {
    max-width: none;
    padding: 0;
}

header {
    background-color: transparent;
    box-shadow: none;
    -moz-transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    height: 70px;
}

header.scrolled {
    background: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
}

header.scrolled nav.mainmenu a {
    color: #444;
}

header.scrolled .header-logo a {
    color: #444;
}

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

/* header-logo */
header .header-logo {
    width: 25rem;
    opacity: 1;
    padding: 1rem 2rem 2rem;
    position: absolute;
    transition: 0.4s ease-in-out;
}

/* meny */
nav.mainmenu {
    text-align: center;
}

nav.mainmenu a {
    text-transform: uppercase;
    font-family: inherit;
    font-style: normal;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding: 0 2rem;
    line-height: 72px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

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

nav.mainmenu li a:hover,
nav.mainmenu li.active a {
    color: #fcc4c8;
}

header.scrolled nav.mainmenu li a:hover,
header.scrolled nav.mainmenu li.active a {
    color: #9a1414;
}

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

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

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

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

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

/* Dropdown*/
nav.mainmenu ul > li > ul {
    background-color: #fff;
    width: auto;
    border-bottom: 5px solid #be1e2c;
}

nav.mainmenu ul > li > ul > li {
    overflow: hidden;
}

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

header.scrolled nav.mainmenu ul > li.expandable-li:hover > a {
    color: #be1e2c;
}

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

nav.mainmenu ul > li.expandable-li > a::before {
    visibility: hidden;
}

nav.mainmenu ul > li.expandable-li > ul > li > a,
header.scrolled nav.mainmenu ul > li.expandable-li > ul > li > a {
    line-height: 5rem;
    height: 5rem;
    padding: 0 2rem 0 2rem;
    color: #444 !important;
}

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

nav.mainmenu ul > li.expandable-li > a {
    cursor: default;
}
  
@media only screen and (min-width: 1100px) {
    /* hmaburger */
    .hamburger {
        display: none;
    }

    .expandable:after {
        font-family: "Font Awesome 5 Pro";
        font-weight: 700;
        content: "\f0d7";
        margin-left: 0.8rem;
        text-decoration: none;
        display: inline-block;
        font-size: 0.8em;
        vertical-align: middle;
    }

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

    nav.mainmenu a:before {
        background-color: #444;
        visibility: hidden;
        position: absolute;
        content: "";
        height: 2px;
        bottom: 15px;
        width: 50%;
        margin: 0 auto;
        display: block;
        left: 25%;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -moz-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 0.3s ease-in-out 0s;
        -ms-transition: all 0.3s ease-in-out 0s;
        -moz-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }
}

@media only screen and (max-width: 1100px) {
    /* header */
    header {
        height: 6rem;
    }

    header .header-logo {
        width: 20rem;
        padding: 1.5rem 2rem;
    }

    header .cta-socials {
        position: absolute;
        top: 1.3rem;
        right: 7rem;
    }

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

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

    /* Hamburger */
    .hamburger {
        position: absolute;
        z-index: 99;
        left: auto;
        right: 2rem;
        top: 0.2rem;
    }

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

    .hamburger--menu .hamburger-inner::after {
        content: "MENY";
        font-size: 1.1rem;
        letter-spacing: 0.2em;
        color: #fff;
    }

    header.scrolled .hamburger .hamburger-inner,
    header.scrolled .hamburger .hamburger-inner::before {
        color: #444;
        background-color: #444;
    }

    header.scrolled .hamburger--menu .hamburger-inner::after {
        color: #444;
    }

    .hamburger-inner,
    .hamburger-inner::after,
    .hamburger-inner::before {
        width: 4rem;
    }

    /* navigation */

    nav.mainmenu {
        text-align: left;
        display: none;
        position: fixed;
        height: 100%;
        left: 0;
        width: 100%;
        max-width: 35rem;
        background-color: #fff;
        z-index: 15;
        top: 0;
        box-shadow: none;
        overflow-y: scroll;
    }

    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: 3rem;
        font-size: 1.6rem;
        line-height: 3.7;
        color: #444 !important;
    }

    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 6;
    }

    /* 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: #000 !important;
        margin-left:5rem;
    }

    nav.mainmenu ul > li > ul > li > a {
        width: auto;
        padding: 0 0 0 6rem;
    }

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

    nav.mainmenu ul.TemplateMenu > li,
    .scrolled nav.mainmenu ul.TemplateMenu > li {
        line-height: unset;
        height: unset;
    }
}

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

    /* header */
    header .header-logo,
    header.scrolled .header-logo {
        width: 12rem;
        padding: 2rem 1rem;
    }
/* cta socials */
    .cta-socials .social {
        width: 3rem;
        height: 3rem;
    }

    .cta-socials .social::before {
        font-size: 1.4rem;
    }

    header .cta-socials {
        top: 1.5rem;
    }
}

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

.top-section {
    overflow: hidden;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    min-height: 95vh;
}

.page-title-wrap {
    max-width: none;
    text-align: left;
    position: static;
    transform: unset;
    max-width: none;
    padding: 0 10rem 0;
}

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

.top-section h1 {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5rem;
    font-size: 1.5rem;
    font-family: inherit;
    padding-bottom: 2rem;
}

.page-title-wrap h2 {
    font-size: 6rem;
    font-weight: 500;
    margin: 0 auto;
    text-transform: uppercase;
    line-height: 1.4;
    font-family: inherit;
}

.usp-decor {
    font-weight: 700;
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 70%,
        #be1e2c 10%
    );
}

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

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

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

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

@media only screen and (max-width: 800px) {
    .page-title-wrap h2 {
        font-size: 3rem;
        line-height: 1.6em;
        letter-spacing: 0.1rem;
    }

    .page-title-innerwrap {
        max-width: none;
    }

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

@media only screen and (max-width: 450px) {
    .page-title-wrap h2 {
        font-size: 2.5rem;
        line-height: 1.6em;
        letter-spacing: 0.1rem;
    }

    .top-section h1 {
        font-size: 1.4rem;
        padding-bottom: 1rem;
    }

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


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

.intro .normaltext-type {
    max-width: 80rem;
}

@media screen and (max-width: 1538px) {
    .intro .section-block * {
        text-align: left;
    }
}

/* Assistansforsakning
========================================================================== */
.assistans-logo {
    width: 12rem;
    margin-bottom: 2rem;
}

.about .split-image {
    padding: 3rem 0;
}

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

@media screen and (max-width: 1000px) {
    .about .split-content {
        padding: 5rem 2rem;
	}
	
    .assistans-logo {
        width: 9rem;
        margin-bottom: 2rem;
    }
}

/* Startsida: Tjanster
========================================================================== */

.service-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.EditMode .service-wrapper {
    top: 5rem;
    margin: 0;
}

.service-card {
    width: 50%;
    border-radius: 1rem;
    position: relative;
    display: block;
    margin: 0.5%;
    padding: 17rem 6rem 5rem 6rem;
    background-color: #fff;
    text-decoration: none;
    overflow: hidden;
    text-align: left;
    background-size: cover !important;
}

.service-card:nth-child(1) h4,
.service-card:nth-child(2) h4 {
    margin-top: 3rem;
}

.service-card:nth-child(1) {
    width: 53%;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.25)
        ),
        url(/assets/images/bargning-700.jpg);
}

.service-card:nth-child(2) {
    width: 45%;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.25)
        ),
        url(/assets/images/tungbargning-700.jpg);
}

.service-card:nth-child(3) {
    width: 32%;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.25)
        ),
        url(/assets/images/terrangbargning-700.jpg);
}

.service-card:nth-child(4) {
    width: 32%;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.25)
        ),
        url(/assets/images/sec-transporter-700px.jpg);
        /* url(/assets/images/transporter-700.jpg); */
}

.service-card:nth-child(5) {
    width: 32%;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.25)
        ),
        url(/assets/images/starthjalp-700.jpg);
}

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

@media only screen and (max-width: 1024px) {
    .service-card {
        width: 100% !important;
        padding: 7rem 7rem 2rem 5rem;
        columns: 1;
        column-gap: 3rem;
        margin-bottom: 2rem;
    }

    .service-card h2 {
        column-span: all;
    }
}

@media only screen and (max-width: 768px) {
    .service-card {
        columns: 1;
    }

    .service-title {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 550px) {
    .service-card {
        padding: 5rem 2rem 5rem !important;
    }
}

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

.isMobile .parallax-1 {
    background-attachment: scroll !important;
    max-width: 100% !important;
    background-size: cover !important;
}

.parallax-1 .section-block {
    height: 50vh;
}

.parallax-1 {
    background: url("/assets/images/bakgrund-assistans.jpg");
}


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

/* ==========================================================================
Undersidor - galler alla undersidor
========================================================================== */

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

.SubPage .hero .section-block {
    padding: 20rem 5rem 15rem;
    background-color: rgba(119, 24, 0, 0.7);
}

.SubPage .hero {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.SubPage .hero.start {
    background-image: url(/assets/images/start-hero-2000.jpg);
}


@media only screen and (max-width: 580px) {
    .SubPage .hero .section-block {
        padding: 15rem 2rem 6rem;
    }
}

/* Box med text overlappande */
.text-wrapper {
    background-color: #f8f8f8;
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 7%);
    padding: 4rem;
    position: relative;
    top: -4rem;
    max-width: 95rem;
    margin: 0 auto;
    border-radius: 1rem;
}

.text-wrapper p {
    font-size: 2rem;
}

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

    .text-wrapper p {
        font-size: 1.8rem;
    }
}


/* ==========================================================================
Undersidor: Tjanster - bargmning
========================================================================== */
.SubPage .hero.bargning {
    background-image: url(/assets/images/bargning-1200.jpg);
}

/* ==========================================================================
Undersidor: Tjanster - tungbargning
========================================================================== */

.SubPage .hero.tungbargning {
    background-image: url(/assets/images/tungbargning-2000.jpg);
}

/* ==========================================================================
Undersidor: Tjanster - terrang
========================================================================== */
.SubPage .hero.terrang {
    background-image: url(/assets/images/bakgrund-assistans.jpg);
}

/* ==========================================================================
Undersidor: Tjanster - transport
========================================================================== */
.SubPage .hero.transport {
    background-image: url(/assets/images/sec-transporter-2000px.jpg);
}

/* ==========================================================================
Undersidor: om oss
========================================================================== */

.SubPage .hero.om-oss {
    background-image: url(/assets/images/bil-bargas-2000.jpg);
}

/* ==========================================================================
Undersidor: teckna väghjälp
========================================================================== */

.SubPage .hero.hjalp {
    background-image: url(/assets/images/varning-vagen-2000.jpg);
    background-position: center bottom;
}

/* ==========================================================================
Undersida: kontakta oss
========================================================================== */
.contact-wrapper {
    margin-bottom: 3rem;
}

/* kontaktikonerna */
.contact-wrapper em {
    margin-right: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.contact-wrapper a:hover {
    color: #be1e2c;
}

/* Offertforfragan
  ========================================================================== */
.LayoutPage .contact-form {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: url("/assets/images/bil-bargas2-2000.jpg");
}

.LayoutPage .contact-form .section-block {
    position: relative;
    width: 100%;
    max-width: none;
    text-align: left;
    padding: 15rem 2rem 10rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 80%, #fff 80%);
}

.LayoutPage .contact-form .section-block-wrapper {
    max-width: 140rem;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 9%);
}

.LayoutPage .contact-form .col-0 {
    width: 40%;
    background-color: #fff;
    order: 0;
    padding: 10rem 5rem;
    display: flex;
    z-index: 5;
    position: relative;
    padding-left: 5rem;
}

.LayoutPage .contact-form .col-1 {
    padding: 5rem 3rem;
    width: 60%;
    order: 1;
    background: #be1e2c;
    height: 100%;
    display: flex;
    z-index: 1;
}

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

/* Contact form  */

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

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

/* Display none eftersom tidigare sida ej hade meddelanderuta */
.LayoutPage
    .contact-form
    .section-block
    .Contact
    .ContactForm
    div.ContactFormMessage {
    width: 100%;
}

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

.LayoutPage .contact-form .section-block .Contact .ContactForm div.ContactFormMessage p,
.LayoutPage .contact-form .section-block .Contact .ContactForm .ContactFormEmail p,
.LayoutPage .contact-formn .section-block .Contact .ContactForm .ContactFormField p,
.LayoutPage .contact-form .section-block .Contact .ContactForm .ContactFormName p {
    color: #fff;
    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 1rem !important;
    text-transform: none;
    letter-spacing: 0;
}

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

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

.LayoutPage .contact-form .section-block .Contact .ContactForm input:focus,
.LayoutPage .contact-form .section-block .Contact .ContactForm textarea:focus {
    border-color: #000 !important;
}

.LayoutPage .contact-form .ContactForm input.ContactSubmit {
    width: 100% !important;
    max-width: none;
    padding: 1.6rem 4rem;
    border-radius: 0.8rem;
    background-color: #fff;
    border: 2px solid #fff !important;
    color: #000;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 1.5rem;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    font-family: inherit;
    height: auto !important;
    max-width: 100%;
    margin-left: auto;
}

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

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

@media only screen and (max-width: 1080px) {
    .LayoutPage .contact-form .col-block {
        width: 100%;
    }

    .LayoutPage .contact-form .col-0 {
        order: 0;
        height: auto;
        display: block;
    }

    .LayoutPage .contact-form .col-1 {
        height: auto;
        min-height: auto;
        order: 1;
        margin: 0;
    }

    .LayoutPage .contact-form .section-block {
        height: auto;
    }

    .LayoutPage .contact-form .section-block-wrapper {
        flex-direction: column;
    }
}

@media only screen and (max-width: 580px) {
    .contact-form-page .hamburger-inner,
    .contact-form-page .hamburger-inner::before {
        color: #444;
        background-color: #444;
    }

    .contact-form-page .hamburger--menu .hamburger-inner::after {
        content: "MENY";
        font-size: 1.1rem;
        letter-spacing: 0.2em;
        color: #444;
    }

    .LayoutPage .contact-form .col-0 {
        padding: 15rem 3rem 5rem 3rem !important;
    }

    .LayoutPage .contact-form .col-1 {
        padding: 2rem !important;
    }

    .LayoutPage .contact-form .section-block .Contact .ContactForm div {
        width: 100%;
        margin: 0 0 1rem 0;
    }

    .LayoutPage .contact-form .section-block {
        padding: 0;
    }

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

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

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

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

.footer .footer-top {
    max-width: 150rem;
    min-height: 25rem;
    padding: 8rem 4rem 5rem 6rem;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

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

.footer-col-top:first-child {
    width: 20%;
    padding: 0rem 4rem;
}

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

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

.footer-bottom-container {
    background-color: #fff;
}

.footer .footer-bottom {
    text-align: center;
    margin: 0 auto;
    width: 95%;
    padding: 1.5rem;
    margin: 0 auto;
    box-sizing: border-box;
    background: #fff;
    max-width: 160rem;
    min-height: 0;
    padding: 2rem 5rem;
    border-top: 1px solid #be1e2c;
    box-sizing: border-box;
    font-size: 0.55rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    line-height: 1;
}

.footer-col-bottom {
    box-sizing: border-box;
    align-self: center;
    display: inline-flex;
}

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

.footer p,
.footer a,
.footer li {
    font-size: 1.5rem;
    padding: 0;
    font-family: "Open sans", sans-serif;
    line-height: 1.6em;
    font-weight: 400;
    padding-bottom: 4px;
    letter-spacing: 0;
    color: #444;
    text-decoration: none !important;
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.footer-bottom p {
    color: #444;
}

p.footer-heading {
    text-transform: uppercase;
    border-bottom: 0;
    font-size: 1.6rem;
    padding-bottom: 1rem;
    color: #be1e2c;
    padding-top: 0;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.01rem;
}

.footer a {
    display: inline-block;
}

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

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
}
@media only screen and (max-width: 1466px) {
    .footer .footer-top {
        max-width: 130rem;
    }
}

@media only screen and (max-width: 1100px) {
    .footer-col-top,
    .footer-col-top:first-child,
    .footer-col-top:nth-child(2) {
        width: 48%;
        margin: 1%;
        padding-left: 0;
    }
}

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

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

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

    .footer-col-top {
        padding: 1rem 0;
    }

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

    .footer h4 {
        padding-bottom: 0rem;
    }
}
