.elementor-13 .elementor-element.elementor-element-b42ace1{--display:flex;}/* Start custom CSS *//* =========================================================
   NORRFIX24 – GLOBAL STYLESHEET
   Version 1.0
   ========================================================= */


/* =========================================================
   1. DESIGNVARIABLER
   Ändra färger, bredd och rundningar här.
   ========================================================= */

:root {
    --nf24-green: #19a765;
    --nf24-green-dark: #128251;
    --nf24-green-light: #eaf8f1;

    --nf24-dark: #182129;
    --nf24-dark-soft: #222e37;
    --nf24-text: #1d2933;
    --nf24-text-light: #5f6d76;

    --nf24-white: #ffffff;
    --nf24-light: #f4f7f6;
    --nf24-border: #dce5e1;

    --nf24-warning: #f5a623;

    --nf24-max-width: 1200px;
    --nf24-content-width: 760px;

    --nf24-radius-small: 8px;
    --nf24-radius: 14px;
    --nf24-radius-large: 24px;

    --nf24-shadow-small: 0 6px 18px rgba(16, 35, 28, 0.08);
    --nf24-shadow: 0 18px 45px rgba(16, 35, 28, 0.12);

    --nf24-transition: 180ms ease;
}


/* =========================================================
   2. GRUNDSTIL
   ========================================================= */

.nf24-page,
.nf24-page *,
.nf24-section,
.nf24-section * {
    box-sizing: border-box;
}

.nf24-page,
.nf24-section {
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--nf24-text);
}

.nf24-page {
    width: 100%;
    overflow: hidden;
    background: var(--nf24-white);
}

.nf24-section {
    position: relative;
    width: 100%;
    padding: 88px 24px;
}

.nf24-section--light {
    background: var(--nf24-light);
}

.nf24-section--white {
    background: var(--nf24-white);
}

.nf24-section--dark {
    background: var(--nf24-dark);
    color: var(--nf24-white);
}

.nf24-container {
    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
}

.nf24-content {
    width: 100%;
    max-width: var(--nf24-content-width);
    margin: 0 auto;
}

.nf24-center {
    text-align: center;
}

.nf24-hidden {
    display: none !important;
}


/* =========================================================
   3. TYPOGRAFI
   ========================================================= */

.nf24-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--nf24-green);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nf24-heading {
    margin: 0;
    color: var(--nf24-text);
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.nf24-heading--medium {
    font-size: clamp(30px, 4vw, 48px);
}

.nf24-heading--small {
    font-size: clamp(25px, 3vw, 36px);
}

.nf24-section--dark .nf24-heading {
    color: var(--nf24-white);
}

.nf24-lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--nf24-text-light);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 450;
    line-height: 1.55;
}

.nf24-center .nf24-lead {
    margin-left: auto;
    margin-right: auto;
}

.nf24-section--dark .nf24-lead {
    color: rgba(255, 255, 255, 0.78);
}

.nf24-text {
    margin: 0;
    color: var(--nf24-text-light);
    font-size: 17px;
    line-height: 1.7;
}

.nf24-section--dark .nf24-text {
    color: rgba(255, 255, 255, 0.76);
}

.nf24-highlight {
    color: var(--nf24-green);
}


/* =========================================================
   4. KNAPPAR
   ========================================================= */

.nf24-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.nf24-center .nf24-buttons {
    justify-content: center;
}

.nf24-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: var(--nf24-radius-small);

    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;

    cursor: pointer;
    transition:
        transform var(--nf24-transition),
        background-color var(--nf24-transition),
        border-color var(--nf24-transition),
        box-shadow var(--nf24-transition);
}

.nf24-button:hover {
    transform: translateY(-2px);
}

.nf24-button:focus-visible {
    outline: 3px solid rgba(25, 167, 101, 0.28);
    outline-offset: 3px;
}

