/* Babas Burger And Bites Sweden 2 AB */

/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Bree+Serif&display=swap');
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

@font-face {
    font-family: 'introinline';
    src: url('fonts/intro_inline-webfont.woff2') format('woff2'),
        url('fonts/intro_inline-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Animationer */
@import url('/resources/scripts/aos/2.3.1/aos.css');

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 70, 187, 189;
    --primary-dark-color: 52, 105, 103;

    --black-color: 22, 22, 22;
    --gray-dark-color: 51, 51, 51;
    --gray-color: 130, 130, 130;
    --gray-light-color: 243, 241, 237;
    --white-color: 255, 255, 255;

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

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

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

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

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

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

.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 */
.mt-2 {
    margin-top: 2rem;
}

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

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

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

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

/* Ovriga klasser */
.justify-center {
    justify-content: center;
}

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

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

.section-title {
    padding-bottom: .3em;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .2rem;
    font-family: 'Bree Serif', serif;
    text-transform: uppercase;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: .1rem;
    font-family: 'Bree Serif', serif;
    text-transform: uppercase;
    color: rgb(var(--gray-dark-color));
}

.decorative {
    font-family: 'introinline';
}

.text-shadow {
    text-shadow: -3px 3px 1px rgb(0 0 0 / 70%);
}

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

/* Listor */
.ul-center {
    display: inline-block;
    text-align: left;
}

.list-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100rem;
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

.list-pills li {
    display: flex;
    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(--primary-color));
}

.list-pills li::before {
    content: '\f00c';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    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-color));
}

@media only screen and (max-width: 580px) {
    .list-pills li {
        width: 100%;
        padding: 1rem;
        font-size: 1.4rem;
    }
}

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

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

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

.text-underline {
    text-decoration: underline;
}

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

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

@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 */
    .section-title {
        font-size: 3.2rem;
    }

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 18rem;
    padding: 1.2rem 2rem;
    margin: 5px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
    font-family: 'Bree Serif', serif;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

.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(--white-color));
    border: 1px solid rgb(var(--gray-dark-color));
    background-color: rgb(var(--gray-dark-color));
}

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

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

/* Dropdown-knapp */
.dropdown-wrapper {
    position: relative;
}

.dropdown-wrapper.opened {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown {
    display: none;
    z-index: 1;
    position: absolute;
    top: 4rem;
    left: -1px;
    width: calc(100% + 2px);
    max-height: 60vh;
    background: rgb(var(--black-color));
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: auto;
}

.dropdown-wrapper.opened .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 10px 5px;
    text-decoration: none;
    transition: .3s ease;
}

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    color: rgb(var(--primary-color));
}

.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;
    padding: 0;
    margin: 0 1rem;
    font-size: 0;
    color: rgb(var(--white-color));
    text-decoration: none;
    transition: .3s ease;
}

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

.circle-icon em:before,
.circle-icon i:before {
    font-size: 2.8rem;
}

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

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

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

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

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

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

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

.parallax .section-block {
    min-height: 40rem;
}

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

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

@media only screen and (max-width: 750px) {
    .parallax .section-block {
        min-height: 20rem;
    }
}

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

/* Generellt */
a.card-item {
    text-decoration: none;
}

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

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

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

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

/* Card 1-1 */
.card-1-1 .card-item {
    transition: .2s ease-in-out;
}

.card-1-1 .card-item img {
    max-height: 5rem;
}

/* Card 2-2 */
.card-2-2 .card-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    max-width: 10rem;
    height: 10rem;
    transition: .2s ease-in-out;
}

.card-1-1 .card-item:hover,
.card-2-2 .card-item:hover {
    transform: scale(1.1);
}

.card-2-2 .card-item p {
    font-size: 1.3rem;
    line-height: 1.2;
    padding: 0;
}

@media only screen and (max-width: 750px) {
    .card-2-2 .card-item p {
        font-size: 1.2rem;
    }
}

/* Card 3-6 */
.card-3-6 .card-item {
    position: relative;
    padding: 0 2rem 30rem;
    transition: .3s ease-in-out;
}

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

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

.card-3-6 .card-body {
    z-index: 1;
    position: relative;
}

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

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

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

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

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column-reverse;
    }

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 2rem;
        background: transparent;
    }

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

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

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

.IndexPage header:not(.scrolled) {
    border-color: transparent;
    background-color: transparent;
}

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

.header-logo img {
    padding: 1.5rem 0;
}

/* Nav */
.TemplateMenu ul {
    background-color: rgb(var(--black-color));
}

.TemplateMenu>li>ul {
    max-height: 40rem;
    overflow-y: auto;
    width: 25rem;
}

.TemplateMenu a {
    font-weight: 300;
    font-size: 1.3rem;
    color: rgb(var(--white-color));
    text-transform: uppercase;
    letter-spacing: .2rem;
}

/* 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 .btn {
    min-width: 13rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

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

.mobile-menu .TemplateMenu {
    margin-bottom: 7rem;
}

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

    /* Header logo */
    .header-logo a {
        font-size: 1.6rem;
    }

    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    min-height: calc(110vh - var(--menu-height));
    padding-top: var(--menu-height);
    margin-top: calc(var(--menu-height) * -1);
    background-color: rgb(var(--black-color), .2);
}

/* Spotify
========================================================================== */
.section-spotify {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: center;
    background-color: rgb(var(--black-color), .55);
}

.section-spotify .spotify-wrapper {
    max-width: 45rem;
    margin: 0 10rem;
}

@media only screen and (max-width: 1200px) {
    .section-spotify .spotify-wrapper {
        margin: 0;
    }
}

