/* Space4Action */
/* Modal */
@import url('https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css'); 

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

/* Fonts - Furuta PT */
@import url("https://use.typekit.net/abk4jxl.css");

/* ==========================================================================
Generellt
========================================================================== */
:root {
    /* 	Colors */
    --primary-color: 230, 150, 53;
    --secondary-color: 253, 118, 82;

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

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

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

    /* 	Mobile nav */
    --activate-mobile-menu: 980;
    --mobile-menu-height: 8rem;
    --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-2 .section-block,
.pt-2:not(.section-wrapper) {
    padding-top: 2rem;
}

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

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

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

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

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

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

/* Margins */

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


@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: "TikTok Sans", sans-serif;
}

/* Rubriker */
.text-label {
    padding-bottom: 1em;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(var(--primary-color));
    font-family: futura-pt-bold, sans-serif;
}

.section-title {
    padding-bottom: .3em;
    font-size: 4rem;
    font-weight: 200;
    line-height: 1.2;
    color: rgb(var(--primary-color));
    font-family: futura-pt-bold, sans-serif;
}

.small-title {
    padding-bottom: .2em;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: rgb(var(--primary-color));
    text-transform: uppercase;
    font-family: futura-pt-bold, sans-serif;
}

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

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

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

.list-arrow li::before {
    content: '\f061';
}

/* 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;
}
.justify-center{
    justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

.btn-white-filled:hover {
    color: rgb(var(--white-color));
    border: 1px solid rgb(var(--white-color));
    background-color: transparent;
}

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

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

.icon-links i {
    margin-right: .5rem;
}

.icon-links:hover {
    color: rgb(var(--white-color));
    text-decoration: none;
    background-color: rgb(var(--secondary-color));
}

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

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

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

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

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

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

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

/* Grafiska element
========================================================================== */
/* Gradients */
.gradient-primary{
    background: linear-gradient(135deg, rgb(var(--primary-color)), rgb(var(--primary-color), .7));

}
/* Border-radius */
.br-2 {
    border-radius: 2rem;
    overflow: hidden;
}

/* Borders */
.border-top-primary {
    border-top: 1px solid rgb(var(--primary-color));
}

/* Box shadow */
.box-shadow {
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
}

/* Pil */
.arrow-primary-right {
    position: relative;
}

.arrow-primary-right::after {
    content: '\002B';
    position: absolute;
    top: 5rem;
    right: 0;
    font-size: 5.2rem;
    font-weight: 700;
    line-height: 1;
    color: rgb(var(--white-color));
    transform: translateX(50%);
}

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

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

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

/* Bredder */
.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: 1rem 0;
}

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

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

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

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

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

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

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

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

/* Card 3-1 */
.card-3-1 .image-wrapper {
    height: 25rem;
}
.card-3-1 .small-title{
   font-size: 2rem;
}

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

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

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

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

    .split-content {
        width: 100%;
        max-width: 70rem;
        padding: 2rem;
    }

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

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

/* Modal
========================================================================== */
  .modal {
    max-width: 75rem;
    width: 100%;
    max-height: 75vh;
    padding: 4rem;
    border-radius: 0;
    box-shadow: none;
    overflow: auto;
  }

  .blocker {
    z-index: 100;
  }

  .modal a.close-modal {
    display: none;
  }

  .modal .custom-close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
  }

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

    .blocker {
      padding: 1rem;
    }
  }

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

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

/* Nav */
.TemplateMenu a {
    font-size: 1.7rem;
    font-weight: 400;
    color: rgb(var(--black-color));
    font-family: futura-pt, sans-serif;
}

/* Hover effect */
header:not(.mobile-menu) .TemplateMenu>li.active a:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

header:not(.mobile-menu) .TemplateMenu>li>a:before {
    visibility: hidden;
    position: absolute;
    content: "";
    height: 2px;
    top: 60px;
    width: 50%;
    left: calc(25% + 2rem);
    background-color: rgb(var(--primary-color));
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1rem 2rem;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

@media only screen and (max-width: 580px) {
    /* CTA  */
    .header-cta-wrapper .btn {
        padding: 0.7rem 1.5rem;
    }
}

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

/* Top-section
========================================================================== */
.top-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--menu-height));
    /*background-color: rgb(var(--primary-color), .3);*/
}

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

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

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

.text-osynlig {
transition: opacity 1s ease;
}
.text-osynlig.osynlig {
opacity: 0;
}

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