.nf24-button--primary {
    background: var(--nf24-green);
    color: var(--nf24-white) !important;
    box-shadow: 0 10px 25px rgba(25, 167, 101, 0.25);
}

.nf24-button--primary:hover {
    background: var(--nf24-green-dark);
    color: var(--nf24-white) !important;
}

.nf24-button--secondary {
    border-color: var(--nf24-border);
    background: var(--nf24-white);
    color: var(--nf24-text) !important;
}

.nf24-button--secondary:hover {
    border-color: var(--nf24-green);
    color: var(--nf24-green-dark) !important;
}

.nf24-button--dark {
    background: var(--nf24-dark);
    color: var(--nf24-white) !important;
}

.nf24-button--dark:hover {
    background: var(--nf24-dark-soft);
}

.nf24-button--large {
    min-height: 62px;
    padding: 17px 30px;
    font-size: 19px;
}

.nf24-button--full {
    width: 100%;
}


/* =========================================================
   5. HEADER
   ========================================================= */

.nf24-header {
    position: relative;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(220, 229, 225, 0.9);
    background: rgba(255, 255, 255, 0.96);
}

.nf24-header__inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
    padding: 14px 24px;
}

.nf24-logo {
    display: inline-flex;
    align-items: baseline;
    color: var(--nf24-dark) !important;
    font-size: 29px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
    text-decoration: none !important;
}

.nf24-logo__fix {
    color: var(--nf24-green);
}

.nf24-logo__24 {
    margin-left: 2px;
    color: var(--nf24-dark);
}

.nf24-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.nf24-header__status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.nf24-header__status-label {
    color: var(--nf24-text-light);
    font-size: 13px;
    font-weight: 650;
}

.nf24-header__phone {
    color: var(--nf24-dark) !important;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none !important;
}

.nf24-header__phone:hover {
    color: var(--nf24-green) !important;
}


/* =========================================================
   6. HERO
   ========================================================= */

.nf24-hero {
    position: relative;
    display: flex;
    min-height: 680px;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(24, 33, 41, 0.98) 0%,
            rgba(24, 33, 41, 0.93) 42%,
            rgba(24, 33, 41, 0.58) 68%,
            rgba(24, 33, 41, 0.25) 100%
        );
    color: var(--nf24-white);
}

.nf24-hero__background {
    position: absolute;
    inset: 0;
    z-index: -2;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.nf24-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(25, 167, 101, 0.18),
            transparent 38%
        );
}

.nf24-hero__inner {
    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
    padding: 100px 24px;
}

.nf24-hero__content {
    width: 100%;
    max-width: 700px;
}

.nf24-hero .nf24-heading {
    color: var(--nf24-white);
}

.nf24-hero .nf24-lead {
    color: rgba(255, 255, 255, 0.84);
}

.nf24-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 30px;
}

.nf24-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 700;
}

.nf24-hero__trust-item::before {
    content: "✓";
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--nf24-green);
    color: var(--nf24-white);
    font-size: 14px;
    font-weight: 900;
}


/* =========================================================
   7. SNABBVAL / VANLIGA STOPP
   ========================================================= */

.nf24-problems {
    position: relative;
    z-index: 5;
    margin-top: -55px;
    padding: 0 24px 40px;
}

.nf24-problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    width: 100%;
    max-width: var(--nf24-max-width);
    margin: 0 auto;
}

.nf24-problem-card {
    display: flex;
    min-height: 150px;
    align-items: center;
    gap: 18px;

    padding: 26px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius);
    background: var(--nf24-white);
    box-shadow: var(--nf24-shadow-small);

    color: var(--nf24-text) !important;
    text-decoration: none !important;

    transition:
        transform var(--nf24-transition),
        border-color var(--nf24-transition),
        box-shadow var(--nf24-transition);
}

.nf24-problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(25, 167, 101, 0.55);
    box-shadow: var(--nf24-shadow);
}

.nf24-problem-card__icon {
    display: inline-flex;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--nf24-green-light);
    color: var(--nf24-green-dark);

    font-size: 28px;
}

