<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Lashbeauty.sthlm  */

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

/* ==========================================================================
Generellt  
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 12rem;
    --menu-height-scrolled: 8rem;
    --section-width: 140rem;

    /* 	Colors */
    --primary-color: 228, 216, 205; 
    --primary-light-color: 246, 242, 238;
    --primary-dark-color: 210, 191, 172;

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

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

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

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

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

.py-0 .section-block,
.py-0:not(.section-wrapper) {
    padding-top: 0;
    padding-bottom: 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-5 {
    margin-top: 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: 'Poppins', sans-serif;
}

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

.display-title {
    display: block;
    font-size: 8rem;
    line-height: 0.8;
    padding: 0;
}

.section-title {
    font-family: 'Noto Serif Display', serif;
    font-size: 5rem;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 1.3;
    padding-bottom: .5em;
}

.small-title {
    font-family: 'Noto Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 200;
    line-height: 1.4;
    padding-bottom: .7em;
}

.ingress {
  font-size: calc(var(--base-size) * 1.2);
  font-weight: 700;
}

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

a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/* 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-center {
    text-align: center;
}

.text-handwritten {
    font-family: 'Parisienne', cursive;
    font-weight: 400;
    text-transform: lowercase;
} 

/* Pills */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-pills li { 
    padding: 0.3rem 1rem 0.3rem 1rem;
    margin: 0.5rem;
    font-size: 1.3rem;
    border-radius: 4rem;
    color: rgb(var(--white-color));
    background: rgb(var(--primary-dark-color));
} 

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

.list-check li {
    position: relative;
    padding: 0 0 1rem;
    line-height: 1.5;
}

.list-check li::before {
    position: absolute;
    content: '\f00c';
    left: -2rem;
    top: 4px;
    color: initial;
    font-weight: 400;
    font-size: .8em;
    font-family: 'Font Awesome 5 Pro';
}

ul.two-cols {
    columns: 2;
    column-gap: 4rem;
}

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

    .display-title {
        font-size: 6rem;
    }

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

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

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

    .display-title {
        font-size: 5rem;
    }

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

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

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

    ul.two-cols {
        columns: 1;
        column-gap: 0;
    }
}

@media only screen and (max-width: 420px) {
    /* Pills */
    .list-pills {
        flex-direction: column;
        text-align: center;
    } 

    .list-pills li {
        width: 100%;
        margin: 5px 0;
    } 
}

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.4rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: all .4s ease;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--black-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-dark-color));
    background-color: rgb(var(--primary-dark-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;
}

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

/* Knappar till vanster om sidan */
.cta-side-wrapper {
    position: fixed;
    top: 50%;
    right: 0;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
}

.cta-side-wrapper .cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 4.5rem;
    margin-bottom: 7px;
    font-size: 1.8rem;
    text-align: center;
    color: rgb(var(--primary-light-color));
    background: rgb(var(--primary-dark-color));
    border-radius: 1rem 0 0 1rem;
    text-decoration: none;
    transition: .3s ease;
} 

.cta-side-wrapper .cta-btn:hover {
    color: rgb(var(--primary-dark-color));
    background: rgb(var(--primary-color));
}

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

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

.bg-primary-light {
    background-color: rgb(var(--primary-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));
}

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

/* Bildpositionering */
.of-wrapper.op-top img {
    object-position: center top;
}

/* Parallax */
.parallax {
    max-width: 100%;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax-start {
    background-image: url(/assets/images/kvinna-langt-har-ler-2000.jpg);
}

@media only screen and (hover: none) {

    .parallax {
        background-attachment: scroll !important;
    }
}

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

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

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

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

/* Specifika 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-100 .card-item {
    width: 100%;
    margin: 0 0 1rem;
}

@media only screen and (max-width: 1050px) {
    .cards-wrapper.w-33 .card-item,
    .cards-wrapper.w-25 .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-25 .card-item,
     .cards-wrapper.w-33 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 2-1 */
.card-2-1 .card-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem;
    transition: all 0.3s ease;
    background-color: rgb(var(--white-color));
}

.card-2-1 a.card-item:hover {
    text-decoration: none;
    background-color: rgb(var(--primary-color));
}

.card-2-1 .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    transition: all 0.3s ease;
}

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

/* Cards 3-5 */
.card-3-5 .card-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    min-height: 33.5rem;
    padding: 3rem;
    border-radius: 2px;
    overflow: hidden;
}

.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), 0.4);
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

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

.card-3-5 .card-body {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 3rem 3rem 0;
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    border-bottom: none;
    border-radius: 3px 3px 0 0;
}

.card-3-5 .btn-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    margin: 0;
    height: 3rem;
}

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

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

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

.card-3-5 .arrow-link {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    padding-bottom: 0;
    transform: translateY(50%);
    line-height: 1;
    align-self: flex-end;
}