@media only screen and (max-width: 580px) {
    .top-section {
        align-items: flex-start;
        padding-top: 15rem;
    }

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

/* CTA-bar
========================================================================== */
.cta-bar-wrapper {
    z-index: 1;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    display: flex;
    width: 66rem;
    max-width: calc(100% - 2rem);
    padding: 1rem;
    padding-right: 0;
    padding-left: 0;
    margin: 0 auto;
    border-radius: 1rem;
    background: rgb(var(--primary-color), .85);
    border: 1px solid rgb(var(--white-color), .2);
    transform: translateX(-50%);
}

.EditMode .cta-bar-wrapper {
    position: relative;
}

.cta-bar-wrapper p {
    padding: 0;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.3;
    color: rgb(var(--white-color));
    font-family: futura-pt-bold, sans-serif;
    text-transform: uppercase;
}

.cta-bar-wrapper p.smaller-text {
    font-size: 1.3rem;
}

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

/* Forsta och Tredje */
.cta-bar-wrapper .item:nth-child(1),
.cta-bar-wrapper .item:nth-child(2) {
    display: flex;
    align-items: center;
    width: calc(100% / 2 - 2rem);
}

.cta-bar-wrapper .item:nth-child(1) {
    padding-right: 2rem;
}

/*.cta-bar-wrapper .item:nth-child(3) {
    padding-left: 2rem;
}*/

.cta-bar-wrapper .item:nth-child(1) .image-wrapper {
    width: 10rem;
}

.cta-bar-wrapper .item:nth-child(3) .icon-wrapper {
    /*width: 9rem;*/
    /*margin-left: 2rem;*/
    font-size: 5rem;
}

/*.cta-bar-wrapper .item:nth-child(3) p {
    text-align: right;
}*/

/* Andra */
.cta-bar-wrapper .item:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 0 2rem;
    text-align: center;
    border-left: 1px solid rgb(var(--white-color));
    /*border-right: 1px solid rgb(var(--white-color));*/
}

.apps {
    display: flex;
    justify-content: center;
    align-items: center;
}

.apps .image-wrapper {
    height: 4rem;
    margin: 0 5px 5px;
}

/* Andra ordningen inom CTA Baren */
.cta-bar-wrapper .item:nth-child(1) {
  order: 2; /* QR i mitten */
  border-left: 1px solid rgb(var(--white-color));
  /*border-right: 1px solid rgb(var(--white-color));*/
  padding-left: 2rem;
  justify-content: center;
}

.cta-bar-wrapper .item:nth-child(2) {
  order: 1; /* Apps till vanster */
  border: none;
  padding-left: 0;
}

/*.cta-bar-wrapper .item:nth-child(3) {
  order: 3; /* Kontakt till hoger */


@media only screen and (max-width: 850px) {
    .cta-bar-wrapper {
        padding: 1rem;
    }

    .cta-bar-wrapper p {
        font-size: 1.4rem;
    }

    /* Forsta */
    .cta-bar-wrapper .item:nth-child(1) {
        padding-right: 1rem;
    }

    /* Andra */
    .cta-bar-wrapper .item:nth-child(2) {
        padding: 0 1rem;
    }

    /* Tredje
    .cta-bar-wrapper .item:nth-child(3) .icon-wrapper {
        font-size: 4rem;
    }

    .cta-bar-wrapper .item:nth-child(3) {
        padding-left: 1rem;
    } */
}

/*@media only screen and (max-width: 580px)*/
@media only screen and (max-width: 700px) {
  .cta-bar-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  /* QR + kontakt bredvid varandra */
  .cta-bar-wrapper .item:nth-child(1),
  .cta-bar-wrapper .item:nth-child(2) {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    order: 1;
  }

  .cta-bar-wrapper .item:nth-child(1) {
    padding-right: 1rem;
    /* Efter att ha andrat ordningen pa storre skarmar */
    border: none;
  }

  .cta-bar-wrapper .item:nth-child(3) {
    border-left: 1px solid rgb(var(--white-color));
    padding-left: 1rem;
  }

  .cta-bar-wrapper .item:nth-child(1) .image-wrapper {
    width: 6rem;
    margin: 0 0.5rem;
  }

  .cta-bar-wrapper .item:nth-child(3) .icon-wrapper {
    font-size: 4rem;
    margin: 0 0.5rem;
  }

  /* Andra langst ner med full width */
  .cta-bar-wrapper .item:nth-child(2) {
    order: 2;
    width: 100%;
    padding: 1rem 0 0;
    border-top: 1px solid rgb(var(--white-color));
    border-left: none;
    border-right: none;
    text-align: center;
  }

  .cta-bar-wrapper p {
    font-size: 1.4rem;
  }

    .cta-bar-wrapper .btn {
    padding: 1rem 1.2rem;
  }
}