.nf24-problem-card__title {
    margin: 0 0 6px;
    color: var(--nf24-text);
    font-size: 21px;
    font-weight: 850;
    line-height: 1.2;
}

.nf24-problem-card__text {
    margin: 0;
    color: var(--nf24-text-light);
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   8. KORT OCH RUTNÄT
   ========================================================= */

.nf24-grid {
    display: grid;
    gap: 24px;
    margin-top: 46px;
}

.nf24-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nf24-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nf24-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nf24-card {
    padding: 30px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius);
    background: var(--nf24-white);
    box-shadow: var(--nf24-shadow-small);
}

.nf24-card__icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--nf24-green-light);
    color: var(--nf24-green-dark);

    font-size: 25px;
    font-weight: 900;
}

.nf24-card__title {
    margin: 0 0 10px;
    color: var(--nf24-text);
    font-size: 22px;
    font-weight: 850;
    line-height: 1.3;
}

.nf24-card__text {
    margin: 0;
    color: var(--nf24-text-light);
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   9. SÅ GÅR DET TILL
   ========================================================= */

.nf24-process {
    counter-reset: nf24-step;
}

.nf24-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.nf24-process__step {
    position: relative;
    padding: 32px 28px;
    border-radius: var(--nf24-radius);
    background: var(--nf24-white);
    box-shadow: var(--nf24-shadow-small);
}

.nf24-process__step::before {
    counter-increment: nf24-step;
    content: counter(nf24-step);

    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--nf24-green);
    color: var(--nf24-white);

    font-size: 18px;
    font-weight: 900;
}

.nf24-process__title {
    margin: 0 0 9px;
    font-size: 22px;
    font-weight: 850;
}

.nf24-process__text {
    margin: 0;
    color: var(--nf24-text-light);
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   10. PRISRUTA
   ========================================================= */

.nf24-price-box {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;

    margin-top: 46px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius-large);
    background: var(--nf24-white);
    box-shadow: var(--nf24-shadow);
}

.nf24-price-box__content {
    padding: 46px;
}

.nf24-price-box__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 46px;
    background: var(--nf24-dark);
    color: var(--nf24-white);
}

.nf24-price-box__label {
    margin: 0 0 10px;
    color: var(--nf24-green);
    font-size: 15px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nf24-price-box__price {
    margin: 0;
    color: var(--nf24-white);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
}

.nf24-price-box__note {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   11. CHECKLISTOR
   ========================================================= */

.nf24-checklist {
    display: grid;
    gap: 13px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.nf24-checklist li {
    position: relative;
    padding-left: 32px;
    color: var(--nf24-text);
    font-size: 16px;
    line-height: 1.55;
}

.nf24-checklist li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;

    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--nf24-green-light);
    color: var(--nf24-green-dark);

    font-size: 14px;
    font-weight: 900;
}

.nf24-section--dark .nf24-checklist li {
    color: rgba(255, 255, 255, 0.86);
}


/* =========================================================
   12. FAQ
   ========================================================= */

.nf24-faq {
    width: 100%;
    max-width: 860px;
    margin: 44px auto 0;
}

.nf24-faq__item {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius-small);
    background: var(--nf24-white);
}

.nf24-faq__question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 21px 24px;
    border: 0;
    background: transparent;
    color: var(--nf24-text);

    font-family: inherit;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;

    cursor: pointer;
}

.nf24-faq__question:hover {
    color: var(--nf24-green-dark);
}

.nf24-faq__answer {
    padding: 0 24px 22px;
    color: var(--nf24-text-light);
    font-size: 16px;
    line-height: 1.7;
}

.nf24-faq details summary {
    list-style: none;
}

.nf24-faq details summary::-webkit-details-marker {
    display: none;
}

.nf24-faq details summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--nf24-green);
    font-size: 26px;
    font-weight: 500;
}

