/* Kleen hem i Stockholm AB */

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

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

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

    /* 	Colors */
    --primary-color: 139, 155, 135; /* Gamla färgen (94, 177, 68) */
    --secondary-color: 158, 158, 158; /* Gamla färgen (2, 127, 188) */
    --secondary-light-color: 230, 230, 230;
    --black-color: 1, 1, 1;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: 255, 255, 255;
    --menu-color: rgb(var(--primary-color));
}

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

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

/* Specifika paddings */
.p-3{
    padding: 3rem;
}
.pt-0 .section-block {
    padding-top: 0;
}

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

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

.pb-5 .section-block {
    padding-bottom: 5rem;
}

.pl-0 .section-block {
    padding-left: 0;
}

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

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

.pr-0 .section-block {
    padding-right: 0;
}

.pr-1 .section-block {
    padding-right: 1rem;
}
.mb-3{
    margin-bottom: 3rem;
}

/* Specifika bredder */
.mw-1200 .section-block-wrapper {
    max-width: 120rem;
}

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

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

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

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

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

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

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
}

.bg-video-wrapper video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

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

/* Rubriker */
.text-label {
    padding-bottom: .9em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.section-title {
    padding-bottom: .3em;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.3;
}

.small-title {
    padding-bottom: .5em;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.text-title {
    font-weight: 800;
}

.ingress {
    font-size: 1.9rem;
}

/* Brodtext och lankar */
p {
    font-weight: 400;
    color: #333;
}

a {
    color: rgb(var(--primary-color));
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
}

/* ovriga klasser */
.text-block-center{
    margin: auto;
    max-width: 80rem;
}
.text-bold {
    font-weight: 700;
}

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

.script {
    font-family: 'Allura', cursive;
    font-weight: 400;
}

/* Listor */
.styled-list {
    list-style: none;
}

.styled-list li {
    position: relative;
    padding-left: .5rem;
    font-size: 1.6rem;
}

.styled-list li::before {
    content: '\f00c';
    position: absolute;
    top: 50%;
    left: -2.5rem;
    color: rgb(var(--primary-color));
    font-weight: 300;
    font-size: 1.5rem;
    font-family: 'Font Awesome 5 Pro';
    transform: translateY(-50%);
}

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 1.3rem 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 8px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    cursor: pointer;
}

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

.btn-primary-filled:hover,
.ContactSubmit:hover {
    border: 1px solid rgb(var(--secondary-color));
    background-color: rgb(var(--secondary-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: #FFF;
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    transition: .3s ease;
}

.circle-icon:hover {
    color: #FFF;
    background-color: rgb(var(--secondary-color));
}

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

/* Bouncing arrow */
.bouncing-arrow {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: -0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50% 50% 0 0;
    background-color: rgb(255, 255, 255);
    transform: translateX(-50%);
}

.bouncing-arrow::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: .5rem;
    left: .5rem;
    width: 5rem;
    height: 5rem;
    background-color: rgb(var(--primary-color));
    border-radius: 50%;
}

.bouncing-arrow i {
    color: rgb(255, 255, 255);
    font-size: 3rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-1rem);
    }

    60% {
        transform: translateY(-.5rem);
    }
}

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

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

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

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

