/* Vaktmastarbostallet Cockerpoo & Maltipoo */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 106, 135, 97;
    --primary-dark-color: 78, 91, 74;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-light-color: 243, 241, 237;
    --white-color: 255, 255, 255;

    /* 	Layout  */
    --col-padding: 3rem;
    --menu-height: 7.5rem;
    --menu-height-scrolled: 7.5rem;
    --section-width: 150rem;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1360;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--white-color);
    --menu-color: var(--black-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;
}

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

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

/* Margins */

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

body:not(.EditMode) .mt--5 {
    margin-top: -5rem;
}

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

/* 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: 'Lexend', sans-serif;
}

/* Rubriker */
.section-title {
    padding-bottom: .3em;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.small-title {
    padding-bottom: .3em;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.4;
}

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

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

.list-paw li::before {
    content: '\f004';
    position: relative;
    padding: 0 1rem 0 0;
    top: -2px;
    color: rgb(var(--primary-color));
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Font Awesome 5 Pro';
}

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

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

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

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

.whitespace-nowrap {
    white-space: nowrap;
}

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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    min-width: 15rem;
    padding: 1.2rem 2.5rem;
    margin: 1rem 2rem 0 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 1px solid;
    border-radius: 2rem;
    transition: all .4s ease;
}

.btn-primary-filled,
.ContactSubmit {
    color: rgb(var(--white-color));
    border-color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
}

.btn-primary-filled:hover,
.ContactSubmit:hover {
    color: rgb(var(--primary-color));
    background-color: transparent;
}

/* Arrow link */
.arrow-link {
    margin: 1rem 2rem 0 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

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

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

/* Cirkelikon */
.circle-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    margin: .5rem;
    font-size: 0;
    border-radius: 50%;
    color: rgb(var(--white-color));
    background-color: rgb(var(--primary-color));
    text-decoration: none;
    transition: .3s ease;
}

.circle-icon:hover {
    background-color: rgb(var(--gray-dark-color));
}

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

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Video ratio */
.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Tassar */
.paw-print,
.waves-primary,
.waves-gray-light {
    position: relative;
}

/* Wave */
.waves-primary::before,
.waves-gray-light::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: -7rem;
    left: 0;
    width: 100%;
    height: 7rem;
    background-image: url(/assets/images/graphics/wave-2-primary-dark.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.waves-primary::after,
.waves-gray-light::after {
    content: '';
    z-index: -1;
    position: absolute;
    bottom: -6rem;
    left: 0;
    width: 100%;
    height: 6rem;
    background-image: url(/assets/images/graphics/wave-3-primary-dark.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.waves-gray-light::before {
    background-image: url(/assets/images/graphics/wave-2-gray-light.svg);
}

.waves-gray-light::after {
    background-image: url(/assets/images/graphics/wave-3-gray-light.svg);
}

@media only screen and (max-width: 580px) {
    .waves-primary::before,
    .waves-gray-light::before {
        top: -1rem;
        height: 1rem;
    }

    .waves-primary::after,
    .waves-gray-light::after {
        bottom: -1rem;
        height: 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%;
}

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

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

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

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

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

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

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

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

.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) {
    .cards-wrapper:not(.w-100) {
        margin-left: 0;
        margin-right: 0;
    }

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

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

    /* Bredder */
    .cards-wrapper .p-3 {
        padding: 2rem;
    }
}

/* Card 2-5 */
.card-2-5 .card-item {
    display: flex;
    align-items: center;
    padding: 2rem;
}

.card-2-5 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

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

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

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

.card-2-5 .card-item .small-title {
    font-size: 2rem;
    transition: .3s ease;
}

.card-2-5 .card-item:hover .small-title {
    color: rgb(var(--primary-color));
}

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

    .card-2-5 .card-header {
        width: 4.5rem;
        height: 4.5rem;
    }

    .card-2-5 .card-item .small-title {
        font-size: 1.6rem;
    }

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

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

/* Card 3-1 */
.card-3-1 .image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
}

/* Card 3-2 */
.cards-wrapper.card-3-2 .card-item {
    margin-top: 5rem;
}

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

.card-3-2 .image-wrapper,
.card-item .circle-image {
    display: inline-block;
    max-width: 23rem;
    height: 23rem;
    border-radius: 50%;
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    border-radius: 2rem;
}

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

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

.split-image {
    width: 50%;
    border-radius: 1rem;
}

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

/* Tassar */
body:not(.EditMode) .split-wrapper.paw-print::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 1rem;
    width: 10rem;
    height: 50rem;
    background-image: url(/assets/images/graphics/tassar-reversed.png);
    background-repeat: no-repeat;
    background-size: contain;
}

body:not(.EditMode) .split-wrapper.reverse.paw-print::before {
    top: -2rem;
    left: unset;
    right: 1rem;
    background-image: url(/assets/images/graphics/tassar.png);
}

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

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

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

    .split-content {
        width: 100%;
        padding: 3rem;
    }

    .split-image {
        width: 100%;
    }

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

    /* Tassar */
    body:not(.EditMode) .split-wrapper.paw-print::before {
        top: -2rem;
        left: -1rem;
        width: 8rem;
        height: 8rem;
    }
}

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

    .split-wrapper,
    .split-wrapper.reverse {
        padding: 1rem;
    }

    .split-content {
        padding: 2rem;
    }

    /* Tassar */
    body:not(.EditMode) .split-wrapper.paw-print::before {
        opacity: .5;
    }
}

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

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

