/* One Tech Sweden AB */

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* Colors */
    --primary-color: 4, 134, 191;

    --black-color: 17, 17, 17;
    --gray-dark-color: 66, 68, 67;
    --gray-color: 145, 156, 170;
    --gray-light-color: 236, 241, 246;
    --white-color: 255, 255, 255;

    /* Layout */
    --col-padding: 3rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 140rem;

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

    /* Mobile nav */
    --activate-mobile-menu: 1000;
    --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-3 .section-block,
.p-3:not(.section-wrapper) {
    padding: 3rem;
}

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

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

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

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

/* Margins */
.mb-3,
.LayoutPage .cards-wrapper.w-100 .mb-3 {
    margin-bottom: 3rem;
}

/* Ovriga klasser */
.align-center .section-block-wrapper {
    align-items: 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 */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(var(--gray-dark-color));
}

.section-title {
    padding-bottom: .3em;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Orbitron", sans-serif;
    color: rgb(var(--gray-dark-color));
}

.small-title {
    padding-bottom: .3em;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    font-family: "Orbitron", sans-serif;
    color: rgb(var(--gray-dark-color));
}

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

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

/* List pills */
.list-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    list-style: none;
    margin: 0;
}

.list-pills li {
    margin: 0 5px 1rem;
}

.list-pills li>* {
    padding: 6px 1.3rem;
    text-decoration: none;
    transition: all .3s ease;
}

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

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


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

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

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

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

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

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

/* Knappar */
.btn,
.ContactSubmit {
    position: relative;
    display: inline-block;
    min-width: 15rem;
    max-width: calc(100% - 3.5rem);
    padding: 1.4rem 2rem;
    margin: 5px 5px 5px 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    overflow: visible;
    z-index: 1;
}

.btn::before,
.ContactForm .submit-button-container::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -3.5rem;
    width: calc(3.5rem + 1px);
    height: 100%;
    background-color: inherit;
    clip-path: polygon(0 0, 100% 0, 2% 100%, 0 100%);
    z-index: 0;
}

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

.btn-primary-filled:hover,
.submit-button-container:hover,
.ContactSubmit:hover {
    color: rgb(var(--white-color));
    background-color: rgb(var(--gray-dark-color));
}

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-size: var(--base-size);
    color: rgb(var(--gray-dark-color));
    text-decoration: none;
}

.arrow-link::after {
    content: ' \f105';
    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(1rem);
    transition: transform .4s ease;
}

/* Lank med ikon */
.icon-links {
    padding: 5px 10px;
    font-size: 1.4rem;
    color: rgb(var(--white-color));
    line-height: 1;
    text-decoration: none;
    transition: all .3s ease;
}

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

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

    .btn,
    .ContactSubmit {
        font-size: 1.3rem;
    }
}

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

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

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

/* Gradients */
.bg-gradient-white-gray {
    background: linear-gradient(to top, rgb(var(--gray-light-color)) 50%, rgb(var(--white-color)) 50%);
}

.bg-gradient-gray-white {
    background: linear-gradient(to top, rgb(var(--white-color)) 50%, rgb(var(--gray-light-color)) 50%);
}

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

/* Bakgrundsbilder och videos
========================================================================== */
.bg-image {
    position: relative;
    overflow: hidden;
}

.bg-image-wrapper {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.card-item {
    text-decoration: none;
    transition: all .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 .card-item.w-66 {
    width: calc((100% / 3) * 2 - 2rem);
    margin: 1rem;
}

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

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

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

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

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

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

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

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

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

.card-2-3 .card-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6.5rem;
    height: 6.5rem;
    padding: 2rem;
    margin: -1rem 0 0 -1rem;
    border-radius: 50% 50% 50% 0;
    transform: rotate(135deg);
    font-size: 2.5rem;
}

.card-2-3 .card-header p,
.card-2-3 .card-header i {
    transform: rotate(-135deg);
}

@media only screen and (max-width: 580px) {
    .card-2-3 .card-header {
        width: 5.5rem;
        height: 5.5rem;
        font-size: 2.2rem;
    }
}

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

.card-2-4 a.card-item:hover .card-body * {
    color: rgb(var(--primary-color));
}

.card-2-4 .card-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 6.5rem;
    height: 6.5rem;
    padding: 2rem;
    border-radius: 50% 50% 50% 0;
    transform: rotate(135deg);
    font-size: 2.5rem;
    margin-top: 1rem;
}

