/*  Dalaros Eviga AB */

/* Typsnitt - Work Sans */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&display=swap');

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 10rem;
    --menu-height-scrolled: 10rem;

    /* 	Colors */
    --primary-color: 0, 126, 71;
    --primary-light-color: 58, 170, 53;
    --primary-dark-color: 156, 102, 68;
    --secondary-color: 246, 230, 205;

    --black-color: 0, 8, 12;
    --gray-color: 108, 119, 124;
    --gray-dark-color: 42, 54, 56;
    --gray-light-color: 221, 234, 241;
    --white-color: 255, 255, 255;

    /* 	Typography */
    --base-size: 1.7rem;

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 255, 255, 255;
}

/* Layout
========================================================================== */
.section-block {
    padding: 10rem 5rem;
}

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

/* Paddings */

.p-3:not(.section-wrapper) {
    padding: 3rem;
}

.pb-0 .section-block {
    padding-bottom: 0;
}

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

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

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

.py-0 .section-block {
    padding-top: 0;
    padding-bottom: 0;
}

/* Margins */
.mt-5 {
    margin-top: 5rem;
}

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

.ml-auto {
    margin-left: auto;
}

/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

.mw-1000 .section-block-wrapper {
    max-width: 100rem;
}

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

@media only screen and (max-width: 1000px) {
    .p-2 {
        padding: 2rem !important;
    }
}

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

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
}

/* Rubriker */
.text-label {
    font-size: 1.6rem;
    font-weight: 500;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

.section-title {
    font-size: 4.5rem;
    line-height: 1.3;
    font-family: inherit;
    font-weight: 500;
    padding-bottom: 2rem;
    color: rgb(var(--black-color));
}

.small-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: inherit;
    padding-bottom: 1rem !important;
}

/* Brodtext och lankar */
p,
li {
    font-weight: 400;
    color: rgb(var(--gray-dark-color));
}

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: var(--primary-color);
}

a:hover {
    text-decoration: none;
}

/* Ovriga klasser */
.text-block-center {
    max-width: 80rem;
    margin: 0 auto 5rem;
}

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

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

.text-bold {
    font-weight: 700;
}

/* Listor */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    max-width: 100rem;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

.list-pills li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    margin: .5rem;
    font-size: 1.5rem;
    border-radius: 4rem;
    color: rgb(var(--black-color));
    background: rgb(var(--secondary-color), .5);
}

.list-pills li::before {
    content: '\f00c';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
    border-radius: 50%;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-light-color));
}

/* Listor */
.check-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.check-list li {
    position: relative;
    font-size: 1.4rem;
    margin: 0 1.5rem 1rem 0;
}

.check-list li::before {
    content: '\f00c';
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 5px 0 0;
    border-radius: 50%;
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
    vertical-align: middle;
}

@media only screen and (max-width: 580px) {
    .list-pills li {
        font-size: 1.2rem;
    }

    .list-pills li::before {
        width: 2rem;
        height: 2rem;
        font-size: 1.2rem;
    }
}

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

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

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

    .section-title {
        font-size: 2.5rem;
    }

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

    .text-label {
        font-size: 1.2rem;
    }
}

/* Knappar och speciella lankar
========================================================================== */
.btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.btn-wrapper.right {
    justify-content: flex-end;
}

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

.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 18rem;
    padding: 1.4rem 2.5rem;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
    border-radius: 5rem;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover,
.ContactSubmit:focus {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--primary-light-color));
}

.btn-primary-light-filled {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-light-color));
    background-color: rgb(var(--primary-light-color));
}

.btn-secondary-filled:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--secondary-dark-color));
    background-color: rgb(var(--secondary-dark-color));
}

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0;
    margin: .5rem;
    font-size: 0;
    color: rgb(var(--primary-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--white-color));
    transition: .3s ease;
}

.circle-icon:hover {
    color: rgb(var(--primary-color));
    background-color: transparent;
    border: 1px solid rgb(var(--primary-color));
}

.circle-icon em:before,
.circle-icon i:before {
    font-size: var(--base-size);
}

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

/* Farger
========================================================================== */
/* Bakgrundsfarger */
.bg-primary {
    background-color: rgb(var(--primary-color));
}