/* Knappar */
.popup-button {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: rgb(var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    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(--white-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;
    max-width: 35rem;
    max-height: calc(100vh - 12rem); 
    padding: 0rem;
    margin: 0 2rem;
    background: rgb(var(--white-color));
    border-radius: 2rem;
    box-shadow: 0 0 3rem rgba(15, 36, 47, .3);
    overflow: auto;
    transition: opacity .3s ease, bottom .3s ease;
}

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

.icon-close-popup {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
       color: rgb(var(--white-color));
}

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

    .icon-close-popup {
        top: 1rem;
    }
}


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

header:not(.scrolled, .active-menu) {
    --menu-color: var(--white-color);
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

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

.header-logo a {
    display: flex;
    align-items: center;
    color: rgb(var(--white-color));
    color: rgb(var(--black-color));
    text-decoration: none;
    text-align: center;
}

header:not(.scrolled, .active-menu) .header-logo a {
    color: rgb(var(--white-color));
}

.header-logo i {
    margin-right: 1rem;
    font-size: 4.5rem;
    color: rgb(var(--primary-color));
}

.header-logo .logo {
    display: block;
    font-size: 1.6rem;
}

.header-logo .logo-text {
    display: block;
    font-size: 1.4rem;
}

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

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

body:not(.EditMode) header:not(.mobile-menu) .TemplateMenu>li:nth-child(1),
body:not(.EditMode) header:not(.mobile-menu) .TemplateMenu>li:last-of-type {
    display: none;
}

/* 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;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

header:not(.scrolled) .header-cta-wrapper .btn:hover {
    color: rgb(var(--white-color))
}

/* Mobilmeny */
.mobile-menu .TemplateMenu {
    text-align: center;
}

.mobile-menu .header-logo a {
    white-space: nowrap;
}

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

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

    /* Header logo */
    .header-logo i {
        font-size: 3rem;
    }

    .header-logo .logo {
        font-size: 1.3rem;
        font-weight: 500;
    }

    .header-logo .logo-text {
        font-size: 1.1rem;
    }
}

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

    /* Header logo */
    .header-logo i {
        display: none;
    }
}

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

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

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

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

.top-section .section-title {
    font-size: 5rem;
    font-weight: 600;
}

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

@media only screen and (max-width: 580px) {
    .top-section {
        min-height: 90vh;
        padding-bottom: 4rem;
        background-size: 100% 4rem;
    }

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

/* Omdomen
========================================================================== */
.section-scroll .section-block {
    overflow: hidden;
}

/* Slider */
.scroll-wrapper.cards-wrapper {
    margin-bottom: 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;
    margin: 0 1rem;
    transition: all .3s ease;
}

.scroll-wrapper.cards-wrapper .card-item[aria-hidden="true"] {
    opacity: .5;
}

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

/* Instagram
========================================================================== */
.section-instagram a {
    word-break: break-all;
    text-decoration: none;
}

#eapps-instagram-feed-1 .eapps-instagram-feed-posts-item {
    border-radius: 3rem;
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    min-height: 65vh;
    padding-top: 10rem;
    padding-bottom: 10rem;
    margin-top: calc(-1 * var(--menu-height));
    background-color: rgb(var(--black-color), .5);
    background-image: url(/assets/images/graphics/wave-1-white.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

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

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

@media only screen and (max-width: 580px) {
    .hero {
        min-height: 40rem;
        padding-bottom: 4rem;
        background-size: 100% 4rem;
    }

    .hero .section-block {
        padding: 2rem 5rem;
    }

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

/* ==========================================================================
Undersida: Valpkop Intresseanmalan
========================================================================== */
.section-intresseanmalan .form-head {
    border-top-right-radius: 2rem;
    border-top-left-radius: 2rem;
}

.section-intresseanmalan .col-0 {
    background: rgb(var(--gray-light-color));
    max-width: 70rem;
    margin: auto;
    border-radius: 2rem;
}

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

/* Kolumn 1 */
.section-contact .col-0 {
    max-width: 50rem;
    padding: 0;
    margin-top: -5rem;
    border-radius: 2rem;
    background: rgb(var(--gray-light-color));
    overflow: hidden;
}

.ContactForm {
    padding: 3rem;
}

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

@media only screen and (max-width: 980px) {
    .section-contact .section-block-wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }

    .ContactForm {
        padding: 2rem;
    }

    .section-contact .col-0 {
        margin-top: 0;
    }

    .section-contact .col-1 {
        margin-bottom: 3rem;
        max-width: 50rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
footer {
    position: relative;
    padding: 0 5rem;
    margin-top: 10rem;
    background: rgb(var(--gray-light-color));
}

footer::before {
    content: '';
    position: absolute;
    top: -10rem;
    left: 0;
    width: 100%;
    height: 10rem;
    background-image: url(/assets/images/graphics/wave-1-gray.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
}

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

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

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

.footer .text-label {
    padding: 0 0 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
}

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

.footer-top li,
.footer-top p,
.footer-top a {
    font-size: 1.6rem;
    text-decoration: none;
}

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

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    line-height: 1.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: 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::before {
        top: -3rem;
        height: 3rem;
        background-size: 100% 3rem;
    }

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

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

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