/* DaTus Kök AB (Beka Sushi) */

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 11rem;
    --menu-height-scrolled: 11rem;
    --section-width: 150rem;

    /* 	Colors */
    --primary-color: 247, 99, 12;

    --black-color: 0, 0, 0;
    --gray-dark-color: 26, 26, 26;
    --gray-color: 130, 130, 130;
    --gray-light-color: 240, 240, 240;
    --white-color: 255, 255, 255;

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

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

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

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

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

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

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

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

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

/* Ovriga klasser */
.align-center {
    align-items: center;
}

.of-hidden {
    overflow: hidden;
}

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

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: .5em;
}

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

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

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

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

.text-uppercase {
    text-transform: uppercase;
}

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

@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;
    }

    .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.9rem 2rem;
    margin: 5px;
    font-size: 1.6rem;
    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,
.ContactSubmit:focus {
    border: 1px solid rgb(var(--primary-color));
    background-color: transparent;
    color: rgb(var(--primary-color));
}

/* Arrow link */
.arrow-link {
    font-size: var(--base-size);
    padding-right: 1rem;
    color: rgb(var(--gray-dark-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;
}

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

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

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

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

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

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

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    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 {
    border: 5rem solid rgb(var(--black-color));
    border-top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45rem;
    background-color: rgb(var(--black-color), .75)
}

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

.parallax-sushi {
    background-image: url('/assets/images/sushi-planka-2000px.jpg');
}

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

@media only screen and (max-width: 580px) {
    .parallax {
        border: 2rem solid rgb(var(--black-color));
    }
}

/* Cards 
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

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

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

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

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

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

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

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

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

    /* Paddings */
    .card-item.p-3,
    .card-item .p-3 {
        padding: 2rem;
    }
}

/* Card 1-1 */
@media only screen and (max-width: 380px) {
    .card-1-1 .card-body a {
        display: block;
    }
}

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

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

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

.card-2-2 .card-footer {
    padding-top: 2rem;
}

/* Card 2-4 */
.card-2-4 .card-item {
    display: flex;
}

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

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

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

.card-2-4 .card-body {
    flex: 1 1 0px;
    padding: 0 2rem;
}

.card-2-4 .text-small {
    font-size: 1.4rem;
}

@media only screen and (max-width: 420px) {
    .card-2-4 .card-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-2-4 .card-body {
        padding: 1rem;
    }
}

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

/* Text i split */
.split-content .text-block-center {
    max-width: 55rem;
}

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

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

/* Popup-notis
========================================================================== */
.EditMode .popup-wrapper {
    display: none;
}

.popup-wrapper {
    z-index: 8;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
}

/* Knappar */
.popup-button {
    position: relative;
    appearance: none;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(var(--black-color), .3);
    border: none;
    cursor: pointer;
}

.popup-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2.8rem;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    color: rgb(var(--black-color));
}

.popup-wrapper .popup-button .icon-open,
.popup-wrapper.opened .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(1);
}

.popup-wrapper.opened .popup-button .icon-open,
.popup-wrapper .popup-button .icon-close {
    transform: translate(-50%, -50%) scale(0);
}

/* InnehÃ¥ll */
.popup-window {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 0;
    bottom: 6rem;
    width: 450px;
    max-width: calc(100% - 2rem);
    max-height: calc(100vh - 12rem);
    margin: 0 2rem;
    background: rgb(var(--black-color));
    border-radius: 1rem;
    box-shadow: 0 0 3rem rgba(var(--black-color), .3);
    transition: opacity .3s ease, bottom .3s ease;
}

.popup-wrapper.opened .popup-window {
    opacity: 1;
    visibility: visible;
    display: block;
    bottom: 10rem;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 2rem;
    border-bottom: 1px solid rgb(var(--gray-light-color));
}

.popup-header .text-title {
    padding: 0;
    line-height: 1;
}

.icon-close-popup {
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
}