.bg-primary-light {
    background-color: rgb(var(--primary-light-color));
}

.bg-secondary {
    background-color: rgb(var(--secondary-color));
}

.bg-secondary-light {
    background-color: rgb(var(--secondary-color), .4);
}

.bg-white {
    background-color: rgba(255, 255, 255, 0.866);
}

.bg-green-img {
    background-image: url(/assets/images/animated-background-2000px.jpg);
    background-size: cover;
    min-height: 70rem;
}

@media only screen and (max-width: 1000px) {
    .bg-green-img {
        background-image: url(/assets/images/animated-background-2000px.jpg);
        background-size: cover;
        background-position: left;
    }
}

/* Text */
.text-primary {
    color: rgb(var(--primary-color));
}

.text-secondary {
    color: rgb(var(--secondary-color));
}

.text-white {
    color: rgb(var(--white-color)) !important;
}

.text-white-muted {
    color: rgb(var(--white-color), .6);
}



/* Grafiska element
========================================================================== */
.br-50 {
    border-radius: 50%;
}

.br-1 {
    border-radius: 1rem;
}

.br-2 {
    border-radius: 2rem;
}

.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

.waves .section-block {
    position: relative;
    background-image: url(/assets/images/wave-beige.png);
    background-size: 100% 50rem;
    background-repeat: no-repeat;
    background-position: center bottom, center bottom;
}

.waves-green .section-block {
    position: relative;
    background-image: url(/assets/images/wave-green.png);
    background-size: 100% 50rem;
    background-repeat: no-repeat;
    background-position: center bottom, center bottom;
}

@media only screen and (max-width: 580px) {
    .waves-green .section-block {
        background-position: center;
    }
}

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

.cards-wrapper.justify-center {
    justify-content: center;
}

.cards-wrapper.space-between {
    justify-content: space-between;
}

.cards-wrapper.align-center {
    align-items: center;
}

.card-item {
    text-decoration: none;
    width: 100%;
    margin: 0 0 2rem;
}

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

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

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

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

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

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

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

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

/* Cards 3 */
.cards-3 {
    justify-content: center;
}

.cards-3 .card-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background-color: rgba(var(--white-color));
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgb(var(--black-color), 0.12);
    transition: all .2s ease;
    overflow: hidden;
}

.cards-3 i {
    position: relative;
    margin: 0 3rem 0 -4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    font-style: normal;
    width: 9rem;
    height: 9rem;
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
    border-radius: 50%;
    border: 5px solid rgb(var(--primary-light-color))
}

.cards-3 .text-wrapper {
    flex: 1 1 0px;
}

.cards-3 .small-title {
    font-weight: 500;
}

.cards-3 p {
    line-height: 1.3;
    padding: 0;
}

.cards-3 a.card-item:hover {
    background-color: rgb(var(--primary-light-color));
    transition: all .2s ease;
}

.cards-3.certificate .card-item {
    min-height: 31rem;
}

.cards-3.certificate .image-wrapper {
    width: 100%;
    text-align: center;
}

.cards-3.certificate a {
    width: 100%;
}

.cards-3.certificate a img {
    height: 10rem;
}

.cards-3.certificate .modal-link img {
    height: unset;
}

@media only screen and (max-width: 750px) {
    .cards-3.certificate {
        margin-bottom: 3rem;
    }

    .cards-3.certificate .card-item {
        min-height: auto;
    }
}

/* Cards 11 */
.cards-11 .card-item {
    display: flex;
    flex-direction: column;
}

.cards-11 .image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background-color: rgb(var(--white-color));
}

.cards-11 img {
    position: absolute;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 5px solid rgb(var(--white-color));
    object-position: center top;
}

.cards-11 .text-wrapper {
    flex: 1 1 0px;
    margin: -40% 0 0;
    padding: calc(40% + 2rem) 2rem 2rem;
    background-color: rgb(var(--primary-color), .1);
    border-radius: 3px;
}

.cards-11 .small-title {
    font-size: 1.7rem;
    font-weight: 700;
}

.cards-11 p,
.cards-11 a {
    display: block;
    padding-bottom: .3rem;
    font-size: 1.4rem;
    line-height: 1.3;
    text-decoration: none;
}

