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

/* Typsnitt â€“ DM Sans */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&amp;display=swap");

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

/* ==========================================================================
Generellt 
========================================================================== */
:root {
    /* 	Layout  */
    --col-padding: 5rem;
    --menu-height: 8rem;
    --menu-height-scrolled: 8rem;
    --section-width: 150rem;

    /* 	Colors */
    --primary-color: 233,105,44;
    --primary-light-color: 238, 136, 89;

    --black-color: 0, 0, 0;
    --gray-dark-color: 40, 44, 48;
    --gray-color: 83, 86, 89;
    --gray-light-color: 242, 242, 242;
    --white-color: 255, 255, 255;

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

    /* 	Mobile nav */
    --activate-mobile-menu: 1380;
    --mobile-menu-height: 6rem;
    --mobile-menu-bg: var(--black-color);
    --menu-color: rgb(var(--white-color));
}

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

.section-block-wrapper {
    max-width: var(--section-width);
}

.mw-1300 .section-block-wrapper {
    max-width: 130rem;
}

.mw-none .section-block-wrapper {
    max-width: none;
}

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

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

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

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

/*margins */
.mt-3 {
    margin-top: 3rem;
}

.mt--10 {
    margin-top:-10rem;
}

@media only screen and (max-width: 1024px) {
    .section-block {
        padding: 7.5rem 3rem;
    }
}

@media only screen and (max-width: 580px) {
    .section-block {
        padding: 5rem 2rem;
    }

}

/* Text och typsnitt
========================================================================== */
body {
    font-family: 'DM Sans', sans-serif;
    color: rgb(var(--black-color));
}

/* rubriker */
.section-title {
    font-size: 5.5rem;
    line-height: 1;
    font-weight: 700;
    padding-bottom: 2rem;
}

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

.text-label {
    font-size: 1.3rem;
    text-transform:uppercase;
    letter-spacing: 0.2rem;
    line-height: 1.3;
    padding-bottom: 2rem;
    font-weight: 300;
}


.small-title::before {
    content: '';
    position: relative;
    right: 1.3rem;
    display: inline-block;
    height: 0.1rem;
    width: 2.5rem;
    margin-bottom: .3em;
    margin-left: 1.3rem;
    border-bottom: 2px solid rgb(var(--primary-color));
}

.text-title {
    font-size: var(--base-size);
    line-height: 1.4;
    font-weight: 600;
}

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

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

a:hover {
    text-decoration: none;
}

/* Ovriga klasser */
.db {
    display: block;
}

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

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

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

.text-block-center {
    max-width: 85rem;
    margin: 0 auto;
}

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

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

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

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

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

    .text-block-center {
        margin: 0;
    }

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

    :root {
        --base-size: 1.6rem;
    }
}

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

.btn-wrapper.multiple .btn:not(:last-child) {
    margin-right: 2rem;
}

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

/* Knappar */
.btn,
.ContactSubmit {
    display: inline-block;
    min-width: 20rem;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    line-height: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

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

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

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

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

/* vit knapp */
.btn-white-filled {
    color: rgb(var(--black-color));
    border: 1px solid rgb(var(--white-color));
    background-color: rgb(var(--white-color));
}

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

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

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

/* Arrow link */
.arrow-link {
    padding-right: 1rem;
    font-weight: 500;
    font-size: 1.6rem;
    color: rgb(var(--white-color));
}

.arrow-link::after {
    content: " \f178";
    display: inline-block;
    margin-left: 0.5rem;
    font-family: "Font Awesome 5 Pro";
    font-size: 0.7em;
    transition: transform 0.4s ease;
}

.arrow-link:hover::after {
    transform: translateX(1rem);
    transition: transform 0.4s ease;
}

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

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

.circle-icon em:before,
.circle-icon i:before {
    font-size: var(--base-size);
}

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

    .btn-wrapper.multiple .btn:not(:last-child) {
        margin-right: 0rem;
        margin-bottom:2rem;
    }
}

/* Farger
========================================================================== */
/* Bakgrundsfarger */

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

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

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

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

.gradient-white-black {
    background-image: linear-gradient(to bottom, rgba(var(--white-color)) 60%, rgba(var(--black-color)) 60%);
}

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

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

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

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


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