/* Fordelar (Tydliga resultat)
========================================================================== */
.benefits-wrapper p {
    display: flex;
}

.benefits-wrapper p:nth-child(1) {
    padding-bottom: .5rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid rgb(var(--white-color));
}

.benefits-wrapper span:nth-child(1) {
    flex-shrink: 0;
    width: 24rem;
}

.benefits-wrapper p:not(:nth-child(1)) span {
    font-size: 1.5rem;
}

@media only screen and (max-width: 680px) {
    .benefits-wrapper p:nth-child(1) {
        display: none;
    }

    .benefits-wrapper p {
        display: block;
    }

    .benefits-wrapper p:not(:nth-child(1)) span {
        display: block;
    }

    .benefits-wrapper span:nth-child(1) {
        width: unset;
        margin-right: 5px;
    }
}

/* CTA-sektion
========================================================================== */
.section-cta .section-block {
    padding-top: 20rem;
    padding-bottom: 20rem;
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

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

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

.cta-wrapper .btn {
    display: block;
}

.kampanj-wrapper{
border: 0.1rem solid rgb(var(--white-color));
padding: 2rem;
border-radius: 2rem;
background-color: rgb(var(--white-color), .8);
}

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

    .cta-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .cta-wrapper .btn {
        display: inline-block;
    }
}

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

/* Hero - Grundkod
========================================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 40rem;
    text-align: center;
    background-color: rgb(var(--black-color), .3);
}

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

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

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

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

/* ==========================================================================
Undersida: Produkt
========================================================================== */
.includes-wrapper .card-item.bg-gray-light {
    width: calc(100% / 2 - 4rem);
}

.includes-wrapper .card-item:nth-child(2) {
    align-self: center;
}

.includes-wrapper .section-title {
    font-size: 8rem;
}

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

    .includes-wrapper .card-item,
    .includes-wrapper .card-item.bg-gray-light {
        width: 100%;
    }
}

/* ==========================================================================
Undersida: FAQ
========================================================================== */
.accordion-item {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: rgb(var(--gray-light-color));
    transition: .3s ease;
}

.accordion-header {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 2rem 2rem;
    text-decoration: none;
}

.accordion-header::after {
    content: "\f078";
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    color: rgb(var(--primary-color));
    transition: .5s ease;
}

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

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

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

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

    .accordion-header::after {
        right: 1rem;
    }

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

/* ==========================================================================
Undersida: Kontakta oss
========================================================================== */
.section-contact .ContactForm {
    max-width: 90rem;
    margin: 0 auto;
}

.ContactForm p {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgb(var(--black-color));
    font-family: futura-pt, sans-serif;
}

.ContactForm input[type="text"]:not(.illegal),
.ContactForm input[type="number"]:not(.illegal),
.ContactForm input[type="email"]:not(.illegal),
.ContactForm input[type="tel"]:not(.illegal),
.ContactForm input[type="date"]:not(.illegal),
.ContactForm input[type="datetime-local"]:not(.illegal),
.ContactForm select:not(.illegal),
.ContactForm textarea:not(.illegal),
.ContactForm .file-dropzone:not(.illegal) {
    font-size: 1.5rem;
    border-color: transparent;
    border-radius: 1rem;
    background-color: rgb(var(--gray-light-color));
}

.section-cta  .card-item {
        background: rgb(var(--primary-color), .85);
        padding: 4rem;
        margin-top: 4rem;
        border-radius: 2rem;
}
/* ==========================================================================
Footer
========================================================================== */
.footer {
    background: linear-gradient(90deg, rgb(var(--secondary-color)) 0%, rgb(var(--primary-color)) 75%);
}

.footer-container {
    padding: 0 2rem;
}

.footer a:hover {
    text-decoration: underline;
}

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

.footer-menu {
    width: 20%;
    margin-bottom: 2rem;
}

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

.footer .small-title {
    font-size: 2rem;
    letter-spacing: normal;
    color: rgb(var(--white-color));
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

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

.footer-top .logo {
    width: 15rem;
    max-width: 100%;
    margin: 1rem 0 0;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

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

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

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

.footer-bottom p,
.footer-bottom a {
    font-size: 1.4rem;
    color: rgb(var(--white-color));
    text-decoration: none;
}

.footer-bottom .circle-icon {
    width: 3rem;
    height: 3rem;
}

.footer-bottom em::before {
    font-size: 1.4rem;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
    filter: invert();
}

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

    /* Footer top */
    .footer-menu {
        width: 100%;
    }

    .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%;
    }

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