/* 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%;
    border-radius: 2px;
}

.split-image.flex {
    display: flex;
    align-items: center;
}

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

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

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

/* Specifika bredder */
.split-wrapper .w-40 {
    width: 40%;
}

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

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

    .split-image,
    .split-wrapper .w-60,
    .split-wrapper .w-40 {
        width: 100%;
    }
}

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

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

/* 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: rgb(var(--primary-color));
    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;
    color: rgb(var(--white-color));
}

.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: 40rem;
    max-height: calc(100vh - 12rem); 
    padding: 0rem;
    margin: 0 2rem;
    background: rgb(var(--white-color));
    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;
    }
}


/* Header / Navigation
========================================================================== */
/* Header */
header {
    background-color: rgb(var(--white-color));
}

.IndexPage header:not(.scrolled) {
    background-color: rgb(var(--white-color));
}

header .container {
    padding: 0 5rem;
    margin: 0 auto;
}

/* Header logo */
.header-logo {
    flex-basis: 0;
    flex: 1 1 0px;
}

/* Nav */
.mainmenu {
    margin: 0 0 0 auto;
}

.TemplateMenu a {
    font-weight: 500;
    font-size: 1.5rem;
    padding: 0 2rem;
    color: rgb(var(--black-color));
}

.TemplateMenu a:hover,
header.scrolled .TemplateMenu a:hover {
    color: rgb(var(--primary-color));
}

header.scrolled .TemplateMenu a {
    color: rgb(var(--gray-dark-color));
}

/* CTA-wrapper */
.header-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-basis: 0;
    flex: 1 1 0px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1.5rem;
    line-height: 1;
    height: 4.5rem;
}

.header-cta-wrapper .circle-icon {
    width: 4.5rem;
    height: 4.5rem;
    background-color: rgb(var(--primary-color), .1);
}

/* Mobilmeny */
header.mobile-menu .header-logo {
    flex-grow: 1;
}

@media only screen and (min-width: 1025px) {
    .IndexPage {
        --menu-height: 10rem;
    }
}

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

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

    .hidden-mobile {
        display: none;
    }

    .header-cta-wrapper .btn {
        padding: 1rem 1.3rem;
        font-size: 1.2rem;
        height: auto;
    }
}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
}

.bg-image-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

img {
    pointer-events: none;
}

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

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

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

.parallax .section-block {
    padding-top: 20rem;
    padding-bottom: 20rem;
}

.parallax-bil {
    background-image: url(/assets/images/stad-bil-2000px.jpg);
}

.parallax-wave .section-block {
    background-color: rgb(var(--black-color), .2);
    background-image: url(/assets/images/hero-wave.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

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

/* Modal
========================================================================== */
.modal {
    max-width: 60rem;
    width: 100%;
    max-height: 75vh;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
}

.modal p {
    padding: 2rem;
}

.blocker {
    z-index: 100;
}

.modal a.close-modal {
    display: none;
}

.modal .custom-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: rgb(var(--white-color));
}

@media only screen and (max-width: 450px) {
    .modal p {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .blocker {
        padding: 1rem;
    }
}

/* 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: 37rem;
    max-height: 85vh;
    padding: 0rem;
    border-radius: 2rem;
    overflow: auto;
    transform: translate(-50%, -50%);
}

.section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 4rem;
    font-size: 3rem;
    cursor: pointer;
    color: rgba(var(--white-color));
}

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


/* ==========================================================================
Startsida
========================================================================== */
/* Top Section
========================================================================== */
.top-section {
    margin-top: calc(-1 * var(--menu-height));
}

.top-section {
    position: relative;
    background-color: rgb(var(--primary-light-color));
    overflow: hidden;
    background-image: url(/assets/images/hero-wave.svg);
    background-size: 100% 30rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.top-section .section-block {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding-top: 15rem;
    background-image: url(/assets/images/man-kvinna-800px.png);
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position: 90% bottom;
}

.top-section .section-block-wrapper {
    width: 100%;
}

.top-section h1 {
    font-size: 5rem;
    font-weight: 400;
    max-width: 80rem;
}

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

    .top-section .section-block {
        background-size: auto 60%;
    }

    .top-section h1 {
        font-size: 4rem;
        max-width: 60rem;
    }
}

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

    .top-section {
        background-size: 100% 10rem;
    }

    .top-section .section-block {
        align-items: flex-start;
    }

    .top-section .section-block {
        background-size: auto 50%;
    }

    .badge {

        padding-bottom: 4rem;
    }

    .start-split-img {
        display: none !important;
    }
}

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

    .top-section .btn {
        width: auto;
    }

    .badge {

        margin-top: -8rem !important;
        margin: auto;
        padding-bottom: 3rem;

    }
}