.br-1{
    border-radius: 1rem;
}
/* Bakgrunder */
.bg-wave-black-bottom .section-block {
    background-image: url(/assets/images/waves/wave-bottom.png);
    background-size: 100% 50rem;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.bg-wave-black-top .section-block {
    background-image: url(/assets/images/waves/wave-top.png);
    background-size: 100% 50rem;
    background-repeat: no-repeat;
    background-position: center top;
}

@media screen and (max-width: 580px) {
    .bg-wave-black-bottom .section-block {
        background-size: 100% 20rem;
    }
}
  
/* Cards
========================================================================== */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.cards-wrapper.space-between {
    justify-content: space-between;
}

/* Generellt */
.card-item {
    width: 100%;
    transition: .3s ease;
}

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

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

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

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

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

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

/* Generellt */
a.card-item {
    transition: .3s ease;
}

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

@media only screen and (max-width: 750px) {
    /* Bredder */
    .cards-wrapper.w-33 .card-item, .cards-wrapper.w-50 .card-item  {
        width: 100%;
        margin: 1rem 0;
    }

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

@media only screen and (max-width: 350px) {
    /* Bredder */
    .cards-wrapper.w-50-1 .card-item  {
        width: 100%;
        margin: 1rem 0;
    }
}

/* Card 1-2 */
.card-1-2 .card-footer {
    display: flex;
    padding: 0 2rem 1rem;
    margin: auto 0 0;
}

.card-1-2 .quote-sign {
    width: 7rem;
    height: 7rem;
    padding: 1.5rem;
    margin: -1.5rem 2rem 0 0;
    border-radius: 50%;
    border: 3px solid rgb(var(--gray-light-color));
}

.card-1-2 .card-footer p {
    padding: 1rem 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.card-1-2 .card-footer span {
    display: block;
    text-transform: uppercase;
}

/* Card 2-4 */
.card-2-4 .card-item {
    background-color: rgb(var(--gray-light-color));
    border-radius: 1rem;
    margin-bottom: 2rem;
    display: flex;
}

.card-2-4 .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    padding: 0 2rem 0 0;
    margin: 0 2rem 0 0;
    border-right: 1px solid rgb(var(--gray-dark-color), .5);
}

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

.card-2-4 .card-body {
    flex: 1 1 0%;
}

.card-2-4 p {
    font-size: 1.4rem;
    padding: 0;
}

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

    .card-2-4 .card-item {
        padding: 2rem;
    }

    .card-2-4 .card-header {
        width: 3rem;
        padding: 0 1rem 0 0;
        margin: 0 1rem 0 0;
    }

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

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

.card-3-1 .image-wrapper {
    height: 25rem;
}

/* Logos 1 */
.logos-1 .card-item {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border: 1px solid rgb(var(--gray-light-color));
    border-radius: 3px;
    padding: 4rem;
}

.logos-1 img {
    width: auto;
    max-height: 12rem;
    filter: grayscale() opacity(.5);
    transform: scale(.94);
    transition: 0.2s ease-in-out;
}

.logos-1 .card-item:hover img{
    opacity: 1;
    filter: none;
    transform: scale(1);
}

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

    .logos-1 img {
        max-height: 8rem;
    }
}

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

/* Bakgrundsvideo
========================================================================== */
.bg-video {
    position: relative;
}

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

.bg-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

/* Header / Navigation
========================================================================== */

header {
    background-color: rgb(var(--black-color));
}
/* Logo */
.header-logo {
    flex: 1 1 0px;
}

/* Nav */
.TemplateMenu a {
    font-size: 1.2rem;
    text-transform:uppercase;
    letter-spacing: 0.3rem;
    color: rgb(var(--white-color));
} 

/* CTA  */
.header-cta-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 0px;
    padding: 0;
    margin: 0;
    list-style: none;
}

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

.header-cta-wrapper .btn {
    min-width: unset;
    padding: 1.5rem 3rem; 
}

.TemplateMenu a:hover {
    color: rgb(var(--primary-color));
}

/* Mobilmeny */
.mobile-menu .container {
    height: var(--mobile-menu-height);
    padding: 0 0.5rem 0 2rem;
}

.mobile-menu .header-cta-wrapper .btn {
    min-width: unset;
    padding: 1.2rem 1.5rem; 
    font-size: 1.1rem;
}

.mobile-menu .header-logo {
    flex: inherit;
}

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

/* Modal som Ã¶ppnas automatiskt
========================================================================== */
body:not(.EditMode) .section-auto-modal {
    display: none;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--black-color),.7);
  }

  body:not(.EditMode) .section-auto-modal .section-block {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    max-width: 55rem;
    max-height: 75vh;
    padding: 0rem;
    border-radius:0;
    overflow: auto;
    background: rgb(var(--white-color));
    transform: translate(-50%,-50%);
  }

  .section-auto-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
  }
  @media only screen and (max-width: 530px) {
    body:not(.EditMode) .section-auto-modal .section-block {
        min-height: 65vh;
      }
  }

  @media only screen and (max-width: 450px) {
    body:not(.EditMode) .section-auto-modal .section-block {
      padding: 3rem 2rem;
    }
  }

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

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

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

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

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 2rem;
    border-bottom: 1px solid rgb(var(--primary-color));
}

.popup-header .text-title {
    padding: 0;
    line-height: 1;
}

.icon-close-popup {
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
}