@media only screen and (max-width: 580px) {
    .card-3-5 .card-item {
        min-height: 30rem;
        padding: 2rem;
    }

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

    .card-3-5 .btn-wrapper {
        height: 2rem;
    }
}

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

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

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

.split-content.full {
    width: 100%;
}

.split-image {
    width: 50%;
}

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

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

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

/* 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-wrapper {
        background: transparent;
    }

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

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

    .split-content.bg-primary {
        padding: 2rem;
    }

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

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

header .container {
    max-width: none;
}

/* Logo */
.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

/* Nav */
.mainmenu {
    flex: 1 1 0%;
}

/* Flytta alternativ efter produkter till hoger */
.TemplateMenu&gt;li:nth-child(4) {
    margin-right: auto;
}

.TemplateMenu a {
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgb(var(--black-color));
    font-family: 'Noto Serif Display', serif;
}

.TemplateMenu&gt;li&gt;a:hover,
.TemplateMenu li.active&gt;a, 
.TemplateMenu ul a:hover {
    color: rgb(var(--black-color));
    text-decoration: underline;
}

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

.TemplateMenu ul a {
    line-height: 1.8;
    padding: 1rem 2rem;
}

body:not(.EditMode) .TemplateMenu &gt; li:first-child {
    display: none;
}

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

.header-cta-wrapper li {
    margin: 0 .5rem;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Noto Serif Display', serif;
}

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

/* Mobilmeny */
.mobile-menu .header-logo {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 0 0;
}

.mobile-menu .header-logo img {
    padding: 1rem 0;
}

.mobile-menu .TemplateMenu ul {
    background-color: transparent;
}

@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 {
    background-color: transparent;
}

.top-section .section-block {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 80vh;
    padding-bottom: 6rem;
    background-color: rgb(var(--black-color), .5);
}  

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

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

.top-section .section-title {
    font-size: 8rem;
    text-transform: initial;
}

.top-section p {
    max-width: 55rem;
    margin: 0 auto;
}

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

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

/* Sektion Omdomen
========================================================================== */
.section-reviews {
    overflow: hidden;
}

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

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

/* Sektion CTA
========================================================================== */
.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-wrapper .text-block {
    max-width: 65rem;
}

.cta-wrapper .btn-wrapper {
    margin-top: 0;
}

@media only screen and (max-width: 1000px) {
    .cta-wrapper {
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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

/* ==========================================================================
Undersida: Behandlingar &gt; Enskild sida
========================================================================== */

/* Gallery
========================================================================== */
.gallery .slick-list {
    width: 100%;
}

.gallery .slick-slide {
    width: 30rem;
}

.gallery .slick-arrow {
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgb(var(--white-color));
    transform: translateY(-50%);
    opacity: 1;
}

.gallery .slick-arrow:hover {
    background-color: rgb(var(--primary-light-color));
}

.gallery .slick-arrow::after {
    font-weight: 300;
    color: rgb(var(--black-color));
}

.gallery .slick-prev {
    left: 2rem;
}

.gallery .slick-next {
    right: 2rem;
}

.gallery .slick-arrow.slick-disabled {
    opacity: 0;
}

@media only screen and (max-width: 580px) {
    .gallery .slick-slide {
        width: 25rem;
    }    
}

/* ==========================================================================
Undersida: Utbildningar
========================================================================== */

/* section-signup
========================================================================== */
.section-signup .ContactForm {
    background-color: rgb(var(--white-color));
    padding: 3rem;
    max-width: 50rem;
    margin: 0 auto;
}

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


.ContactForm input[type="text"],
.ContactForm textarea {
    border: 1px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-light-color));
    
}

.ContactForm .ContactSubmit {
    font-size: 1.2rem;
}

.ContactForm select {
    width: 100%;
    height: 4rem;
    border: 1px solid rgb(var(--primary-color));
}

.grecaptcha-badge {
    display: none;
}

@media only screen and (max-width: 700px) {
    .ContactForm {
        padding: 1rem;
    }
}

/* section-review
========================================================================== */
.section-review {
    position: relative;
    background-image: url(/assets/images/lashlift-2000.jpg);
}

.section-review .section-block {
    background-color: rgb(var(--black-color), 0.4);
}

.quote-slider {
    --base-size: 2rem;
}

.quote-slider .slick-list {
    width: 100%;
} 

.quote-slider.text-block-center {
    max-width: 80rem;
}

.quote-slider .cite {
    font-size: 2.5rem;
}

.section-review .slick-dots {
    position: absolute;
    padding: 0;
    width: 100%;
    bottom: 1rem;
}

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

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--primary-light-color));
    padding: 0 5rem;
    --base-size: 1.4rem;
}

/* 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 {
    color: rgb(var(--black-color), .6);
    text-decoration: none;
}

.footer a: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;
    }
}</pre></body></html>