.icon-close-popup:hover {
    background-color: rgb(var(--gray-light-color));
}

.popup-content {
    padding: 1rem 2rem 3rem;
    max-height: 30rem;
    overflow: auto;
}

/* 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: 2rem;
    overflow: auto;
    background: rgb(var(--white-color));
    transform: translate(-50%, -50%);
}

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

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

/* Header / Navigation
========================================================================== */
header {
    background-color: rgb(var(--black-color), .8);
}

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

.header-logo a {
    font-size: 2.5rem;
    font-weight: 700;
    text-decoration: none;
    color: rgb(var(--primary-color));
}


.text-logo {
    display: inline-block;
}

/* Nav */
.TemplateMenu a {
    font-size: 1.6rem;
    font-weight: 400;
    color: rgb(var(--white-color));
    font-family: 'Playfair Display', serif;
}

.TemplateMenu>li>a:hover {
    color: rgb(var(--primary-color));
}
.header-logo img {
    padding: 0.5rem 0;
}
/* CTA  */
.header-cta-wrapper {
    z-index: 9;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

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

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

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

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin-top: calc(var(--menu-height) * -1);
    border: 5rem solid rgb(var(--black-color));
    border-top: var(--menu-height) solid rgb(var(--black-color));
    background-color: rgb(var(--black-color), .6); 
}

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

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

.top-section .section-title {
    font-size: 7rem;
    line-height: 1;
}

.top-section .section-title span {
    display: block;
    text-transform: uppercase;
}

.top-section .section-title em {
    font-size: .7em;
}

.top-section .btn:hover {
    background-color: rgb(var(--black-color), .7);
}

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