.bg-blue-white {
    background-image: linear-gradient(#E7EEF5 50%, white 50%);
}

.bg-white-blue {
    background-image: linear-gradient(to top, #E7EEF5 50%, white 50%);
}

.bg-white-gray {
    background-image: linear-gradient(to top, #e6e6e6 50%, white 50%);
}

.bg-blue-white {
    background-image: linear-gradient(to bottom, #e7eef5 50%, #FFF 50%);
}

.bg-gray-white {
    background-image: linear-gradient(to bottom, #e6e6e6 50%, #FFF 50%);
}

.bg-white-blue-10 {
    background-image: linear-gradient(to bottom, #FFF 10rem, #e7eef5 10rem);
}

.bg-white-gray-10 {
    background-image: linear-gradient(to bottom, #FFF 10rem, #e6e6e6 10rem);
}

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

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

.text-white {
    color: #fff;
}

.box-shadow{
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, .05);
}
.br-1{
    border-radius: 1rem;
}

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

/* Cards 7 */
.cards-7-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.cards-7-wrapper .card-item {
    position: relative;
    flex: 1 1 32rem;
    margin: 1rem;
    border-radius: .8rem;
    background: #FFF;
    transition: all .3s ease;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .05);
}

.cards-7-wrapper .image-wrapper {
    height: 20rem;
    border-radius: .8rem .8rem 0 0;
    overflow: hidden;
}

.cards-7-wrapper .text-wrapper {
    padding: 2rem 3rem;
}

.cards-7-wrapper .small-title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 1px dotted rgb(var(--primary-color));
}

.cards-7-wrapper .card-item p {
    font-size: 1.4rem;
}

.cards-7-wrapper .card-item:hover {
    transform: translateY(-1rem);
    transition: all .3s ease;
}

@media only screen and (max-width:700px) {
    .cards-7-wrapper .card-item {
        margin: 1rem 0;
    }
}


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

.cards-10-wrapper .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 40rem;
    margin: 1rem;
    border-radius: 5px;
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    box-shadow: 0 1rem 2rem rgb(0 0 0 / 5%);
}

.cards-10-wrapper .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.cards-10-wrapper .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border-radius: 5px;
}

.cards-10-wrapper .card-item:hover .image-wrapper::after {
    background: rgba(0, 0, 0, 0.6);
}

.cards-10-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.cards-10-wrapper .text-wrapper {
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 5rem;
}

.cards-10-wrapper p {
    max-width: 80%;
    margin: 0 auto;
}

.cards-10-wrapper .btn-primary-filled {
    margin-top: 2rem;
}

@media only screen and (max-width:550px) {
    .cta-section .section-block {
        padding: 4rem 2rem 0;
    }

    .cards-10-wrapper .text-wrapper {
        padding: 4rem 2rem;
    }
}

/* End andra rutan*/
.cards-10-wrapper .card-item .text-wrapper * {
    color: #FFF;
}

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


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

    .cards-10-wrapper p:not(.btn) {
        max-width: 100%;
        font-size: 1.5rem;
    }

    .cta-section .cards-10-wrapper {
        margin: 0rem;
    }
}

@media only screen and (max-width:550px) {
    .card-item .text-wrapper {
        padding: 1.5rem;
    }

}

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

.cards-13-wrapper .card-item {
    width: calc((100% / 2) - 4rem);
    padding: 4rem;
    margin: 2rem;
    border-radius: 5px;
    outline-offset: -1rem;
    text-decoration: none;
    text-align: center;
    transition: all .3s ease;
}

.cards-13-wrapper .card-item {
    background-color: rgb(var(--primary-color));
}

.cards-13-wrapper * {
    color: #FFF;
}

.cards-13-wrapper .card-item:hover {
    transform: translateY(-1rem);
}

@media only screen and (max-width: 700px) {
    .cards-13-wrapper .card-item {
        width: 100%;
        margin: 2rem 0;
    }
}



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

.split-image.mh-55 {
    max-height: 55rem;
}

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

/* Speciella margins */
.split-wrapper .mt--20 {
    margin-top: -20rem;
}

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

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

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

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

/* Split med bakgrund */
.split-wrapper.split-background {
    background-color: rgb(var(--secondary-color));
}

/* Split image med grid */
.split-images-grid {
    justify-content: space-between;
    background-color: rgb(var(--secondary-light-color));
    border-radius: .8rem;
    padding-right: 1rem;
}

.split-images-grid .split-content {
    padding: 7rem 4rem;
    border-radius: 2px;
    width: calc(50% - 1rem);
}

.split-image-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    gap: 1rem;
    width: 50%;
    margin: -1rem 0;
}

.split-image-grid .grid-image {
    position: relative;
    width: 100%;
}