.nf24-faq details[open] summary::after {
    content: "−";
}


/* =========================================================
   13. KONTAKT / CTA
   ========================================================= */

.nf24-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--nf24-radius-large);
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(25, 167, 101, 0.28),
            transparent 35%
        ),
        var(--nf24-dark);
    color: var(--nf24-white);
}

.nf24-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 36px;
    padding: 52px;
}

.nf24-cta .nf24-heading {
    color: var(--nf24-white);
}

.nf24-cta .nf24-text {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   14. FORMULÄR
   ========================================================= */

.nf24-form {
    display: grid;
    gap: 18px;
}

.nf24-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.nf24-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--nf24-text);
    font-size: 14px;
    font-weight: 750;
}

.nf24-form input,
.nf24-form textarea,
.nf24-form select {
    width: 100%;
    min-height: 52px;

    padding: 13px 15px;
    border: 1px solid var(--nf24-border);
    border-radius: var(--nf24-radius-small);
    background: var(--nf24-white);
    color: var(--nf24-text);

    font-family: inherit;
    font-size: 16px;

    transition:
        border-color var(--nf24-transition),
        box-shadow var(--nf24-transition);
}

.nf24-form textarea {
    min-height: 130px;
    resize: vertical;
}

.nf24-form input:focus,
.nf24-form textarea:focus,
.nf24-form select:focus {
    border-color: var(--nf24-green);
    outline: none;
    box-shadow: 0 0 0 4px rgba(25, 167, 101, 0.12);
}


/* =========================================================
   15. FOOTER
   ========================================================= */

.nf24-footer {
    padding: 34px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #111820;
    color: rgba(255, 255, 255, 0.72);
}

.nf24-footer__inner {
    display: flex;
    width: 100%;
    max-width: var(--nf24-max-width);
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin: 0 auto;
}

.nf24-footer__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.nf24-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.nf24-footer__links a {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 14px;
    text-decoration: none !important;
}

.nf24-footer__links a:hover {
    color: var(--nf24-green) !important;
}


/* =========================================================
   16. MOBIL RINGKNAPP
   Visas endast på mindre skärmar.
   ========================================================= */

.nf24-mobile-call {
    position: fixed;
    z-index: 999;
    right: 14px;
    bottom: 14px;
    left: 14px;

    display: none;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 20px;
    border-radius: 12px;
    background: var(--nf24-green);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);

    color: var(--nf24-white) !important;
    font-size: 18px;
    font-weight: 850;
    text-decoration: none !important;
}


/* =========================================================
   17. ELEMENTOR-JUSTERINGAR
   ========================================================= */

/* Tar bort oönskat mellanrum runt HTML-widgetar. */
.elementor-widget-html .elementor-widget-container {
    width: 100%;
}