.EditMode .section-about .badge {
    margin-top: 0;
}

.badge {
    max-width: 300px;
    position: relative;
    margin-top: -30rem;
}

.section-about .section-block {
    padding-top: 20rem;
}

/* CTA kontakt
========================================================================== */
.cta-wrapper {
    padding: 4rem;
    background-color: rgb(var(--white-color));
    max-width: 100rem;
    border-radius: 1rem;
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 7%);
}

.cta-wrapper .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    margin-right: 1rem;
    margin-left: -4rem;
    border-radius: 0 8px 8px 0;
    background-color: rgb(var(--primary-color));
}

.cta-wrapper .icon-wrapper i {
    font-size: 3rem;
    color: rgb(var(--white-color));
}

.cta-wrapper .btn-wrapper {
    justify-content: flex-end;
}

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

    .cta-wrapper .icon-wrapper {
        width: 4rem;
        height: 4rem;
        margin-left: -2rem;
    }

    .cta-wrapper .icon-wrapper i {
        font-size: 1.6rem;
    }
}

/* Google Rating */
.google-wrapper {
    position: fixed;
}

.google-wrapper .dIqeze:not(:first-child) {
    display: none;
}

.google-wrapper .iTrzDS {
    flex-direction: row;
    flex-wrap: wrap;
    width: 12rem;
}

.google-wrapper .esTPaQ {
    width: 100%;
    justify-content: center;
}

.google-wrapper .lcHbuq {
    width: 16px !important;
    height: 16px !important;
}

.google-wrapper .jnjUbk {
    margin: 0 0 0 5px !important;
}

.google-wrapper .hfZexj {
    font-size: 14px;
}

.google-wrapper .kowxAi {
    width: 13px;
    height: 13px;
}

