/* Pipers Bilvård & Marintvätt */

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 33, 55, 125;
    --primary-light-color: 88, 106, 213;
    --primary-dark-color: 12, 22, 83;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 130, 130, 130;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 130rem;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1000;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-color);
}

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

/* Paddings */
.p-2 .section-block,
.p-2:not(.section-wrapper) {
    padding: 2rem;
}

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

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

.pr-0 .section-block,
.pr-0:not(.section-wrapper) {
    padding-right: 0;
}

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

/* Margins */
.mb-3 {
    margin-bottom: 3rem;
}

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

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

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

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

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

.section-title {
    padding-bottom: .5em;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
}

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

.ingress {
    font-size: calc(var(--base-size) * 1.1);
}

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

/* List-check */
.list-check {
    padding: 0;
    list-style: none;
}

.list-check li::before {
    content: '\f00c';
    padding: 0 1rem 0 0;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: .8rem;
    font-family: 'Font Awesome 5 Pro';
}

/* Ovriga klasser */
.text-block {
    max-width: 70rem;
}

.text-block-center {
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

.text-italic {
    font-style: italic;
}

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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.4rem 2rem;
    margin: 7px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 4rem;
    text-align: center;
    text-decoration: none;
    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 {
    color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
}

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

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

.btn i {
    margin-right: 5px;
}

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

.arrow-link::after {
    content: ' \f105';
    display: inline-block;
    margin-left: 1rem;
    font-weight: 400;
    font-family: 'Font Awesome 5 Pro';
    color: rgb(var(--primary-color));
    transition: transform .4s ease;
}

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

.arrow-link.text-white::after {
    color: rgb(var(--white-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(--white-color));
    text-decoration: none;
    border-radius: 50%;
    background-color: rgb(var(--primary-dark-color));
    transition: .3s ease;
}

.circle-icon:hover {
    background-color: rgb(var(--primary-light-color));
}

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

/* Pulse btn */
.pulse-btn,
.newsletterform .ContactSubmit,
.section-auto-modal.newsletterform .ContactSubmit {
    box-shadow: 0 0 0 0 rgb(var(--bg-color));
    -webkit-animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

.btn-white-filled.pulse-btn,
.section-auto-modal.newsletterform .ContactSubmit {
    --bg-color: var(--white-color);
}

.btn-primary-filled.pulse-btn,
.newsletterform .ContactSubmit {
    --bg-color: var(--primary-color);
}

@-webkit-keyframes pulsing {
	to { box-shadow: 0 0 0 20px rgba(var(--bg-color), 0); }
}

@-moz-keyframes pulsing {
	to { box-shadow: 0 0 0 20px rgba(var(--bg-color), 0); }
}

@-ms-keyframes pulsing {
	to { box-shadow: 0 0 0 20px rgba(var(--bg-color), 0); }
}

@keyframes pulsing {
	to { box-shadow: 0 0 0 20px rgba(var(--bg-color), 0); }
}

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Object position */
.of-wrapper .op-50-0 {
    object-position: 50% 0%;
}

/* Border radius */
.br-2 {
    border-radius: 2rem;
    overflow: hidden;
}

/* Google review */
body:not(.EditMode) .review-wrapper {
    z-index: 2;
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    border-radius: 2rem;
    box-shadow: 0 0 2rem rgb(var(--black-color), .2);
    background-color: rgb(var(--white-color));
}

@media only screen and (max-width: 680px) {
    /* Google review */
    body:not(.EditMode) .review-wrapper {
        display: none;
    }
}

/* Sticky-knapp i telefonen */
.btn-mobile {
    display: none;
}

@media only screen and (max-width: 680px) {
    .btn-mobile {
        z-index: 1;
        display: block;
        position: fixed;
        left: 50%;
        bottom: 2rem;
        transform: translateX(-50%);
    }
}

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image,
.bg-crossfade {
    position: relative;
    overflow: hidden;
}

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

/* Video */
.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Crossfade */
.fade-slider {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fade-slider div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fade-slider.slick-slider {
    position: absolute;
}

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

.cards-wrapper:not(.w-100) {
    margin-left: -1rem;
    margin-right: -1rem;
}

.card-item {
    text-decoration: none;
    transition: all .3s ease;
}

/* Card grow */
.cards-grow .card-item {
    display: flex;
    flex-direction: column;
}

.cards-grow .card-body {
    flex-grow: 1;
}

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

.cards-wrapper.w-100 .card-item {
    width: 100%;
    margin: 1rem 0;
}

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

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

@media only screen and (max-width: 750px) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

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

/* Card 1-1 */
.card-1-1 .card-item {
    border-radius: 1rem;
}

.card-1-1 .stars-wrapper {
    margin-bottom: 2rem;
}

.card-1-1 .stars-wrapper i {
    font-size: 2rem;
    color: #f5c128;
}

/* Card 2-2 */
.card-2-2 .card-item {
    border-radius: 1rem;
}

.card-2-2 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    margin-bottom: 2rem;
    border-radius: 50%;
}

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

.card-2-2 .card-footer {
    padding: 2rem 0 1rem;
}

/* Card 2-5 */
.card-2-5 .card-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid rgb(var(--gray-light-color));
    transition: .3s ease;
}

.card-2-5 a.card-item:hover {
    background-color: rgb(var(--gray-light-color));
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 5px;
}

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

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

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.split-content {
    width: calc(100% - 50rem);
    max-width: 50%;
    padding: 5rem;
}

.split-image {
    position: relative;
    z-index: 1;
    width: 50rem;
    height: 50rem;
    overflow: visible;
}

.split-image img {
    border-radius: 50%;
}

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

/* Split image som byter bild vid hover */
.with-preview {
    position: relative;
}

.with-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.with-preview .hidden {
    z-index: 1;
    opacity: 0;
    transition: .3s ease;
}

.with-preview:hover .hidden {
    opacity: 1;
}

@media screen and (max-width: 1300px) {
    .split-content {
        padding-top: 0;
        padding-bottom: 0;
    }
}

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

    .split-image {
        margin: 0 auto;
    }
}

@media screen and (max-width: 580px) {
    .split-image {
        width: 35rem;
        height: 35rem;
    }
}

@media screen and (max-width: 400px) {
    .split-image {
        width: 25rem;
        height: 25rem;
    }
}

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

body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 75rem;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 5px;
    overflow: auto;
    background: rgb(var(--primary-color));
    background: linear-gradient(136deg,rgba(var(--primary-dark-color), 1) 0%, rgba(var(--primary-color), 1) 56%, rgba(var(--primary-light-color), 1) 100%);
    transform: translate(-50%, -50%);
}