@media only screen and (max-width: 580px) {
    .top-section .section-block {
        border: 2rem solid rgb(var(--black-color));
    }

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

/* Referenser
========================================================================== */
.section-citat .logo-wrapper {
    width: 13rem;
    margin: 0 auto 2rem;
}

/* Slick */
.section-citat .slick-list {
    width: 100%;
}

.section-citat .slick-dots li::before {
    color: rgb(var(--white-color), .6);
}

/* Ikoner */
.icon-citat {
    padding: 2rem 3.5rem;
    font-size: 3rem;
}

.icon-citat::before,
.icon-citat::after {
    content: '\f10d';
    position: absolute;
    font-weight: 900;
    font-size: 6rem;
    color: rgba(var(--primary-color), 0.2);
    font-family: 'Font Awesome 5 Pro';
    margin: -1rem 0 0 -3rem;
}

.icon-citat::after {
    content: '\f10e';
    margin: -1rem 0 0 -5rem;
}

@media only screen and (max-width: 800px) {
    .icon-citat {
        padding: 2rem;
        font-size: 2.5rem;
    }

    .icon-citat::before,
    .icon-citat::after {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 480px) {
    .icon-citat {
        padding: 2rem;
        font-size: 2rem;
    }
}

/* CTA
========================================================================== */
.section-cta .section-block {
    min-height: calc(100vh - 20rem);
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65vh;
    margin-top: calc(var(--menu-height) * -1);
    border: 5rem solid rgb(var(--black-color));
    border-top: var(--menu-height) solid rgb(var(--black-color));
    background-color: rgb(var(--black-color), .65);
}

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

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

.hero .btn:hover {
    background-color: rgb(var(--black-color), .7);
}

@media only screen and (max-width: 580px) {
    .hero .section-block {
        min-height: 30rem;
        border: 2rem solid rgb(var(--black-color));
    }

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

/* ==========================================================================
Undersida: var meny
========================================================================== */
.menu-wrapper {
    color: rgb(var(--white-color));
    padding: 6rem;
}

.menu-list ul {
    padding: 0;
}

.menu-list li {
    color: rgb(var(--white-color));
    list-style: none;
    border-bottom: 1px solid rgb(var(--primary-color));
    padding-top: 2rem;
}

.menu-description {
    display: flex;
    justify-content: space-between;
}

.card-item .menu-description {
    padding-top: 2rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.card-item .price {
 padding-left: 1rem;
}

@media only screen and (max-width: 1100px) {
    .section-menu .section-block {
        padding: 0;
    }
}

@media only screen and (max-width: 700px) {
    .menu-wrapper {
        padding: 4rem 2rem;
    }
}

/* Meny (ny)
========================================================================== */
/* Tab */
.tab-container {
    padding: 5rem 7rem;
    outline: 1px solid rgb(var(--gray-light-color));
    outline-offset: -10px;
    border: 5px solid rgb(var(--primary-color));
    background-color: transparent;
}

/* Tabbarna */
.tabs-wrapper {
    margin-bottom: 5rem;
}

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

.tabs-heading {
    display: none;
}

.tabs-heading .text-label{
    font-size: 1.45rem;
    letter-spacing: .2rem;
}

.tab {
    display: inline-block;
    padding: 1rem 2rem;
    color: rgb(var(--primary-color));
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3rem;
    cursor: pointer;
}

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

/* Innehåll */
.tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tab-col {
    width: calc((100% / 2) - 2rem);
}

.tab-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 4rem;
}

.tab-item .small-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .2rem;
    line-height: 1.1;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.tab-item .price {
    padding-left: 1rem;
}

.tab-item .description {
    font-size: 1.4rem;
    color: rgb(var(--gray-light-color));
}

@media only screen and (max-width:980px) {
    /* Gör menyvalen till dropdown */
    .tabs-wrapper {
        position: relative;
        max-width: 25rem;
        padding: 1rem 2rem;
        background: rgb(var(--primary-color));
        cursor: pointer;
    }

    .tabs-heading {
        display: block;
    }

    .tabs-heading p {
        display: flex;
        justify-content: space-between;
        padding-bottom: 0;
        color: #FFF;
    }

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

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

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

    .tab {
        display: block;
        padding: 1.5rem 1rem;
        letter-spacing: normal;
        text-transform: initial;
    }
    /* End dropdown menyval*/
}

@media only screen and (max-width:750px) {
    .tab-col {
        width: 100%;
    }
}

@media only screen and (max-width:480px) {
    .tab-container {
        padding: 5rem 3rem;
    }

    /* Gör menyvalen till dropdown */
    .tabs-wrapper {
        max-width: 100%;
    }

    /* End dropdown menyval*/

    .tab-item .small-title {
        font-size: 1.5rem;
    }

    .tab-item .description {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
Undersida: Om oss
========================================================================== */
.section-map {
    position: relative;
    height: 65rem;
}

.section-map .section-block {
    padding: 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    border: none;
}

.map-info {
    z-index: 1;
    position: relative;
    width: 30rem;
    padding: 3rem;
    margin: 2rem 0 0 auto;
    border-radius: 0 0 1rem 1rem;
}

.map-info-content {
    padding: 3rem 3rem 2rem;
}

.map-container a {
    display: inline;
}

@media only screen and (max-width: 1000px) {
    .section-map {
        height: auto;
    }

    .map-info {
        width: 100%;
        padding: 3rem;
        border-radius: 0;
    }

    .map-container iframe {
        position: static;
        height: 25rem;
    }
}

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

.section-contact .col-0 {
    margin-bottom: 3rem;
}

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

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

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

.ContactForm input[type="text"],
.ContactForm textarea {
    border: none;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm textarea:not(.illegal) {
    background-color: rgb(var(--white-color));
}

.asterisk p:after {
    content: "*";
    font-size: 1.5rem;
    margin-left: 6px;
    color: red;
}

@media only screen and (max-width: 980px) {
    .section-contact .col-2 {
        margin: 5rem auto 0;
    }
}

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

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

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

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

.footer-top .text-label {
    color: rgb(var(--primary-color));
}

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

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgb(var(--white-color), .5);
}

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

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

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

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