.split-image-grid>.grid-image:nth-child(1) {
    grid-column: 1 / 1;
    -ms-grid-column: 1;
    grid-row: 1 / 3;
    -ms-grid-row: 1;
}

.split-image-grid>.grid-image:nth-child(2) {
    grid-column: 2 / 2;
    -ms-grid-column: 2;
    grid-row: 1 / 1;
    -ms-grid-row: 1;
}

.split-image-grid>.grid-image:nth-child(3) {
    grid-column: 2 / 2;
    -ms-grid-column: 2;
    grid-row: 2 / 2;
    -ms-grid-row: 2;
}

.split-image-grid .split-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

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

    .split-content,
    .split-wrapper .w-60,
    .split-wrapper .w-40,
    .split-wrapper .w-80,
    .split-wrapper .w-20 {
        width: 100%;
    }

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

    /* Speciella margins */
    .split-wrapper .mt--20 {
        margin-top: 0;
    }

    /* Split image med grid */
    .split-images-grid {
        padding: 1rem;
    }

    .split-images-grid .split-content {
        width: 100%;
    }

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

    .split-image-grid .split-image {
        position: relative;
    }

}

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

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

    /* Split image med grid */
    .split-images-grid .split-content {
        padding: 2rem 0rem;
    }

    .split-images-grid {
        padding: 0rem;
    }

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

}

/* Bakgrundsbild
========================================================================== */
.bg-image {
    position: relative;
    background: linear-gradient(90deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);
}

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

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

/* Halvsektionsparallax */
.parallax-half {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-half .section-block {
    padding-top: 55rem;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), linear-gradient(to top, white, white);
    background-size: 100% 55rem, 100% auto;
    background-position: center top, center 55rem;
    background-repeat: no-repeat;
}

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

@media only screen and (max-width: 1100px) {
    .parallax-half .section-block {
        padding-top: 40rem;
        background-size: 100% 35rem, 100% auto;
        background-position: center top, center 35rem;
    }
}

@media only screen and (max-width: 1100px) {
    .parallax-half .section-block {
        padding-top: 40rem;
    }
}

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

header.scrolled {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1);
    transition: all .2s ease;
}

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

/* nav */
nav.mainmenu a {
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #333;
}

nav.mainmenu a:hover {
    color: rgb(var(--primary-color));
}

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: .9rem 2.5rem;
    margin: 0 1rem;
}

/* Mobilmeny */
@media only screen and (max-width: 550px) {

    header .container {
        padding: 0 0 0 1rem;
    }

    .header-cta-wrapper .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 4rem;
        height: 4rem;
        padding: 0;
        margin: .5rem;
        font-size: 0;
        color: #FFF;
        text-decoration: none;
        border-radius: 50%;
        background-color: rgb(var(--primary-color));
        transition: .3s ease;
    }

    .header-cta-wrapper .btn em {
        display: inline-block;
        font-size: 1.5rem;
        margin-right: -0.3rem;
    }
}


/* 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(0, 0, 0, 0.3);
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

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

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    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);
}

/* Innehall */
.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: rgb(230, 230, 230);
    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;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100% !important;
    min-height: 80vh;
    background: linear-gradient(to right top, rgba(51, 51, 51, 0.6), .5);
}

.top-section h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    padding-bottom: 1.5rem;
}

.top-section .sub-usp {
    display: block;
    font-size: 6rem;
    padding: .4em 0 0;
    transform: rotate(-2deg);
}

.top-section p {
    color: #fff;
    max-width: 60ch;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
}

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

@media only screen and (max-width: 1100px) {
    .top-section .sub-usp {
        font-size: 5rem;
    }
}

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

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

    .top-section .sub-usp {
        font-size: 3.5rem;
    }

    .top-section .btn-wrapper {
        flex-direction: column;
    }

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


/* Sektion Omdomen (.section-reviews)
========================================================================== */
/* Review Widget */

.review-widget {
    padding: 4rem 4rem 10rem 4rem;
    border-radius: .8rem;
    overflow: hidden;
}

.review-split {
    display: flex;
    justify-content: space-between;
    height: 20rem;
}

