/* Vällingby städ och flytt AB */

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 5, 44, 136;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 198, 201, 207;
    --gray-light-color: 233, 234, 236;
    --white-color: 255, 255, 255;

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

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

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

@media only screen and (max-width: 580px) {
    :root {
        --base-size: 1.5rem;
    }
}

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

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

.p-5 .section-block,
.p-5:not(.section-wrapper) {
    padding: 5rem;
}

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

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

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

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

/* Ovriga klasser */
.of-hidden {
    overflow: hidden;
}

.nowrap {
    white-space: nowrap;
}

@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: 'Open Sans', sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
}

.section-title {
    padding-bottom: .4em;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Cormorant Garamond", serif;
}

.small-title {
    padding-bottom: .3em;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: "Cormorant Garamond", serif;
}

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

/* Listor */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-pills li {
    display: flex;
    align-items: center;
    padding: .3rem 1.2rem;
    margin: .2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 4rem;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-color));
}

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

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

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

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

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

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

    /* Rubriker */
    .section-title {
        font-size: 4.3rem;
    }
}

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

    /* Rubriker */
    .section-title {
        font-size: 3.8rem;
    }

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

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

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

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

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

/* 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: 5px;
    font-weight: 600;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 3px;
    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(--black-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));
    background-color: transparent;
}

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

.btn.arrow-link {
    font-size: 1.3rem;
}

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

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

/* 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-color));
    transition: .3s ease;
}

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

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

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

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

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

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

/* Gradients */
.bg-white-gray-light {
    background-image: linear-gradient(to bottom, rgb(var(--white-color)) 58%, rgb(var(--gray-light-color)) 58%);
}

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

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

/* Grafiska element
========================================================================== */
/* Border radius */
.br-05 {
    border-radius: 5px;
    overflow: hidden;
}

/* Citat-tecken pa p-tagg */
.icon-quote::before {
    content: '\f10d';
    z-index: 0;
    position: absolute;
    margin: -4rem 0 0 -4rem;
    font-weight: 900;
    font-size: 6rem;
    color: rgb(var(--primary-color), .1);
    font-family: 'Font Awesome 5 Pro';
}

@media only screen and (max-width: 980px) {
    .icon-quote::before {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 750px) {
    .icon-quote::before {
        margin: -1.5rem 0 0 -1rem;
    }
}

/* Bakgrundsbilder och videos 
========================================================================== */
.bg-image,
.bg-video {
    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;
}

/* Halvsektionsparallax */
.parallax-half {
    position: relative;
}

.parallax-half::after {
    content: '';
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 70%;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-size: cover;
}

.parallax-half .section-block {
    z-index: 2;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(var(--black-color), 0.6) 70%, rgb(var(--white-color)) 70%);
}

/* Bilder */
.parallax-boxes::after {
    background-image: url('/assets/images/vardagsrum-2000px.jpg');
}

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

/* 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: .3s ease;
}

/* Bredder */
.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,
.cards-wrapper .card-item.w-50 {
    width: calc((100% / 2) - 2rem);
    margin: 1rem;
}

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

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

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

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

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

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

    /* Paddings */
    .cards-wrapper .p-3,
    .cards-wrapper .p-5 {
        padding: 2rem;
    }
}

/* Card 1-1 */
.card-1-1 a.card-item:hover {
    background-color: rgb(var(--gray-color));
}

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

.card-2-1 .card-header i,
.card-2-1 .card-header p {
    font-size: 4rem;
}

/* Cards 3-5 */
.card-3-5 .card-item {
    position: relative;
}

.card-3-5 .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-3-5 .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--black-color), .4);
    transition: .3s ease;
}

.card-3-5 .card-item:hover .image-wrapper::after {
    background: rgba(var(--black-color), .6);
}

.card-3-5 .card-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30rem;
    border: 1px solid rgb(var(--white-color));
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.card-3-5 .card-footer {
    z-index: 1;
    position: relative;
    display: flex;
    height: 3rem;
}

.card-3-5 .card-footer::before,
.card-3-5 .card-footer::after {
    position: relative;
    display: inline-block;
    content: '';
    flex: 1 1 0px;
    border-bottom: 1px solid rgb(var(--white-color));
    border-radius: 0 0 5px 5px;
}

.card-3-5 .card-footer::before {
    margin-right: 2rem;
    border-radius: 0 0 0 5px;
    border-left: 1px solid rgb(var(--white-color));
}

.card-3-5 .card-footer::after {
    margin-left: 2rem;
    border-radius: 0 0 5px 0;
    border-right: 1px solid rgb(var(--white-color));
}

.card-3-5 .arrow-link {
    align-self: flex-end;
    font-size: 1.4rem;
    transform: translateY(50%);
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

.split-content {
    width: 50%;
    padding: 8rem;
}

.split-image {
    width: 50%;
}

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

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

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

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

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

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

/* header:not(.scrolled) {
    background-color: transparent;
} */

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

/* Nav */
.TemplateMenu a {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(var(--black-color));
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* header:not(.scrolled, .mobile-menu) .TemplateMenu>li:not(.active)>a:not(:hover) {
    color: rgb(var(--white-color));
} */

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

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

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

/* Mobilmeny */
.mobile-menu .TemplateMenu li {
    padding: 0 2rem;
}

.mobile-menu .TemplateMenu a {
    font-size: 1.5rem;
}

header.mobile-menu .TemplateMenu li.active>a,
header.mobile-menu .TemplateMenu a:hover {
    color: rgb(var(--primary-color));
    font-weight: 600;
}

.mobile-menu .TemplateMenu ul,
.mobile-menu .TemplateMenu>li:hover>ul,
.mobile-menu .TemplateMenu>li>ul>li:hover>ul,
.mobile-menu .TemplateMenu>li>ul>li>ul>li:hover>ul {
    display: none;
}

.mobile-menu .expandable-li {
    position: relative;
}

.mobile-menu .TemplateMenu a {
    position: relative;
    display: inline-block;
    width: auto;
}

.mobile-menu .expandable:after {
    display: none
}

.mobile-menu .expandable-li::after {
    content: '\f0d7';
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    margin-left: 7px;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Font Awesome 5 Pro';
    color: rgb(var(--black-color));
    cursor: pointer;
    transform: translateY(-1px);
}

@media only screen and (max-width: 580px) {
    /* CTA */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
        letter-spacing: 0;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--menu-height));
    /* margin-top: calc(var(--menu-height) * -1); */
    background-color: rgb(var(--black-color), .5);
    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: 65rem;
}

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

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