.section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
}

body:not(.EditMode) .section-auto-modal.newsletterform .icon-bg {
    top: 0;
    left: 1rem;
}

.section-auto-modal.newsletterform .icon-bg i {
    font-size: 12rem;
}

.section-auto-modal .ContactSubmit {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--white-color));
}

.section-auto-modal .ContactSubmit:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    background-color: transparent;
}

.section-auto-modal .ContactSentMessage{
    filter: invert();
    background: none;
    border: 0.1rem solid rgb(var(--black-color));
    border-radius: 2rem;
}
@media only screen and (max-width: 580px) {
    body:not(.EditMode) .section-auto-modal .section-block {
        padding: 3rem 2rem;
    }
}

/* Header / Navigation
========================================================================== */
header.scrolled {
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
}

/* Nav */
.TemplateMenu a {
    font-weight: 600;
    font-size: 1.4rem;
    color: rgb(var(--black-color));
}

/* CTA */
.header-cta-wrapper {
    z-index: 9;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0 0 0 4rem;
    list-style: none;
}

.header-cta-wrapper li {
    margin: 0 .5rem;
}

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

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

    /* CTA */
    .header-cta-wrapper {
        margin: 0;
    }

    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
        font-size: 1.3rem;
        white-space: nowrap;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--menu-height));
    background-color: rgb(var(--black-color), .45);
    background-image: url(/assets/images/graphics/wave.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

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

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

.top-section .section-title {
    font-size: 6rem;
    font-weight: 800;
}

.top-section .btn:hover {
    color: rgb(var(--white-color));
}

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

@media only screen and (max-width: 680px) {
    .top-section .btn {
        display: none;
    }
}

@media only screen and (max-width: 580px) {
    .top-section {
        padding-bottom: 10rem;
        background-size: 100% 5rem;
    }

    .top-section .section-title {
        font-size: 3rem;
    }
}

/* FAQ
========================================================================== */
.accordion-item {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 1rem;
    transition: .3s ease;
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    color: rgb(var(--primary-color));
    transition: .5s ease;
}

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

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

.accordion-body {
    padding: 0 2rem 2rem;
}

.accordion-body p {
    font-size: 1.5rem;
}

@media only screen and (max-width: 800px) {
    .accordion-wrapper.w-50 .accordion-item {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }

    .accordion-header::after {
        right: 1rem;
    }

    .accordion-header .small-title {
        font-size: 1.6rem;
    }

    .accordion-body {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Instagram
========================================================================== */
#eapps-instagram-feed-1 .eapps-instagram-feed-posts-item {
    border-radius: 2rem;
    overflow: hidden;
}

/* CTA
========================================================================== */
.section-cta {
    background: linear-gradient(to bottom, rgb(var(--white-color)) 50%, rgb(var(--primary-color)) 50%);
}

.section-cta.gray-light {
    background: linear-gradient(to bottom, rgb(var(--gray-light-color)) 50%, rgb(var(--primary-color)) 50%);
}

.section-cta .section-block-wrapper {
    position: relative;
    padding: 7rem 2rem;
    border-radius: 3rem;
    box-shadow: 0 0 4rem 0 rgba(var(--black-color), .07);
    background-color: rgb(var(--white-color));
}

/* Formular */
.newsletterform .ContactForm {
    max-width: 40rem;
    margin: 2rem auto 0;
}

.newsletterform .ContactForm p {
    display: none;
}

.newsletterform .ContactForm > div {
    margin-bottom: 1.5rem;
}

.newsletterform .ContactSubmit {
    display: block;
    width: 20rem;
    padding: 1.2rem 2rem;
    margin: 0 auto;
}

/* Ikon */
body:not(.EditMode) .newsletterform .icon-bg {
    opacity: .4;
    position: absolute;
    top: 3rem;
    left: 3rem;
    transform: rotate(-12deg);
}

.newsletterform .icon-bg i {
    font-size: 15rem;
}

@media only screen and (max-width: 580px) {
    .section-cta .section-block-wrapper {
        padding: 3rem 2rem;
    }
    
    /* Formular */
    .newsletterform .ContactForm > div {
        margin-bottom: 1rem;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 60vh;
    background-color: rgb(var(--black-color), .3);
    background-image: url(/assets/images/graphics/wave.svg);
    background-size: 100% 5rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.hero .section-block {
    width: 100%;
    padding-top: 10rem;
    padding-bottom: 15rem;
}

.hero .section-title {
    display: block;
    font-size: 4.6rem;
}

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

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

    .hero .small-title {
        font-size: 1.6rem;
    }

    .hero .section-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
Undersida: Vara tjanster
========================================================================== */
.title-price {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.title-price .price {
    padding: .3rem 1rem;
    margin-left: 5px;
    font-size: 1.3rem;
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--primary-light-color));
    background: rgb(vaR(--primary-dark-color));
    border-radius: 2rem;
    white-space: nowrap;
}

/* Taggar */
.tags-heading {
    display: none;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag {
    padding: .3rem 1.5rem;
    margin: .6rem .5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border: 1px solid rgb(var(--primary-color));
    border-radius: 2rem;
    cursor: pointer;
    transition: .5s ease;
}

.tag:hover,
.tag.tag-picked {
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

@media only screen and (max-width: 580px) {
    /* Taggar */
    .tags-wrapper {
        position: relative;
        max-width: 25rem;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

    .tags-heading {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }

    .tags-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: rgb(var(--white-color));
    }

    .tags-heading i {
        margin-left: 2rem;
    }

    .tags-list {
        display: none;
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: left;
        background: rgb(var(--white-color));
        box-shadow: 1px 1px 10px rgba(var(--black-color), .1);
    }

    .tags-wrapper.opened .tags-list {
        display: block;
    }

    .tags-wrapper .tag {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        letter-spacing: normal;
        text-transform: initial;
        box-shadow: none;
        border-radius: 0;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .section-block-wrapper {
    justify-content: space-between;
}

.section-contact .col-1 {
    max-width: calc(100% - 50rem);
}

.section-contact .col-2 {
    width: 50rem;
    padding: 3rem;
    border-radius: 2rem;
    background-color: rgb(var(--gray-light-color));
}

.ContactForm p {
    margin-left: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.ContactForm input,
.ContactForm textarea {
    border-radius: 2rem;
}

.ContactForm .submit-button-container {
    margin-bottom: 0;
}

@media only screen and (max-width: 1050px) {
    .section-contact .col-1 {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .section-contact .col-2 {
        width: 100%;
    }
}

/* Karta
========================================================================== */
.section-map iframe {
    width: 100%;
    height: 50rem;
}
/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background-color: rgb(var(--primary-color));
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 5rem;
}

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

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

.footer .text-label {
    padding: 0 0 1rem;
    color: rgb(var(--white-color));
    line-height: 1;
}

.footer-submenu {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

.footer-top p,
.footer-top a {
    font-size: 1.4rem;
    color: rgb(var(--white-color));
    text-decoration: none;
}

.footer-top a:hover {
    color: rgb(var(--primary-light-color));
    text-decoration: none;
}

/* Sociala medier */
.footer-socials {
    display: flex;
    align-items: center;
}

.footer-socials::before,
.footer-socials::after {
    position: relative;
    display: inline-block;
    content: '';
    flex: 1 1 0%;
    border-top: 1px solid rgb(var(--white-color));
}

.footer-socials::before {
    margin-right: 2rem;
}

.footer-socials::after {
    margin-left: 2rem;
}

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgb(var(--white-color));
}

/* WebbEss Stamp  */
.footer .webbess-stamp {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

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

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

    .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%;
    }
}

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

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

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

    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}