.review-split .text-block {
    align-self: end;
    padding-left: 2rem;
}

.review-widget iframe {
    margin-top: 3rem;
}


@media only screen and (max-width:580px) {
    .review-widget {
        padding: 3rem 1rem 10rem;
    }

    .review-split {
        display: block;
        height: 30rem;
    }

    .review-split .text-block {
        padding-left: 0;
    }
}

/* Sektion Tjanster (.section-services)
========================================================================== */
.section-services .cards-7-wrapper {
    margin-bottom: 5rem;
}

.section-services .fa-arrow-right {
    font-size: 1.6rem;
    padding-right: .5rem;
}

.price {
    position: absolute;
    top: 1.5rem;
    left: -2px;
    padding: .5rem 1rem;
    background-color: rgb(var(--primary-color));
    border-radius: 0 5px 5px 0;
    color: rgb(255, 255, 255);
    font-size: 1.4rem;
}

/* Rutavdrag
========================================================================== */
.rutavdrag .of-wrapper img {
    min-width: 50%;
}

@media only screen and (max-width: 1000px) {
    .rutavdrag .of-wrapper img {
        width: 50%;
        height: 50%;
    }
}

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

/* Hero
========================================================================== */

.hero {
    position: relative;
    min-height: 50rem;
    background: linear-gradient(to right top, rgba(var(--black-color), .6) 0%, rgba(var(--black-color), .3) 100%);
}

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

.hero-img-text-wrapper {
    max-width: 70rem;
    margin: auto 0 0;
}

.SubPage h1 {
    font-size: 4rem;
    text-align: left;
}

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


/* ==========================================================================
Undersida > Om oss
========================================================================== */
.about-parallax {
    background-image: url(/assets/images/fritid-natur-2000px.jpg);
    min-height: 40rem;
}

.section-review iframe {
    margin-top: -5rem;
}

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

/* ==========================================================================
Undersida > Tjanster
========================================================================== */

.SubPage .cards-7-wrapper.services .card-item {
    display: flex;
    flex-direction: column;
    flex: 1 1 34rem;
}

.SubPage .cards-7-wrapper.services .text-wrapper {
    padding: 1rem 2rem 2rem;
}

.SubPage .cards-7-wrapper.services .text-wrapper p {
    padding: 2rem 3rem;
}

.SubPage .cards-7-wrapper.services .btn-wrapper {
    margin: auto 0 0;
    padding: 0rem 3rem 2rem;
}

.SubPage .cards-7-wrapper.services .small-title {
    background-color: rgb(var(--primary-color));
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 2rem;
    color: #fff;
}

@media only screen and (max-width: 600px) {
    .SubPage .cards-7-wrapper.services .text-wrapper {
        padding: 1rem;
    }

}

/* Faq
========================================================================== */
.section-faq .section-title {
    padding-bottom: 3rem;
}

.accordion-item {
    padding-bottom: 2rem;

}

.accordion-question {
    position: relative;
    padding: 0 2rem 1rem;
    border-bottom: 1px solid rgb(var(--primary-color));
    cursor: pointer;
}

.accordion-question::after {
    content: "\f078";
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 1.7rem;
    font-family: "Font Awesome 5 Pro";
    transition: .5s ease;
}

.accordion-item.active .accordion-question::after {
    transform: rotate(180deg);
}

.accordion-question p {
    padding-right: 2.5rem;
}

.accordion-answer {
    padding: 2rem;
}


/* ==========================================================================
Undersida >  Berakna pris
========================================================================== */

.price-form-wrapper {
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 4rem;
    background: #FFF;
}

.price-form-wrapper .btn {
    width: 100%;
    max-width: 100%;
    display: block;
    animation: pulse 5s infinite;
}

.price-form-wrapper .btn:hover {
    cursor: pointer;
}

.price-wrapper {
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 6rem 5rem;
    max-width: 80rem;
    border-radius: 1rem;
    margin: 0 auto;
}

.price-wrapper .section-title,
.price-wrapper p {
    text-align: center;
}