@media only screen and (max-width: 750px) {
    .section-spotify {
        align-items: center;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 60rem;
    padding-top: var(--menu-height);
    margin-top: calc(var(--menu-height) * -1);
    background-color: rgb(var(--black-color), .2);
}

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

.hero .section-title {
    font-size: 6rem;
    color: rgb(var(--white-color));
}

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

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

/* ==========================================================================
Undersida: Meny
========================================================================== */
/* Taggar/Rubriker */
.tags-heading {
    display: none;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 2px solid rgb(var(--black-color));
    border-bottom: 2px solid rgb(var(--black-color));
    margin-top: -3rem;
}

.tags-list .tag {
    padding: 1rem 3rem;
    font-size: 2.5rem;
    font-family: 'Bree Serif', serif;
    color: rgb(var(--black-color));
    cursor: pointer;
    transition: .2s ease;
}

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

/* Menyn */
.tab-wrapper {
    text-align: center;
    margin: 5rem 0;
}

.tab-wrapper .small-title {
    text-shadow: none;
}

.tab-wrapper .text-bold {
    font-family: 'Bree Serif', serif;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

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

    /* Taggar */
    .tags-wrapper {
        position: relative;
        max-width: 25rem;
        margin: -2.4rem auto;
        background: rgb(var(--black-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%;
        margin: 0;
        box-shadow: 1px 1px 10px rgba(var(--black-color), .1);
    }

    .tags-list .tag {
        font-size: 1.8rem;
        color: rgb(var(--white-color));
    }

    .tags-wrapper.opened .tags-list {
        display: block;
        background-color: rgb(var(--black-color));
    }

    .tags-wrapper .tag {
        padding: 1rem 2rem;
        letter-spacing: normal;
        text-transform: initial;
    }
}

/* ==========================================================================
Undersida: Restauranger
========================================================================== */
.section-restaurants .card-3-6 .card-item {
    padding: 11rem 5rem 11rem;
}

.section-restaurants .card-3-6 .card-item:hover {
    transform: scale(1.03);
}

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

.section-restaurants .card-blue .image-wrapper::after,
.section-restaurants .card-green .image-wrapper::after,
.section-restaurants .card-pink .image-wrapper::after {
    content: '';
    position: absolute;
    z-index: 1;
}

.section-restaurants .card-blue .image-wrapper::after {
    background: radial-gradient(circle, rgba(80, 189, 197, 0.6) 0%, rgba(22, 66, 67, 0.9) 90%);
}

.section-restaurants .card-green .image-wrapper::after {
    background: radial-gradient(circle, rgba(56, 134, 67, 0.62) 0%, rgba(45, 151, 86, 0.82) 90%);
}

.section-restaurants .card-pink .image-wrapper::after {
    background: radial-gradient(circle, rgba(91 23 53 / 62%) 0%, rgba(214 76 136 / 82%) 90%);
}

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

/* ==========================================================================
Undersida: Restauranger -> Omrade
========================================================================== */
.section-map iframe {
    display: block;
}

/* ==========================================================================
Undersida: Foodtruck
========================================================================== */

/* Formular
========================================================================== */
.section-form .section-block-wrapper {
    max-width: 75rem;
}

.section-form .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgb(var(--white-color));
    padding: 4rem;
}

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

.section-form .ContactForm .divider-field,
.section-form .ContactForm .submit-button-container {
    width: 100%;
}

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

@media only screen and (max-width: 600px) {
    .section-form .ContactForm {
        padding: 2rem;
    }

    .section-form .ContactForm div {
        width: 100%;
    }
}

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .card-3-6 .card-item {
    padding: 11rem 5rem 11rem;
}

.section-contact .card-3-6 .card-item:hover {
    transform: scale(1.03);
}

/* ==========================================================================
Undersida: Jobba med oss
========================================================================== */
.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

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

.accordion-item {
    width: 100%;
    padding-bottom: 2rem;
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 0 5rem 1rem 2rem;
    text-decoration: none;
    border-bottom: 2px solid rgb(var(--black-color));
}

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

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

.accordion-body {
    padding: 2rem;
}

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

@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: 0 3rem 1rem .5rem;
    }

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

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

/* Formular
========================================================================== */
.section-application .ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

.section-application .ContactForm .ContactFormMessage,
.section-application .ContactForm .select-wrapper,
.section-application .ContactForm .file-upload-container,
.section-application .ContactForm .file-dropzone,
.section-application .ContactForm .ContactFormField.file-field,
.section-application .ContactForm .submit-button-container {
    width: 100%;
}

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

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background-color: rgb(var(--black-color));
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    padding: 8rem 0 0;
    text-align: center;
}

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

.footer .text-label {
    font-size: 1.7rem;
    padding: 0 0 1rem;
    color: rgb(var(--white-color));
    font-family: 'Bree Serif', serif;
    line-height: 1;
}

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

.footer p,
.footer a {
    font-size: 1.6rem;
    text-decoration: none;
    font-weight: 300;
    color: rgb(var(--white-color));
    padding-bottom: 0;
}

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

/* Appar */
.footer-apps {
    text-align: center;
    margin: 0 0 3rem;
}

.footer-apps .footer-app:hover {
    transform: scale(1.1);
    transition: .3s ease-in-out;
}

.footer-apps img {
    max-height: 3.5rem;
    margin: 0 0.5rem;
}

/* Sociala medier */
.footer-socials {
    text-align: center;
    margin: 0 0 3rem;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 0 4rem;
}

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

.webbess-stamp img {
    width: 2.5rem;
    margin-left: 1rem;
    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 0;
    }

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

    .footer-bottom a {
        padding-bottom: 2rem;
    }

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