/* Salescale Sweden Handelsbolag */

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

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 18, 17, 202;
    --secondary-color: 255, 204, 83;

    --black-color: 17, 17, 17;
    --gray-dark-color: 58, 58, 58;
    --gray-color: 222, 224, 224;
    --gray-light-color: 247, 246, 246;
    --white-color: 255, 255, 255;

    --accent-orange-color: 250, 179, 23;

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

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1024;
    --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.4rem;
    }
}

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

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

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

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

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

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

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

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

.pl-0 .section-block,
.pl-0:not(.section-wrapper) {
    padding-left: 0;
}

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

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

.mb-3 {
    margin-bottom: 3rem;
}
.mb-6 {
    margin-bottom: 6rem;
}
/* Bredder */
.mw-none .section-block-wrapper {
    max-width: none;
}

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

.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: 'Montserrat', sans-serif;
}

/* Rubriker */
.section-title {
    padding-bottom: 0.2em;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.2;
}

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

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

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

.list-arrow li::before {
    content: '\f061';
    padding: 0 1rem 0 0;
    color: rgb(var(--secondary-color));
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Font Awesome 5 Pro';
}

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

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

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

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

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

@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.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid;
    border-radius: 2rem;
    font-family: inherit;
    transition: all .4s ease;
}

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

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

.ContactSubmit:hover,
.ContactSubmit:focus {
    color: rgb(var(--white-color));
    border-color: rgb(var(--white-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;
}

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

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

.btn-primary-filled::after {
    color: rgb(var(--secondary-color));
}

/* Animation knapp */
.bouncing-btn::after {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(10px);
    }

    60% {
        transform: translateX(5px);
    }
}

/* Lank med ikon */
.icon-links {
    padding: .2rem 1rem;
    margin: .3rem 1rem;
    font-size: 1.3rem;
    border-radius: 2rem;
    color: rgb(var(--black-color));
    text-decoration: none;
    background: rgb(var(--white-color));
    transition: .2s ease;
}

.icon-links:hover {
    color: rgb(var(--black-color));
    background: rgb(var(--secondary-color));
}

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

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

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

.gradient-primary-secondary {
    background: linear-gradient(90deg, rgba(var(--primary-color), 1) 0%, rgba(var(--secondary-color), 1) 100%);
}

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

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

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

/* Grafiska element
========================================================================== */
/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}
.br-2{
    border-radius: 2rem;
}
/* Pil */
.arrow-primary-right {
    position: relative;
}

.arrow-primary-right::after {
    content: '\2192';
    position: absolute;
    top: 5rem;
    right: 0;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: rgb(var(--primary-color));
    transform: translateX(50%);
}
@media only screen and (max-width: 580px) {
    .arrow-primary-right::after {
        font-size: 3.2rem;
    }
}
/* 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;
}

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

.parallax .section-block {
    background-color: rgb(var(--black-color), .85)
}

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

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

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

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

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

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

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

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

@media only screen and (max-width: 1024px) {
    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: calc((100% / 3) - 2rem);
        margin: 1rem;
    }
    .cards-wrapper.w-33 .card-item {
        width: calc((100% / 2) - 2rem);
    }
}

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

    /* Paddings */
    .cards-wrapper .p-4 {
        padding: 2rem;
    }
}
@media only screen and (max-width: 580px) {
    /* Bredder */
    .cards-wrapper.w-25 .card-item {
        width: 100%;
        margin: 1rem 0;
    }
         /* Generellt */
         .cards-wrapper .arrow-primary-right::after {
            top: unset;
            right: calc(50% + -1rem);
            bottom: -2rem;
            transform: translateY(-50%) rotate(90deg);
        }
}
/* Card 1-1 */
.card-1-1 .card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 2rem;
}

.card-1-1 .card-footer p {
    font-size: 1.4rem;
}

.card-1-1 .icon-wrapper {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
}

.card-1-1 .icon-wrapper i {
    opacity: .3;
    font-size: 13rem;
    transform: rotate(6deg)
}

@media only screen and (max-width: 1600px) {
    .card-1-1 .icon-wrapper i {
        font-size: 9rem;
    }
}

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

/* Card 1-2 */
.card-1-2 .card-item {
    padding: 2rem;
    margin: 4rem 3rem 2rem 3rem;
}

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

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

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

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

@media only screen and (max-width: 580px) {
    .card-2-1 .card-header i {
        font-size: 4rem;
    }

    .card-2-1 .card-header {
        margin-bottom: 1rem;
    }
}
/* Card 2-2 */
.card-2-2 a.card-item:hover {
    background: rgb(var(--gray-light-color));
}

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

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

/* Card 3-4 */
.cards-wrapper.card-3-4 .card-item {
    display: flex;
    flex-direction: row-reverse;
}

.card-3-4 .image-wrapper {
    width: 12rem;
    height: 12rem;
    border-radius: 2rem;
}

.card-3-4 .card-body {
    flex: 1 1 0px;
}

.card-3-5 .contact-item a {
    word-break: break-all;
}

.card-3-4 .contact-item i {
    margin-right: 1rem;
}

@media only screen and (max-width: 420px) {
    .card-3-4 .image-wrapper {
        width: 7rem;
        height: 7rem;
    }
}

/* Logos 1 */
.logos-1 .card-item {
    height: 8rem;
    padding: 1rem;
    text-align: center;
}