/* Bouncing arrow */
.bouncing-arrow-wrapper {
    position: absolute;
    left: 50%;
    bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 15rem;
    height: 6rem;
    background-image: url(/assets/images/graphics/arrow-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    transform: translateX(-50%);
}

.bouncing-arrow {
    position: relative;
    top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    background-color: rgb(var(--primary-color), .2);
    border-radius: 50%;
    text-decoration: none;
}

.bouncing-arrow i {
    color: rgb(var(--primary-color));
    font-size: 2rem;
    font-weight: 300;
    transform: translatex(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-3px);
    }
}

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

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

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

    .top-section .bouncing-arrow-wrapper {
        display: none;
    }
}

/* Omdomen
========================================================================== */
/* Slider */
.scroll-wrapper.cards-wrapper {
    margin: 0 0 5rem;
}

.scroll-wrapper.cards-wrapper .slick-list {
    width: 100%;
    overflow: visible;
}

.scroll-wrapper.cards-wrapper .slick-track {
    display: flex;
}

.scroll-wrapper.cards-wrapper .card-item {
    display: flex;
    height: auto;
}

/* Card item */
.scroll-wrapper .card-item {
    display: flex;
    flex-direction: column;
    margin: 0 2rem 0 0;
}

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

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

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -4rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

.scroll-wrapper .slick-arrow::after {
    font-weight: 300;
    color: rgb(var(--white-color));
}

.scroll-wrapper .slick-next {
    right: 2rem;
}

.scroll-wrapper .slick-prev {
    left: auto;
    right: 6rem;
}

/* CTA
========================================================================== */
.cta-wrapper {
    padding: 10rem 4rem;
    outline: 1px solid rgb(var(--white-color));
    outline-offset: -11px;
    background-color: rgb(var(--black-color), .6);
}

.cta-wrapper .btn:hover {
    color: rgb(var(--white-color));
}

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

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 45rem;
    background-color: rgb(var(--black-color), .5);
}

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

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

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

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 25rem;
    }

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

/* ==========================================================================
Undersida: Flyttfirma / Flyttstad
========================================================================== */

/* Vanliga fragor
========================================================================== */
.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

.accordion-item {
    width: 100%;
    margin-bottom: 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-item.active .accordion-header::after {
    transform: rotate(180deg);
}

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

.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-body {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Offertforfragan
========================================================================== */
.section-offert .section-block-wrapper {
    max-width: 100rem;
    padding: 3rem;
    margin: 0 auto;
    border-radius: .5rem;
    background: rgb(var(--white-color));
}

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

.ContactForm p {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgb(var(--black-color));
}

.ContactForm>div.divider-field p {
    font-weight: 400;
}

.ContactForm input[type="text"],
.ContactForm input[type="number"],
.ContactForm input[type="email"],
.ContactForm input[type="tel"],
.ContactForm input[type="date"],
.ContactForm input[type="datetime-local"],
.ContactForm select,
.ContactForm option,
.ContactForm textarea {
    border-radius: 3px;
}

.section-offert .ContactForm>div {
    width: 49%;
}

.section-offert .ContactForm>div.w-100,
.section-offert .ContactForm>div.divider-field,
.section-offert .ContactForm div.submit-button-container {
    width: 100%;
}

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

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
/* Formular */
.section-contact .ContactForm {
    max-width: 100rem;
    padding: 3rem;
    margin: 0 auto;
    border-radius: .5rem;
    background: rgb(var(--gray-light-color));
}

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

.section-contact .ContactForm>div {
    width: 49%;
}

.section-contact .ContactForm>div.w-100,
.section-contact .ContactForm>div.divider-field,
.section-contact .ContactForm div.submit-button-container {
    width: 100%;
} 

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

/* Kartor
========================================================================== */
.section-maps .section-block-wrapper {
    padding: 2rem;
    background-color: rgb(var(--gray-color));
    border-radius: .5rem;
    overflow: hidden;
}

.section-maps .col-1 {
    padding-right: 1rem;
}

.section-maps .col-2 {
    padding-left: 1rem;
}

.section-maps .col-1 iframe,
.section-maps .col-2 iframe {
    width: 100%;
    height: 45rem;
    border-radius: .5rem;
    overflow: hidden;
}

@media only screen and (max-width: 980px) {
    .section-maps .col-1 {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .section-maps .col-2 {
        padding-left: 0;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    --base-size: 1.4rem;
    padding: 0 5rem;
    background-color: rgb(var(--gray-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 {
    color: rgb(var(--black-color));
    padding: 0 0 1rem;
    line-height: 1;
}

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

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

.footer-top p,
.footer-top a {
    text-decoration: none;
}

.footer a:not(.circle-icon):hover {
    text-decoration: none;
    color: rgb(var(--black-color));
}

/* 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(--black-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.2rem;
    line-height: 1.6;
    color: rgb(var(--black-color), .6);
}

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

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

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

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

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

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

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

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