/* Gör HTML-sektionerna fullbredd när sidlayouten tillåter det. */
.nf24-full-width {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Minskar risken för horisontell scroll. */
body {
    overflow-x: hidden;
}


/* =========================================================
   18. SURFPLATTA
   ========================================================= */

@media (max-width: 1024px) {

    .nf24-section {
        padding: 72px 22px;
    }

    .nf24-header__inner {
        padding-right: 22px;
        padding-left: 22px;
    }

    .nf24-hero {
        min-height: 620px;
    }

    .nf24-hero__inner {
        padding: 84px 22px;
    }

    .nf24-problems {
        padding-right: 22px;
        padding-left: 22px;
    }

    .nf24-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nf24-price-box {
        grid-template-columns: 1fr;
    }

    .nf24-price-box__aside {
        align-items: flex-start;
    }
}


/* =========================================================
   19. MOBIL
   ========================================================= */

@media (max-width: 767px) {

    .nf24-section {
        padding: 58px 18px;
    }

    .nf24-header__inner {
        min-height: 68px;
        padding: 11px 18px;
    }

    .nf24-logo {
        font-size: 24px;
    }

    .nf24-header__status {
        display: none;
    }

    .nf24-header__right .nf24-button {
        min-height: 44px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .nf24-hero {
        min-height: auto;
        background:
            linear-gradient(
                180deg,
                rgba(24, 33, 41, 0.94) 0%,
                rgba(24, 33, 41, 0.88) 100%
            );
    }

    .nf24-hero__background {
        object-position: 65% center;
    }

    .nf24-hero__inner {
        padding: 82px 18px 100px;
    }

    .nf24-heading {
        font-size: clamp(36px, 12vw, 49px);
        letter-spacing: -0.05em;
    }

    .nf24-heading--medium {
        font-size: 34px;
    }

    .nf24-heading--small {
        font-size: 28px;
    }

    .nf24-lead {
        margin-top: 18px;
        font-size: 18px;
        line-height: 1.55;
    }

    .nf24-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .nf24-buttons .nf24-button {
        width: 100%;
    }

    .nf24-hero__trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .nf24-problems {
        margin-top: -44px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .nf24-problems__grid,
    .nf24-grid--2,
    .nf24-grid--3,
    .nf24-grid--4,
    .nf24-process__grid,
    .nf24-price-box,
    .nf24-cta__inner,
    .nf24-form__row {
        grid-template-columns: 1fr;
    }

    .nf24-problems__grid {
        gap: 12px;
    }

    .nf24-problem-card {
        min-height: 112px;
        padding: 20px;
    }

    .nf24-problem-card__icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
        font-size: 23px;
    }

    .nf24-card,
    .nf24-process__step {
        padding: 25px 22px;
    }

    .nf24-price-box__content,
    .nf24-price-box__aside {
        padding: 32px 24px;
    }

    .nf24-cta__inner {
        padding: 36px 25px;
    }

    .nf24-footer {
        padding-bottom: 92px;
    }

    .nf24-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nf24-mobile-call {
        display: flex;
    }
}


/* =========================================================
   20. MYCKET SMÅ MOBILER
   ========================================================= */

@media (max-width: 380px) {

    .nf24-header__right .nf24-button {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 13px;
    }

    .nf24-logo {
        font-size: 22px;
    }

    .nf24-heading {
        font-size: 34px;
    }
}


/* =========================================================
   21. MINSKAD RÖRELSE FÖR TILLGÄNGLIGHET
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .nf24-button,
    .nf24-problem-card,
    .nf24-form input,
    .nf24-form textarea,
    .nf24-form select {
        transition: none;
    }

    .nf24-button:hover,
    .nf24-problem-card:hover {
        transform: none;
    }
}

/* =========================================================
   HEADER – BILDLOGOTYP
   ========================================================= */

.nf24-header__logo-link {
    display: inline-flex;
    flex: 0 1 360px;
    align-items: center;
    text-decoration: none !important;
}

.nf24-header__logo-image {
    display: block;
    width: 100%;
    max-width: 360px;
    height: 62px;
    object-fit: contain;
    object-position: left center;
}

.nf24-header__call {
    white-space: nowrap;
}

.nf24-call-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 1024px) {
    .nf24-header__logo-link {
        flex-basis: 300px;
    }

    .nf24-header__logo-image {
        max-width: 300px;
        height: 56px;
    }
}

@media (max-width: 767px) {
    .nf24-header__inner {
        gap: 12px;
    }

    .nf24-header__logo-link {
        flex: 1 1 auto;
        min-width: 0;
    }

    .nf24-header__logo-image {
        width: auto;
        max-width: 205px;
        height: 48px;
    }

    .nf24-header__call {
        flex: 0 0 auto;
    }

    .nf24-header__call .nf24-call-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 430px) {
    .nf24-header__logo-image {
        max-width: 170px;
        height: 42px;
    }

    .nf24-header__call {
        min-height: 42px;
        padding: 9px 12px;
        font-size: 14px;
    }
}/* End custom CSS */