/* ==========================================================================
Undersidor - generellt för alla undersidor
========================================================================== */
/* Hero
========================================================================== */
.hero {
    background-image: url(/assets/images/hero-wave.svg);
    background-size: 100% 15rem;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.hero .section-block {
    padding-top: 0;
    padding-bottom: 0;
}

.hero .section-block-wrapper {
    padding-top: 20rem;
    padding-bottom: 10rem;
    background-image: url(/assets/images/man-kvinna-300px.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto 80%;
}

/* Hero Title */
.hero-title .section-block-wrapper {
    background: none;
    padding-bottom: 20rem;
}

@media only screen and (max-width: 580px) {
    .hero {
        background-size: 100% 7.5rem;
    }

    .hero .section-block-wrapper {
        padding-top: 10rem;
        padding-bottom: 20rem;
        background-size: auto 60%;
    }
}

/* ==========================================================================
Undersida > Vara tjanster
========================================================================== */
/* kivra loggan */
.kivra-logo {
    display: flex;
    flex-direction: row;
}

.kivra-logo img {
    max-width: 15rem;
    margin-right: 2rem;
}

@media only screen and (min-width:1001px) and (max-width: 1300px) {
    .service-split .split-content {
        width: 100%;
        columns: 2;
        column-gap: 3rem;
        padding: 0 0 4rem;
    }

    .service-split .split-image {
        width: 100%;
        height: 40rem;
    }
}

@media screen and (max-width: 450px) {
    .kivra-logo {
        flex-direction: column;
    }

    .kivra-logo img {
        margin-right: 0rem;
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
Undersida > Om oss
========================================================================== */
.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;
}
.team {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1300px) {
    .team .card-item {
        width: calc(100% / 3 - 2rem);
    }
}

@media screen and (max-width: 750px) {
    .team .card-item {
        width: calc(100% / 2 - 2rem);
    }
}

@media screen and (max-width: 450px) {
    .team .card-item {
        width: 100%;
        margin: 0 0 3rem;
    }
}

/* ==========================================================================
Undersida > Offertforfragan
========================================================================== */
.form-logo-wrapper {
    max-width: 45rem;
    position: absolute;
    bottom: 0;
    right: 0;
    margin-right: -10rem;

}

.cta-form .section-block-wrapper {
    max-width: 60rem;
    margin: -14rem auto 0;
    background-color: rgba(var(--white-color));
    box-shadow: 0 1rem 2rem rgba(var(--black-color), .1);
    border-radius: 8px 8px 4rem 4rem;
    overflow: hidden;
}

.cta-form .text-wrapper {
    background-color: rgb(var(--primary-color));
    padding: 2rem;
}

.cta-form .text-wrapper p {
    color: rgb(var(--white-color));
    padding: 0;
}

.cta-form .Contact {
    padding: 2rem;
}

/* Formular */
.ContactForm input[type="text"],
.ContactForm textarea {
    border-radius: 5px;
}

.ContactForm p {
    font-size: 1.4rem;
    line-height: 1.2;
}

/* Bekraftelseruta */
.ContactSentMessage {
    padding: 1rem 1rem 1rem 7rem;
    margin-bottom: 2rem;
    border-radius: .5rem;
    background-color: rgba(var(--primary-color), .2);
    background-image: url(/assets/images/icons/message-sent.svg);
    background-size: 4rem;
    background-position: 1.5rem center;
    background-repeat: no-repeat;
}

.ContactSentMessage p {
    padding: 0;
}

/* GDPR */
.ContactForm label {
    font-size: 1.5rem;
}

.ContactForm span {
    color: red;
}

.ContactForm input[type="checkbox"] {
    display: inline-block;
    width: unset;
    height: unset;
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

.field-4 {
    display: none !important;
}

.ContactForm select {
    border: 1px solid #dadada;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
}

.ContactForm select {
    width: 100%;
    height: 4rem;
}

@media only screen and (max-width: 1200px) {
    .form-logo-wrapper {
        max-width: 30rem;
        position: absolute;
        bottom: 0;
        right: 0;
        margin-right: -10rem;
        margin-bottom: 10rem;

    }
}

@media only screen and (max-width: 900px) {
    .form-logo-wrapper {
        max-width: 25rem;
        position: absolute;
        bottom: 0;
        right: 0;
        margin-right: -5rem;
        margin-bottom: 25rem;

    }
}

@media only screen and (max-width: 700px) {
    .form-logo-wrapper {
        max-width: 25rem;
        position: relative;
        margin: auto;
        margin-right: -6rem;
        margin-bottom: -5rem;

    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(114, 203, 58);
}

.footer-container {
    max-width: 150rem;
    padding: 0 5rem;
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 4rem;
    border-bottom: 1px solid rgb(var(--black-color), .2);
}

.footer-menu {
    margin: 0 0 6rem;
    padding: 0 6rem 0 0;
}

.footer-menu:first-child {
    margin: 0 auto 1rem 0;
}

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

.footer-top p,
.footer-top a,
.footer-top li {
    color: rgb(var(--white-color));
    font-weight: 400;
    font-size: 1.4rem;
}

.footer a:hover {
    color: rgb(var(--black-color));
}

.footer p.small-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(var(--white-color));
}
.footer-logo img{
    max-width: 12rem;
}
/* Sociala medier */
.social-menu {
    width: 100%;
    margin: 5rem 0 0;
}

.socials {
    display: flex;
}

.footer .circle-icon {
    width: 3rem;
    height: 3rem;
    font-size: 0;
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-color));
}

.footer em::before {
    font-size: 1.4rem;
}

.partner-wrapper li {
    max-width: 10rem;
    background: rgb(var(--white-color));
    padding: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p {
    font-size: 1.2rem;
    color: rgb(var(--black-color), .5);
}

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

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

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

    .footer-container {
        padding: 0 3rem;
    }

    /* Footer top */
    .footer-menu {
        width: 48%;
    }

    .footer-menu-large {
        width: 100%;
    }
}

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

    /* Footer top */
    .footer-menu,
    .footer-menu-large {
        width: 100%;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}

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