.logos-1 img {
    width: 100%;
    max-height: 10rem;
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out;
}

.logos-1 .card-item:hover img {
    filter: grayscale(0%);
}

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

/* Bredder & hojder */
.split-wrapper .w-35 {
    width: 35%;
}

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

@media screen and (max-width: 1350px) {
    /* Bredder */
    .split-wrapper .w-35,
    .split-wrapper .w-65 {
        width: 50%;
    }
}


@media screen and (max-width: 1024px) {
    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
        background: transparent;
    }

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

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

    .split-image {
        width: 100%;
    }

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

    /* Bredder */
    .split-wrapper .w-35,
    .split-wrapper .w-65 {
        width: 100%;
    }

    /* Split i full-width sektion */
    .mw-none.pl-0 .split-content {
        padding: 0 3rem 3rem;
    }
}

@media screen and (max-width: 580px) {
    /* Split i full-width sektion */
    .mw-none.pl-0 .split-content {
        padding: 0 2rem 3rem;
    }
}

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

header:not(.scrolled) {
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

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

.header-logo a {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgb(var(--white-color));
    text-decoration: none;
    transition: .3s ease;
}

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

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

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

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

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

@media only screen and (max-width: 580px) {
    /* Header logo */
    .header-logo a,
    header.scrolled .header-logo a {
        font-size: 1.6rem;
    }

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

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

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

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

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

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

.top-section p {
    max-width: 75rem;
    margin: 0 auto;
    font-size: 1.9rem;
}

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

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

    .top-section p {
        font-size: 1.6rem;
    }
}

/* Sa gar det till
========================================================================== */
.section-works .split-image {
    height: 70vh;
}

@media only screen and (max-width: 1350px) {
    .section-works .split-image {
        height: auto;
    }
}

/* Text-divider
========================================================================== */
.section-text-divider .section-block {
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.section-text-divider .col-0 {
    width: calc(35% - 1.5rem);
    padding-right: 5rem;
}

.section-text-divider .col-1 {
    width: 65%;
    padding-left: 0;
}

@media only screen and (max-width: 1024px) {
    .section-text-divider .section-block {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    .section-text-divider .col-0 {
        width: 100%;
        padding-right: 0;
    }

    .section-text-divider .col-1 {
        width: 100%;
    }
}

@media only screen and (max-width: 580px) {
    .section-text-divider .section-block {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
/* Nyhetsbrev
========================================================================== */
.section-nyhetsbrev .col-0{
    max-width: 70rem;
}
.section-nyhetsbrev .col-1{
  margin: auto;
}

#mc_embed_signup .button{
    background: rgb(var(--primary-color)) !important;
    min-width: 15rem !important;
    margin: 1rem 2rem 0 0 !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    border: 1px solid !important;
    border-radius: 2rem !important;
    height: 4rem !important;
}
#mc_embed_signup h2{
    margin-bottom: 0.5rem !important;
    font-size: 1.8rem !important;
}
#mc_embed_signup .mc-field-group{
    padding-bottom: 1rem !important;
}
#mc_embed_signup .mc-field-group input{
    border-radius: 2rem;
}
#mc_embed_signup .mc-field-group label{
    margin-bottom: 1rem !important;
    margin-left: 1rem !important;
}
/* Omdomen
========================================================================== */
.IndexPage .card-1-1,
.IndexPage .card-1-1 .slick-list {
    display: flex;
}

.IndexPage .card-1-1 .slick-slide,
.IndexPage .card-1-1 .slick-track {
    display: flex;
    align-items: stretch;
    margin-bottom: 2rem;
}

.IndexPage .card-1-1 .card-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
}

@media only screen and (max-width: 1350px) {
    .IndexPage .card-1-1 {
        flex-direction: column;
    }

    .IndexPage .card-1-1 .card-item {
        width: 100%;
        height: auto;
    }
}

/* CTA
========================================================================== */
.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

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

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

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

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

.of-wrapper .op-50-36 {
    object-position: 50% 36%;
} 

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

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

/* ==========================================================================
Undersida: Kundupplevelser
========================================================================== */
/* Logo slider
========================================================================== */
.section-slider {
    overflow: hidden;
}

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

.section-slider .card-item {
    margin-right: 2rem;
}

/* Kundcase 
========================================================================== */
.section-case .split-image {
    border-radius: 2rem;
}

.section-case .split-content {
    padding: 2rem 5rem;
}

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

/* ==========================================================================
Undersida: Kontakt
========================================================================== */
.section-contact .card-item.w-66 {
    width: calc(66.666% - 2rem);
}

.contact-item i {
    width: 2rem;
}

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

.contact-item a:hover {
    color: rgb(var(--secondary-color));
}

@media only screen and (max-width: 750px) {
    .section-contact .card-item.w-66 {
        width: 100%;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background: linear-gradient(90deg, rgba(var(--primary-color), 1) 0%, rgba(var(--secondary-color), 1) 100%);
}

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

.footer-menu {
    width: 20%;
}

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

.footer .text-label {
    padding: 0 0 1rem;
    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 {
    color: rgb(var(--white-color));
    text-decoration: none;
}

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

/* Social Menu */
.social-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-menu li {
    margin: 1rem 1rem 1rem 0;
}

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

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

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

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

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