.icon-close-popup:hover {
    background-color: rgb(var(--gray-light-color));
}

.popup-content {
    padding: 1rem 2rem 3rem;
    max-height: 30rem;
    overflow: auto;
}


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

/* Top-section
========================================================================== */
.top-section {
  overflow: hidden;
}

.top-section .section-block {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background-color: rgb(var(--black-color), 0.4);
    background-image: url(/assets/images/waves/wave-topsection-2.svg);
    background-size: 100% 10rem;
    background-repeat: no-repeat;
    background-position: center bottom;
  }

.top-section h1 {
    padding-bottom: 0;
    margin:0 auto 2rem;
    max-width:70rem;
    text-align: center;
    color: rgb(var(--white-color));
}

.top-section p {
    text-align: center;
    margin:0 auto;
    max-width:70rem;
}


.cancerfonden{
    max-width: 25rem;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 2rem;
}

@media only screen and (max-width:920px) {
    .cancerfonden{
       position: relative;
       margin: auto;
       max-width: 20rem;
       margin-top: 2rem;
    }
      
    }

@media only screen and (max-width:1024px) {
    
.top-section h1 {
    max-width:50rem;
} 
  
}

@media only screen and (max-width: 580px) {
    .top-section .section-block {
        padding-top: 12rem;
    }

    .top-section .section-block {
        background-size: 100% 5rem;
        min-height: 90vh;
      } 
}

@media only screen and (max-width: 360px) {
    .top-section .section-block {
        padding-top: 5rem;
    }

    .top-section .section-block {
        background-size: 100% 5rem;
        min-height: 90vh;
      }
  
      
    
}

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

.mt--5 {
    margin-top:-5rem;
}

.mt--6 {
    margin-top:-6rem;
}

@media screen and (max-width: 1100px) {
    .split-content {
        width: 100%;
    }

    .split-image {
        width: 100%;
        min-height: 20rem;
    }
    
    .mt--5 {
        margin-top:0rem;
    }
}

@media screen and (max-width: 580px) {
    .split-wrapper {
        background: transparent;
    }

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

    .split-content.bg {
        padding: 5rem 0;
    }
}

.section-insta {
    overflow:hidden;
}

/* ==========================================================================
kontakt
========================================================================== */

.section-contact .col-1 {
    border-left: 1px solid rgb(var(--gray-light-color));
}

.ContactForm input,
.ContactForm textarea {
    border-radius: 5px;
}

/* Karta */
.section-map {
    font-size: 0;
}

.section-map iframe {
    height: 50rem;
}

@media screen and (max-width: 980px) {
    .section-contact .col-1 {
        border-left: none;
        border-top: 1px solid rgb(var(--gray-light-color));
        margin-top: 3rem;
        padding: 3rem 0 0;
    }

    .section-map iframe {
        height: 30rem;
    }
}
/* ==========================================================================
Undersida Boka tid
========================================================================== */
.book-wrapper{
    box-shadow: 0 1rem 3rem rgba(var(--black-color), .1);
    padding: 2rem;
    max-width: 80rem;
    margin: auto;
    border-radius: 2rem;
}
.book-wrapper h2,
.book-wrapper p{
text-align: center;
}

/* ==========================================================================
Footer
========================================================================== */
.footer {
    background-color: rgb(var(--black-color));
    padding: 0 5rem;
}

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
}

/* Footer top */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8rem 0 5rem;
    border-bottom: 1px solid rgb(var(--white-color), .5);
}

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

.footer-menu-small {
    width: 8%;
}

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

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

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
 
.footer-top li,
.footer-top p,
.footer-top a:not(.circle-icon) {
    color: rgb(var(--white-color));
}

/*.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: end;
}*/

.gasell {
    background-color: white;
    padding: 1rem;
    border-radius: 1rem;
    max-width: 7rem;
    height: fit-content;
    margin: 0 1rem 1rem 0;
}
.reco {
    background-color: white;
    padding: 0rem;
    border-radius: 50%;
    max-width: 10rem;
    height: fit-content;
    margin: 0 1rem 1rem 0;
}

.reco-badges {
    margin-bottom: 1rem;
}

.reco-badges div {
    display: inline-block;
    width: 8rem;
    margin: 0 5px;
}
.sigill-bottom{
    display: flex;
}

.branschvinnare {
   max-height: 8rem;
    border-radius: 1rem;
    background: rgb(var(--white-color));
    margin-top: 2rem;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 1.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;
    filter: invert();
}
@media only screen and (max-width: 1500px) {
.branschvinnare {
   max-height: 7rem;
}
}
@media only screen and (max-width: 1350px) {
.branschvinnare {
   max-height: 6rem;
}
}
@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;
    }

    .footer-logos {
        align-items: start;
    }
}

@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;
    }
}</pre></body></html>