.card-2-4 .card-header p,
.card-2-4 .card-header i {
    transform: rotate(-135deg);
}

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

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

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

/* Card 3-6 */
.card-3-6 .card-item:not(:first-child) {
    min-height: 40rem;
}

.card-3-6 .card-item.w-66 {
    align-content: center;
}

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

.card-3-6 img.before {
    z-index: 1;
    opacity: 0;
    transition: .3s ease;
}

.card-3-6 .card-item:hover img.before {
    opacity: 1;
}

@media only screen and (max-width: 1024px) {
    .card-3-6 .card-item.p-5 {
        padding: 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .card-3-6 .card-item:not(:first-child) {
        min-height: 30rem;
    }
}

/* Split wrapper
========================================================================== */
.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1rem
}

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

.split-content {
    width: calc(50% - .5rem);
    padding: 5rem;
}

.split-image {
    width: calc(50% - .5rem);
}

/* Centrera content */
.split-wrapper .justify-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

    .split-image {
        width: 100%;
        border: none;
    }

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

@media screen and (max-width: 580px) {
    .split-content {
        padding: 1.5rem 1rem;
        background-color: transparent;
    }
}

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

/* Logo */
.header-logo {
    margin: 0 auto 0 0;
}

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

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

/* Dolj hem */
body:not(.EditMode) .TemplateMenu>li:nth-child(1) {
    display: none;
}

/* CTA */
.header-cta-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin: 0 0 0 4rem;
    list-style: none;
    min-width: 15rem;
}

.header-cta-wrapper li {
    margin: 0 2.5rem 0 .5rem;
}

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

.header-cta-wrapper .btn::before {
    right: -3rem;
    width: calc(3rem + 1px);
}

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

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

    /* Header logo */
    .header-logo img {
        padding: 1rem 0;
    }

    /* CTA */
    .header-cta-wrapper {
        margin: 0 0 0 2rem;
    }
}

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

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

    .header-cta-wrapper .btn::before {
        right: -2.5rem;
        width: calc(2.5rem + 1px);
    }
}

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

    /* CTA */
    .header-cta-wrapper {
        min-width: 0;
    }
}

/* Pills i split-wrapper
========================================================================== */
.pills-wrapper {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--gray-dark-color), .6);
    padding: 10rem 10rem 9rem 10rem;
}

.pills-split img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 580px) {
    .pills-wrapper {
        padding: 3rem 3rem 2rem 3rem;
    }

    .pills-split .list-pills li>* {
        font-size: 1.1rem;
    }
}