.price-wrapper p {
    max-width: 60rem;
    margin: 0;
    font-size: 1.6rem;
}

.price-wrapper .js-kvm {
    border: none;
    border-bottom: 1px solid #6c8685;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    width: 100%;
    text-align: center;
}

.price-result-wrapper {
    visibility: hidden;
    margin-top: -5rem;
    transition: .3s ease;
}

.price-result-wrapper.show {
    visibility: visible;
    margin-top: 1.5rem;
}

.price-result-wrapper p {
    font-size: 2rem;
    font-family: inherit;
    max-width: none;
}

.price-result-wrapper .bold-text,
.js-price-result {
    color: rgb(var(--primary-color));
    font-weight: 700;
}

@media only screen and (max-width: 630px) {
    .price-wrapper {
        padding: 4rem 2rem;
    }
}
/* ==========================================================================
Undersida > Flyttstad
========================================================================== */
.section-offert .col-1{
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, .05);
            padding: 3rem;
            background: rgb(var(--white-color));
}

.section-offert .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-offert .ContactForm div,
div.select-wrapper {
    width: 49%;
}

.section-offert .ContactForm .ContactFormMessage,
.section-offert div.select-wrapper,
.section-offert .submit-button-container {
    width: 100% !important;
}

@media only screen and (max-width: 600px) {
   .section-offert .ContactForm div {
        width: 100%;
    }
}


/* ==========================================================================
Undersida > Kontakta oss 
========================================================================== */
.grecaptcha-badge {
    display: none;
}

.contact-form .cards-13-wrapper {
    padding-bottom: 3rem;
}

.ContactForm p {
    color: rgb(var(--primary-color));
    line-height: 1.8;
    font-weight: 600;
    font-size: 1.4rem;
}

.ContactForm input[type="text"],
.ContactForm textarea,
.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm textarea:not(.illegal),
.ContactForm select:not(.illegal) {
    border: none;
    background-color: #f3f5f5;
}

.ContactForm input[type="text"].illegal,
.ContactForm textarea,
.ContactForm input[type="text"].illegal,
.ContactForm input[type="email"].illegal,
.ContactForm textarea.illegal,
.ContactForm select.illegal {
    border: none;
    background-color: #FFECEC;
}



.map {
    font-size: 0;
}


@media only screen and (max-width: 1024px) {
    .map iframe {
        height: 40rem;
    }
}

@media only screen and (max-width: 600px) {
    .map iframe {
        height: 30rem;
    }
}



/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--secondary-light-color));
}

.footer-container {
    max-width: 160rem;
    padding: 0 2rem;
    margin: 0 auto;
}

.footer img {
    max-width: 12rem;
    margin-top: 2rem;
}

.footer :is(p, a) {
    color: rgba(0, 0, 0, .6);
}

.footer a:hover {
    color: rgb(0, 0, 0);
}

.footer .small-title {
    color: rgb(var(--primary-color));
}

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

.footer-menu {
    width: 20%;
    margin: 1.5rem 0;
}


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

.footer-menu.smaller {
    width: 10%;
    margin: 1.5rem 0;
}

.footer-menu.smaller img {
    max-width: 10rem;
}

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

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

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 2rem;
}

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

.footer-bottom .circle-icon {
    width: 3rem;
    height: 3rem;
}

.footer-bottom em::before {
    font-size: 1.4rem;
}
/* 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;
    margin-top: -10px;
}


@media only screen and (max-width: 1024px) {
    /* Footer top */
    .footer-menu.smaller {
        width: 30%;
    }

    .footer-menu{
        width: 48%;
    }

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

    .footer-menu-large p {
        max-width: 55rem;
    }
}

@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;
        padding: 2rem 0;
    }

    .footer-bottom .socials {
        margin-bottom: 1.5rem;
    }
}

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

    /* Footer top */
    .footer-top {
        padding: 5rem 0 4rem 0;
    }

    /* Footer bottom */
    .footer-bottom {
        padding: 2rem 0;
    }
}