/* CTA
========================================================================== */
.section-cta {
    border: 1rem solid rgb(var(--white-color));
    background-image: linear-gradient(to right, rgb(var(--gray-dark-color), 1), rgb(var(--gray-dark-color), .6)), url('/assets/images/motor-2000px.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    align-items: flex-end;
    min-height: calc(93vh - var(--menu-height));
    background-image: linear-gradient(to right, rgb(var(--gray-dark-color), 1), rgb(var(--gray-dark-color), .6));
    border: 1rem solid rgb(var(--white-color));
    border-top: none;
    border-bottom: none;
}

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

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

@media only screen and (max-width: 1024px) {
    .top-section {
        background-size: 100% 5rem;
    }

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

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

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

@media only screen and (max-width: 580px) {
    .section-usp .cards-wrapper.w-25 .card-item {
        width: 100%;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: flex-end;
    min-height: 45rem;
    background-image: linear-gradient(to right, rgb(var(--gray-dark-color), 1), rgb(var(--gray-dark-color), .6));
    border: 1rem solid rgb(var(--white-color));
    border-top: none;
    border-bottom: none;
}

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

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

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

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

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

/* ==========================================================================
Undersida: Vattenpolering & vattenblastring
========================================================================== */

/* Vad kan vi vattenpolera?
========================================================================== */
@media only screen and (min-width: 1025px) {
    .section-what-items .section-block {
        padding-top: 0;
    }
}

/* Sa gar det till – steg for steg
========================================================================== */
.section-scroll {
    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 {
    height: auto;
}

/* Card item */
.scroll-wrapper .card-item {
    margin: 0 2rem 0 0;
}

/* Slick Arrow */
.scroll-wrapper .slick-arrow {
    position: absolute;
    top: auto;
    bottom: -5rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgb(var(--primary-color));
    opacity: 1;
}

.scroll-wrapper .slick-arrow:hover {
    background-color: rgb(var(--gray-dark-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;
}

/* Vanliga fragor
========================================================================== */
.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.accordion-item {
    width: 100%;
    margin-bottom: 1rem;
}

.accordion-header {
    position: relative;
    width: calc(100% - 6rem);
    padding: 2rem 6rem 2rem 2rem;
    text-decoration: none;
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white-color));
}

.accordion-header:hover {
    background-color: rgb(var(--gray-dark-color));
}

.accordion-header::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -6rem;
    width: calc(6rem + 1px);
    height: 100%;
    background-color: inherit;
    clip-path: polygon(0 0, 100% 0, 2% 100%, 0 100%);
}

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

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

.accordion-body {
    padding: 2rem;
}

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

@media only screen and (max-width: 580px) {
    .accordion-header {
        padding: 1.5rem 4.5rem 1.5rem 1.5rem;
    }

    .accordion-header::before {
        right: -5rem;
        width: calc(5rem + 1px);
    }

    .accordion-header::after {
        right: 1.5rem;
        top: 2rem;
    }

    .accordion-body {
        padding: 1.5rem 0;
    }
}

/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */

/* Kontaktformular
========================================================================== */
.ContactForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgb(var(--gray-light-color));
    padding: 2.5rem 4rem 4rem;
}

.ContactForm div {
    width: 49%;
}

.ContactForm .file-field,
.ContactForm .file-upload-container,
.ContactForm .file-dropzone,
.ContactForm .textarea-field {
    width: 100%;
}

.ContactForm p {
    position: relative;
    left: 10px;
    bottom: -13px;
    display: inline-block;
    padding: 5px 3px;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: rgb(var(--gray-dark-color));
    background-color: rgb(var(--gray-light-color));
}

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

.ContactForm .file-dropzone {
    border-color: rgb(var(--primary-color));
    border-radius: 1rem;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm .file-dropzone:not(.illegal),
.ContactForm textarea:not(.illegal) {
    background-color: transparent;
}

/* Skicka knapp */
.ContactForm .submit-button-container {
    position: relative;
    width: calc(100% - 3.5rem);
    margin: 0;
}

.ContactSubmit {
    margin: 0;
    padding-left: 5.5rem;
}

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

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

    .ContactForm div {
        width: 100%;
    }
}

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

    .ContactSubmit {
        padding-left: 3rem;
    }
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    padding: 0 5rem;
    background-color: rgb(var(--gray-dark-color));
    border: 1rem solid rgb(var(--white-color));
    border-top: none;
}

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

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

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

.footer .small-title {
    text-transform: uppercase;
}

.footer .text-label {
    padding: 0 0 1rem;
    line-height: 1;
}

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

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

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

/* 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(--primary-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 {
    opacity: .6;
    margin-left: 1rem;
    width: 2.5rem;
    filter: invert();
}

@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 */
    .footer-top {
        padding: 5rem 0;
    }

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

    /* WebbEss Stamp */
    .webbess-stamp {
        margin: 0 auto 2rem;
    }
}