@charset "UTF-8";
  :root {
    --primary-color: #009f4d;
    --secondary-color: #213364;
    --font-color: #212529;
    --bg-color: #eaeaea;
    --heading-color: #111;
    --border-color: rgba(0, 0, 0, 0.1);
    --border-color-light: rgba(0, 0, 0, 0.05);
    --nav-color: #000;
    --dropdown-color: #f0f0f0;
    --iframe-filter: none;
    --bg-grey: #f7f7f7;
    --bg-lightgrey: #eaeaea;
    --layer: rgba(255, 255, 255, 0.8);
  }

*,
*::before,
*::after {
  box-sizing: border-box; 
}

[data-theme="dark"] {
  --primary-color: #009f4d;
  --secondary-color: #213364;
  --font-color: #c2c2c2;
  --bg-color: #151421;
  --heading-color: #eee;
  --border-color: rgba(255, 255, 255, 0.2);
  --border-color-light: rgba(255, 255, 255, 0.1);
  --nav-color: #eaeaea;
  --dropdown-color: #121725;
  --iframe-filter: grayscale(100%);
  --bg-grey: #100f19;
  --bg-lightgrey: #100f19;
  --layer: rgba(0, 0, 0, 0.85);
}

[data-theme="light"] {
  --primary-color: #005c2e;
  --secondary-color: #c1d0ff;
  --font-color: #212529;
  --bg-color: #eaeaea;
  --heading-color: #000;
  --border-color: rgba(0, 0, 0, 0.2);
  --border-color-light: rgba(0, 0, 0, 0.08);
  --nav-color: #000;
  --dropdown-color: #f5f5f5;
  --iframe-filter: none;
  --bg-grey: #eeeeee;
  --bg-lightgrey: #f4f4f4;
  --layer: rgba(255, 255, 255, 0.75);
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  min-height: 100vh;
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  background: var(--bg-color);
  color: var(--font-color);
}

body, html {
  margin: 0;
  padding: 0;
  background: var(--bg-color);
  color: var(--font-color);
  font-family: system-ui, sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
  
  section h1, section .h1, article h1, article .h1, aside h1, aside .h1, nav h1, nav .h1 {
    font-size: 2.5rem;
  }
  
  section h2, section .h2, article h2, article .h2, aside h2, aside .h2, nav h2, nav .h2 {
    font-size: 2rem;
  }
  
  section h3, section .h3, article h3, article .h3, aside h3, aside .h3, nav h3, nav .h3 {
    font-size: 1.75rem;
  }
  
  section h4, section .h4, article h4, article .h4, aside h4, aside .h4, nav h4, nav .h4 {
    font-size: 1.4rem;
  }
  
  section h5, section .h5, article h5, article .h5, aside h5, aside .h5, nav h5, nav .h5 {
    font-size: 1.25rem;
  }
  
  section h6, section .h6, article h6, article .h6, aside h6, aside .h6, nav h6, nav .h6 {
    font-size: 1rem;
  }
  
   h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

[data-theme="light"] :is(h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6) {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--font-color);
  text-shadow:
  0 1px 0 rgba(0,0,0,.55),
  0 8px 18px rgba(0,0,0,.45);
}

[data-theme="dark"] :is(h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6) {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #e6a600; /* nära #e6a600 men lite ljusare */
  text-shadow:
    0 1px 0 rgba(0,0,0,.55),
    0 8px 18px rgba(0,0,0,.45);
}

[data-theme="light"] .w3l-footer-29-main h2.footer-title-29 {
  color: #e6a600; /* nära #e6a600 men lite ljusare */
  text-shadow:
    0 1px 0 rgba(0,0,0,.55),
    0 8px 18px rgba(0,0,0,.45);
}

.heading-accent {
  position: relative; display:inline-block; padding-bottom:.25rem;
}
.heading-accent::after {
  content:""; position:absolute; left:0; right:0; bottom:-.15rem; height:3px; border-radius:2px;
  background: linear-gradient(90deg, rgba(255,193,7,.0) 0%,
                                     rgba(255,193,7,.9) 25%,
                                     rgba(230,166,0,.95) 75%,
                                     rgba(255,193,7,.0) 100%);
  filter: drop-shadow(0 2px 6px rgba(230,166,0,.35));
}
[data-theme="light"] .heading-accent::after {
  opacity:.85; filter: drop-shadow(0 2px 5px rgba(0,0,0,.10));
}

h1, .h1 {
  font-size: 2.5rem; }
  @media (max-width: 1200px) {
    h1, .h1 {
      font-size: calc(1.375rem + 1.5vw) ; } }

h2, .h2 {
  font-size: 2rem; }
  @media (max-width: 1200px) {
    h2, .h2 {
      font-size: calc(1.325rem + 0.9vw) ; } }

h3, .h3 {
  font-size: 1.75rem; }
  @media (max-width: 1200px) {
    h3, .h3 {
      font-size: calc(1.3rem + 0.6vw) ; } }

h4, .h4 {
  font-size: 1.4rem; }
  @media (max-width: 1200px) {
    h4, .h4 {
      font-size: calc(1.275rem + 0.3vw) ; } }

h5, .h5 {
  font-size: 1.25rem; }

h6, .h6 {
  font-size: 1rem; }



.lead {
  font-size: 1.25rem;
  font-weight: 300; }

p {
  line-height: 1.6;
  font-size: 1rem;
}

hr {
box-sizing: content-box;
height: 0;
overflow: visible; }


p {
margin-top: 0;
margin-bottom: 1rem; }

b, strong {
  font-weight: bolder; }

small {
  font-size: 80%; 
}

  a {
    color: #00a63f;
    text-decoration: none;
    background-color: transparent; }
    a:hover {
      color: #005a22;
      text-decoration: underline; }
  
  a:not([href]) {
    color: inherit;
    text-decoration: none; }
    a:not([href]):hover {
      color: inherit;
      text-decoration: none; }
  
  pre,
  code,
  kbd,
  samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em; }
  
  pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto; }
  
  figure {
    margin: 0 0 1rem; }
  
  img {
    vertical-align: middle;
    border-style: none; }
  
  svg {
    overflow: hidden;
    vertical-align: middle; }
  
  table {
    border-collapse: collapse; }
  
  caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom; }
  
  th {
    text-align: inherit; }
  
  label {
    display: inline-block;
    margin-bottom: 0.5rem; }
  
  button {
    border-radius: 0; }
  
  button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color; }
  
  input,
  button,
  select,
  optgroup,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; }
  
  button,
  input {
    overflow: visible; }
  
  button,
  select {
    text-transform: none; }
  
  select {
    word-wrap: normal; }
  
  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button; }
  
  button:not(:disabled),
  [type="button"]:not(:disabled),
  [type="reset"]:not(:disabled),
  [type="submit"]:not(:disabled) {
    cursor: pointer; }
  
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none; }
  
  input[type="radio"],
  input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0; }

    .shield-icon-svg {
      fill: #00a63f;
      transition: transform 0.3s ease;
    }
    
    .shield-icon-svg:hover {
      transform: scale(1.1);
      fill: #06f562;
    }
    
  gle switch --*/
/*-- dark and light mode styling --*/
.mode-container {
  width: 24px;
  height: 24px;
  padding: 1px 0; }

  @media (max-width: 768px) {
    .mode-container {
      margin-top: 0.6rem; /* lite extra på små skärmar */
    }
  }

.gg-sun {
  position: relative;
  transform: scale(var(--ggs, 1));
  height: 24px;
  background: linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 5px -6px/2px 6px, linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 5px 14px/2px 6px, linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat -8px 5px/6px 2px, linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 14px 5px/6px 2px;
  border-radius: 100px;
  box-shadow: inset 0 0 0 2px;
  border: 6px solid transparent; }

.gg-moon {
  overflow: hidden;
  position: relative;
  transform: rotate(-135deg) scale(var(--ggs, 1));
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-bottom: 2px solid transparent; }

.gg-moon,
.gg-moon:after {
  display: block;
  box-sizing: border-box;
  border-radius: 50%;
  color: #eee; }

.nav-fixed .gg-moon,
.nav-fixed .gg-moon:after {
  display: block;
  box-sizing: border-box;
  border-radius: 50%;
  color: var(--heading-color); }

.gg-moon:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 18px;
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px;
  top: 8px;
  left: 2px; }

.gg-sun,
.gg-sun:after,
.gg-sun:before {
  box-sizing: border-box;
  display: block;
  width: 24px;
  color: #eee; }

.gg-sun:after,
.gg-sun:before {
  content: "";
  position: absolute;
  height: 2px;
  border-right: 4px solid;
  border-left: 4px solid;
  left: -6px;
  top: 5px; }

.gg-sun:before {
  transform: rotate(-45deg); }

.gg-sun:after {
  transform: rotate(45deg); }

.mode-container i.gg-sun {
  display: none; }

.mode-container i.gg-moon {
  display: block; }

input:checked + .mode-container i.gg-sun {
  display: block; }

input:checked + .mode-container i.gg-moon {
  display: none; }
  
  .kh-steps {counter-reset: kh; margin:0; padding:0; list-style:none;}
  .kh-step {position:relative; padding:1rem 0 1.25rem 0; opacity:.0; transform:translateY(10px); transition:opacity .5s ease, transform .5s ease;}
  .kh-step.is-in {opacity:1; transform:none;}
  .kh-step + .kh-step {border-top:1px solid rgba(255,255,255,.08);}
  [data-theme="light"] .kh-step + .kh-step {border-top:1px solid rgba(0,0,0,.08);}

  .kh-step__head {display:flex; align-items:center; gap:.9rem; margin-bottom:.25rem;}
  .kh-step__num {
    display:inline-grid; place-items:center;
    width:40px; height:40px; border-radius:999px;
    font-weight:700;
    background:#ff7a00; color:#fff;
    box-shadow:0 6px 14px rgba(255,122,0,.25);
    flex:0 0 40px;
  }
  .kh-step__title {margin:0; font-size:1.125rem; line-height:1.25;}
  .kh-step__text {margin:.35rem 0 .75rem 3.25rem; color:var(--para-color, #cfcfcf);}
  [data-theme="light"] .kh-step__text {color:#555;}

  .kh-step__bar {
    margin-left:3.25rem; height:8px; border-radius:999px; background:rgba(255,255,255,.12); overflow:hidden;
  }
  [data-theme="light"] .kh-step__bar {background:rgba(0,0,0,.08);}

  .kh-step__bar-fill {
    display:block; height:100%; width:0%;
    background: linear-gradient(90deg, #ff8a00, #ff5e00);
    border-radius:inherit;
    transition:width .9s cubic-bezier(.2,.8,.2,1);
  }

  /* Accessibility: reduce motion */
  @media (prefers-reduced-motion: reduce) {
    .kh-step {transition:none; transform:none; opacity:1;}
    .kh-step__bar-fill {transition:none;}
  }

  header.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    padding: 0 1rem;
    z-index: 10;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
  }
  
  header.main-header .header-container {
    display: flex;
    align-items: center;
    height: 100%; 
  }

  .brand {
    border: none;
    outline: none;
    box-shadow: none;
  }
  .brand:focus,
  .brand:hover {
    border: none;
    outline: none;
    box-shadow: none;
  }
  
  header.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }
  
body.dark header.main-header.scrolled {
  background-color: var(--bg-color);
}

  
  body.light header.main-header.scrolled {
    background-color: #eaeaea;
  }

  /*-- toggle switch --*/
.theme-switch-wrapper {
  display: flex;
  align-items: center; }

.theme-switch-wrapper em {
  margin-left: 10px;
  font-size: 1rem; }

.theme-switch {
  display: inline-block;
  position: relative;
  margin: 0; }

.theme-switch input {
  display: none; }
  
/*-- //homeblock1 --*/
/* features section */
.w3l-features {
  background: var(--bg-grey); }

.w3l-features .call-grids-w3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px; }

.w3l-features .box-wrap {
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: rgba(1, 1, 1, 0.05) 1px 1px 5px 0px;
  background-color: var(--bg-color);
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease; }

.w3l-features .box-wrap:hover {
  transform: translateY(-0.25rem);
  box-shadow: rgba(46, 41, 51, 0.08) 0px 2px 4px, rgba(71, 63, 79, 0.16) 0px 5px 10px;
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease; }

.w3l-features .box-wrap img {
  max-width: 65px;
  display: block;
  margin: 0 auto; }

.w3l-features .box-wrap h4 a {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  margin-top: 25px;
  display: block;
  color: var(--heading-color); }

.w3l-features .box-wrap h4 a:hover {
  color: var(--primary-color); }

@media (max-width: 1280px) {
  .w3l-features .buttons-top {
    margin-top: 3em;
    padding-top: 2em; } }

@media (max-width: 1080px) {
  .w3l-features h3.ban-text-2 {
    font-size: 34px; }
  .w3l-features .section-title-left {
    font-size: 1.8em; } }

@media (max-width: 992px) {
  .w3l-features .order2 {
    order: 2; }
  .w3l-features .order1 {
    order: 1; } }

@media (max-width: 800px) {
  .w3l-features .grids-1 {
    padding: 1.5em; }
  .w3l-features .w3l-feature-grid {
    padding: 60px 0; } }

@media (max-width: 667px) {
  .w3l-features h3.ban-text-2 {
    font-size: 32px; }
  .w3l-features p.text-para {
    margin: 14px 0 26px; }
  .w3l-features h4 a.title-head {
    font-size: 18px; }
  .w3l-features .call-grid-sub-2 {
    margin-top: 1.5em; }
  .w3l-features .buttons-top {
    margin-top: 2em; }
  .w3l-features .title-left {
    font-size: 1.5em;
    margin-bottom: .8em; } }

@media (max-width: 568px) {
  .w3l-features h3.ban-text-2 {
    font-size: 30px;
    margin-bottom: 20px; }
  .w3l-features .call-grids-w3 .icon img {
    width: 45px; }
  .w3l-features p.text-para {
    margin: 0px;
    margin-bottom: 10px; }
  .w3l-features h4 a.title-head {
    margin-bottom: 7px; }
  .w3l-features .call-grid-sub-2 {
    margin-top: 1em; }
  .w3l-features .w3l-feature-grid {
    padding: 50px 0; }
  .w3l-features .button-effe-2 {
    margin-top: 0px; } }

@media (max-width: 440px) {
  .w3l-features .call-grids-w3 {
    /* grid-template-columns: 1fr; */
    grid-gap: 15px; }
  .w3l-features .grids-1 {
    padding: 1.5em 1em; }
  .w3l-features .section-title-left {
    font-size: 1.5em; } }

@media (max-width: 415px) {
  .w3l-features h3.ban-text-2 {
    font-size: 26px;
    line-height: 32px; }
  .w3l-features ul.list li {
    font-size: 15px; } }

@media (max-width: 384px) {
  .w3l-features h4 a.title-head {
    font-size: 18px;
    margin-top: 15px; }
  .w3l-features .section-title-left {
    font-size: 1.3em; }
  .w3l-features .w3l-mobile-progress .mobile-right-info h6 a {
    font-size: 18px; } }

@media (max-width: 320px) {
  .w3l-features .call-grids-w3 {
    display: block; }
  .w3l-features .grids-1.grids-effect-2 {
    margin-top: 1em; }
  .w3l-features .call-grid-sub-2 {
    margin-top: 0; } }

    
/*-- //banner bottom end --*/
/*--  services --*/
.grids5-info:hover .blog-info a.title {
  color: var(--primary-color); }

  .service-list .fa-check-circle {
    color: #2ecc71;
  }
  
  ul.service-list li {
    display: block;
    margin-bottom: 15px; }
  
  ul.service-list li {
    display: block;
    margin-bottom: 15px; }
  
  ul.service-list li:last-child {
    margin-bottom: 0px; }
  
  ul.service-list li {
      font-size: 18px;
      line-height: 28px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
.blog-info a.title {
  font-size: 19px;
  line-height: 28px;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
  background: var(--bg-color);
  padding: 12px 35px;
  display: inline-block;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transform: translateY(-25px);
  box-shadow: rgba(1, 1, 1, 0.05) 1px 1px 5px 0px; }

.blog-info p.text-para {
  margin-top: -10px; }

.blog-info {
  padding: 0 20px;
  position: relative; }

.grids5-info a.btn-style1:hover {
  color: var(--primary-color); }

/*-- services ends --*/
.w3l-progress .progress {
  display: flex;
  height: 4px;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: var(--bg-grey);
  border-radius: 0.25rem; }

.w3l-progress .progress-info {
  margin-bottom: 30px;
  text-align: left;
  position: relative; }

.w3l-progress .progress-bar {
  background-color: var(--primary-color);
  transition: width 0.6s ease; }

.w3l-progress .progress-bar.gradient-1:before,
.w3l-progress .progress-bar.gradient-2:before,
.w3l-progress .progress-bar.gradient-3:before,
.w3l-progress .progress-bar.gradient-4:before {
  height: 28px;
  width: 28px;
  border: 1px solid;
  opacity: .3; }

.w3l-progress .progress-bar.gradient-1:after,
.w3l-progress .progress-bar.gradient-2:after,
.w3l-progress .progress-bar.gradient-3:after,
.w3l-progress .progress-bar.gradient-4:after {
  height: 13px;
  width: 13px;
  border: 3px solid;
  background-color: var(--bg-color); }

.w3l-progress .progress-bar.gradient-1 {
  color: #61fded;
  background-color: #0d8abc;
  background-image: linear-gradient(-224deg, #0d8abc, #61fded); }

.w3l-progress .progress-bar.gradient-1:after,
.w3l-progress .progress-bar.gradient-1:before {
  content: "";
  position: absolute;
  right: 20%;
  top: 90%;
  border-radius: 50%;
  transform: translate(50%, -50%); }

.w3l-progress .progress-bar.gradient-2 {
  color: #eece90;
  background-color: #d45529;
  background-image: linear-gradient(-224deg, #d45529, #eece90); }

.w3l-progress .progress-bar.gradient-2:after,
.w3l-progress .progress-bar.gradient-2:before {
  content: "";
  position: absolute;
  right: 5%;
  top: 90%;
  border-radius: 50%;
  transform: translate(50%, -50%); }

.w3l-progress .progress-bar.gradient-3 {
  color: #5c51ff;
  background-color: #f646a9;
  background-image: linear-gradient(-224deg, #f646a9, #5c51ff); }

.w3l-progress .progress-bar.gradient-3:after,
.w3l-progress .progress-bar.gradient-3:before {
  content: "";
  position: absolute;
  right: 40%;
  top: 90%;
  border-radius: 50%;
  transform: translate(50%, -50%); }

.w3l-progress .progress-bar.gradient-4 {
  color: #e5529a;
  background-color: #e77654;
  background-image: linear-gradient(-224deg, #e77654, #e5529a); }

.w3l-progress .progress-bar.gradient-4:after,
.w3l-progress .progress-bar.gradient-4:before {
  content: "";
  position: absolute;
  right: 15%;
  top: 90%;
  border-radius: 50%;
  transform: translate(50%, -50%); }

.w3l-progress .progress-bar-striped {
  background-image: none;
  background-size: cover; }

.w3l-progress h6.progress-tittle {
  font-size: 18px;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 400; }

.w3l-progress .info1 h6.progress-tittle {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 80%; }

.w3l-progress .info2 h6.progress-tittle {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 95%; }

.w3l-progress .info3 h6.progress-tittle {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 60%; }

.w3l-progress .info4 h6.progress-tittle {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 85%; }

  /*-- gallery --*/
.w3l-gallery {
  background: var(--bg-lightgrey); }

  
small,
.small {
  font-size: 80%;
  font-weight: 400; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%; }

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%; }

.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%; }

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%; }

.row-cols-6 > * {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%; }

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-sm-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-sm-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    order: -1; }
  .order-sm-last {
    order: 13; }
  .order-sm-0 {
    order: 0; }
  .order-sm-1 {
    order: 1; }
  .order-sm-2 {
    order: 2; }
  .order-sm-3 {
    order: 3; }
  .order-sm-4 {
    order: 4; }
  .order-sm-5 {
    order: 5; }
  .order-sm-6 {
    order: 6; }
  .order-sm-7 {
    order: 7; }
  .order-sm-8 {
    order: 8; }
  .order-sm-9 {
    order: 9; }
  .order-sm-10 {
    order: 10; }
  .order-sm-11 {
    order: 11; }
  .order-sm-12 {
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-md-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-md-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    order: -1; }
  .order-md-last {
    order: 13; }
  .order-md-0 {
    order: 0; }
  .order-md-1 {
    order: 1; }
  .order-md-2 {
    order: 2; }
  .order-md-3 {
    order: 3; }
  .order-md-4 {
    order: 4; }
  .order-md-5 {
    order: 5; }
  .order-md-6 {
    order: 6; }
  .order-md-7 {
    order: 7; }
  .order-md-8 {
    order: 8; }
  .order-md-9 {
    order: 9; }
  .order-md-10 {
    order: 10; }
  .order-md-11 {
    order: 11; }
  .order-md-12 {
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-lg-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-lg-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    order: -1; }
  .order-lg-last {
    order: 13; }
  .order-lg-0 {
    order: 0; }
  .order-lg-1 {
    order: 1; }
  .order-lg-2 {
    order: 2; }
  .order-lg-3 {
    order: 3; }
  .order-lg-4 {
    order: 4; }
  .order-lg-5 {
    order: 5; }
  .order-lg-6 {
    order: 6; }
  .order-lg-7 {
    order: 7; }
  .order-lg-8 {
    order: 8; }
  .order-lg-9 {
    order: 9; }
  .order-lg-10 {
    order: 10; }
  .order-lg-11 {
    order: 11; }
  .order-lg-12 {
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%; }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%; }
  .row-cols-xl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%; }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%; }
  .row-cols-xl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
}


.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-none {
  float: none !important; }

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca; }

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c; }

.table-hover .table-dark:hover {
  background-color: #b9bbbe; }

.table-hover .table-dark:hover > td,
  .table-hover .table-dark:hover > th {
    background-color: #b9bbbe; }

.table .thead-dark th {
  color: #eaeaea;
  background-color: #343a40;
  border-color: #454d55; }

.table-dark {
  color: #eaeaea;
  background-color: #343a40; }

.table-dark th,
  .table-dark td,
  .table-dark thead th {
    border-color: #454d55; }

.table-dark.table-bordered {
    border: 0; }

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05); }

.table-dark.table-hover tbody tr:hover {
    color: #eaeaea;
    background-color: rgba(255, 255, 255, 0.075); }

@media (prefers-reduced-motion: reduce) {
    .form-control {
      transition: none; } }

.form-group {
  margin-bottom: 1rem; }

  ul {
    margin: 0;
    padding: 0;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }

@media (prefers-reduced-motion: reduce) {
    .btn {
      transition: none; } }

.btn-primary {
  color: #eaeaea;
  background-color: #00a63f;
  border-color: #00a63f; }

.btn-success {
  color: #eaeaea;
  background-color: #28a745;
  border-color: #28a745; }

.btn-danger {
  color: #eaeaea;
  background-color: #dc3545;
  border-color: #dc3545; }

.btn-dark {
  color: #eaeaea;
  background-color: #343a40;
  border-color: #343a40; }

.btn-dark:hover {
    color: #eaeaea;
    background-color: #23272b;
    border-color: #1d2124; }

.btn-dark:focus, .btn-dark.focus {
    color: #eaeaea;
    background-color: #23272b;
    border-color: #1d2124;
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }

.btn-dark.disabled, .btn-dark:disabled {
    color: #eaeaea;
    background-color: #343a40;
    border-color: #343a40; }

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  .show > .btn-dark.dropdown-toggle {
    color: #eaeaea;
    background-color: #1d2124;
    border-color: #171a1d; }

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
    .show > .btn-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40; }

.btn-outline-dark:hover {
    color: #eaeaea;
    background-color: #343a40;
    border-color: #343a40; }

.btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent; }

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
  .show > .btn-outline-dark.dropdown-toggle {
    color: #eaeaea;
    background-color: #343a40;
    border-color: #343a40; }

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
    .show > .btn-outline-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }

.fade {
  transition: opacity 0.15s linear; }

@media (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease; }

@media (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }

.custom-switch .custom-control-label::after {
    top: calc(0.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: 0.5rem;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }

@media (prefers-reduced-motion: reduce) {
      .custom-switch .custom-control-label::after {
        transition: none; } }

.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #00a63f;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
            appearance: none; }

@media (prefers-reduced-motion: reduce) {
      .custom-range::-webkit-slider-thumb {
        transition: none; } }

.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #00a63f;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
         appearance: none; }

@media (prefers-reduced-motion: reduce) {
      .custom-range::-moz-range-thumb {
        transition: none; } }

.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #00a63f;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }


      .header-container {
        display: flex;
        align-items: center;
        padding: 1rem;
      }
      

/* LOGO-BLOCK */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-height: 100px;
  overflow: hidden;
}

.brand img {
  height:70px;
  display: block;
  margin-top: 10px;
}

/* TEXTEN BREDVID LOGON */
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  max-height: 100px;
  overflow: hidden;

}
      
.brand-name {
  font-weight: 800;
  font-size: 2.4rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  background: linear-gradient(
    180deg,
    #fff8dc 0%,
    #ffd700 20%,
    #e6c200 40%,
    #b8860b 70%,
    #fff5b0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 2px 4px rgba(0,0,0,0.4),
    0 0 12px rgba(255, 215, 0, 0.3);
}


/* Tagline – bättre läsbarhet och luft mellan punkter */
.brand-tagline{
  color:#dde3ec;            /* brödtext i en mjukare ton */
  font-weight:600;
  letter-spacing:.01em;
  line-height:1.25;         /* tajtare radavstånd så raderna sitter ihop */
  text-shadow:0 1px 0 rgba(0,0,0,.25);
}

.brand-tagline .sep{
  display:inline-block;          /* krävs för background-clip på inline */
  font-style: normal;            /* <i> är kursiv by default */
  margin: 0 .55ch;
  line-height: 1;
  
  background: linear-gradient(
    180deg,
    #fff8dc 0%,
    #ffd700 20%,
    #e6c200 40%,
    #b8860b 70%,
    #fff5b0 100%
  );
  -webkit-background-clip: text; /* behövs i Chromium/WebKit */
          background-clip: text;  /* Firefox m.fl. */
  color: transparent;            /* så bara bakgrunden syns */
  /* valfritt glow: */
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem; }

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap; }

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center; }

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
      flex-wrap: nowrap; }
    .navbar-expand-lg .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; } }

.navbar-dark .navbar-brand {
  color: #eaeaea; }

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #eaeaea; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75); }

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #eaeaea; }

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1); }

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5); }

.navbar-dark .navbar-text a {
    color: #eaeaea; }

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
      color: #eaeaea; }

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }

@media (prefers-reduced-motion: reduce) {
    .badge {
      transition: none; } }

.badge-dark {
  color: #eaeaea;
  background-color: #343a40; }

a.badge-dark:hover, a.badge-dark:focus {
    color: #eaeaea;
    background-color: #1d2124; }

a.badge-dark:focus, a.badge-dark.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca; }

.alert-dark hr {
    border-top-color: #b9bbbe; }

.alert-dark .alert-link {
    color: #040505; }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem; }

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #eaeaea;
  text-align: center;
  white-space: nowrap;
  background-color: #00a63f;
  transition: width 0.6s ease; }

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
      transition: none; } }

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite; }

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
      -webkit-animation: none;
              animation: none; } }

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca; }

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #1b1e21;
    background-color: #b9bbbe; }

.list-group-item-dark.list-group-item-action.active {
    color: #eaeaea;
    background-color: #1b1e21;
    border-color: #1b1e21; }

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out; }

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
      transition: none; } }

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none; }

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s; }

@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right {
      transition: none; } }

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #eaeaea;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease; }

@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
      transition: none; } }

.carousel-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #eaeaea;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity 0.6s ease; }

@media (prefers-reduced-motion: reduce) {
      .carousel-indicators li {
        transition: none; } }

@keyframes spinner-border {
  to {
    transform: rotate(360deg); } }

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
          animation: spinner-border .75s linear infinite; }

@keyframes spinner-grow {
  0% {
    transform: scale(0); }
  50% {
    opacity: 1; } }

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow .75s linear infinite;
          animation: spinner-grow .75s linear infinite; }

.bg-dark {
  background-color: #343a40 !important; }

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important; }

.border-0 {
  border: 0 !important; }

.border-dark {
  border-color: #343a40 !important; }

.d-block {
  display: block !important; }

.justify-content-center {
  justify-content: center !important; }

.align-items-center {
  align-items: center !important; }

.position-relative {
  position: relative !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.w-100 {
  width: 100% !important; }

.mb-0,
.my-0 {
  margin-bottom: 0 !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
    .mt-lg-8,
    .my-lg-8 {
      margin-top: 8rem !important; }
    .mt-lg-10,
    .my-lg-10 {
      margin-top: 10rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

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

.text-white {
  color: #eaeaea !important; }

.text-dark {
  color: #343a40 !important; }

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important; }

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important; }
  a:not(.btn) {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  @page {
    size: a3; }
  body {
    min-width: 992px !important; }
  .container {
    min-width: 992px !important; }
  .navbar {
    display: none; }
  .badge {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #eaeaea !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important; }
  .table-dark {
    color: inherit; }
    .table-dark th,
    .table-dark td,
    .table-dark thead th,
    .table-dark tbody + tbody {
      border-color: #dee2e6; }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6; } }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.pull-left {
  float: left; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@keyframes fa-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(359deg); } }

body a,
button,
.btn {
  cursor: pointer !important; }

.radius-image {
  border-radius: var(--border-radius); }

@media (min-width: 992px) {
  .container {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto; } }

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto; } }

@media (min-width: 1280px) {
  .container {
    max-width: 1200px; } }

/*-- //container --*/
.btn-style {
  padding: 15px 50px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  transition: 0.3s ease-in;
  border-radius: var(--border-radius); }

.btn-style1 {
  padding: 8px 35px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  transition: 0.3s ease-in;
  color: var(--heading-color);
  border-radius: var(--border-radius); }

.title-big {
  font-size: 35px;
  line-height: 45px;
  font-weight: 700; }

.title-small {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 1px;
  color: #999999;
  display: block; }

a.read span.fa, a.read span.fas {
  font-size: 15px;
  transition: 0.3s ease-in;
  font-weight: 600;
  vertical-align: 0px; }

a.read:hover span.fa, a.read:hover span.fas {
  transform: translateX(4px);
  transition: 0.3s ease-in; }

@media (max-width: 1080px) {
  .title-big {
    font-size: 32px !important;
    line-height: 40px; } }

@media (max-width: 568px) {
  .title-big {
    font-size: 30px !important;
    line-height: 38px; } }

@media (max-width: 415px) {
  .title-big {
    font-size: 26px !important;
    line-height: 32px; }
  .btn-white,
  .btn-style {
    padding: 12px 30px; } }

@media (max-width: 375px) {
  .btn-white,
  .btn-style {
    font-size: 16px; }
  .title-big {
    font-size: 24px !important;
    line-height: 30px; } }

.theme-switch {
  display: inline-block;
  position: relative;
  margin: 0; }

/*-- //toggle switch --*/
/*-- dark and light mode styling --*/
.mode-container {
  width: 24px;
  height: 24px;
  padding-top: 2px; 
  padding-left:30px;
}


.gg-sun {
  position: relative;
  transform: scale(var(--ggs, 1));
  height: 24px;
  background: linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 5px -6px/2px 6px, linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 5px 14px/2px 6px, linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat -8px 5px/6px 2px, linear-gradient(180deg, currentColor 4px, transparent 0) no-repeat 14px 5px/6px 2px;
  border-radius: 100px;
  box-shadow: inset 0 0 0 2px;
  border: 6px solid transparent; }

.gg-moon {
  overflow: hidden;
  position: relative;
  transform: rotate(-135deg) scale(var(--ggs, 1));
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-bottom: 2px solid transparent; }

.gg-moon,
.gg-moon:after {
  display: block;
  box-sizing: border-box;
  border-radius: 50%;
  color: #eee; }

.gg-sun,
.gg-sun:after,
.gg-sun:before {
  box-sizing: border-box;
  display: block;
  width: 24px;
  color: #eee; }

.navbar {
  padding: 0; }

.navbar .navbar-brand img {
  max-width: 140px;
  transition: all 0.5s ease; }

.navbar-expand-lg .navbar-nav .nav-item {
  padding: 0 12px;
  transition: all 0.5s ease;
  position: relative; }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #eaeaea;
  opacity: 1; }

.navbar-expand-lg .navbar-nav .nav-link {
  transition: all 0.5s ease;
  padding: 14px 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: #eaeaea;
  opacity: .8;
  text-transform: uppercase; }

.navbar-dark .navbar-nav .show >,
.navbar-dark .navbar-nav .nav-link.show {
  color: var(--para-color); }

nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s; }

.navbar-dark .navbar-nav .nav-link:focus {
  color: #eee; }

@media only screen and (max-width: 991px) {
  .navbar-collapse {
    max-height: calc(100vh - 80px);
    overflow-y: scroll; }
  .mobile-position {
    position: absolute;
    right: 44px;
    top: 18px; }
  .navbar .navbar-brand img {
    max-width: 140px; }
  .navbar-toggler {
    border: 0 none;
    font-size: 24px; }
  .navbar-nav {
    -webkit-animation-name: none;
    animation-name: none;
    float: left;
    text-align: center;
    width: 100%;
    padding: 20px 0 0px; }
  .navbar-nav:last-child {
    border: 0; }
  .navbar-expand-lg .navbar-nav .nav-item {
    -webkit-animation-name: none;
    animation-name: none;
    padding: 0; }
  .navbar-expand-lg .navbar-nav.nav_btn > li {
    padding-bottom: 10px; }
  .navbar-nav .dropdown-menu {
    text-align: center; }
  .navbar-nav .dropdown-menu .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.3); }
  .navbar-expand-lg .navbar-nav .nav-item .nav-link.active::before {
    bottom: 0; }
  .navbar-expand-lg .navbar-nav .nav-link {
    display: inline-block;
    padding: 6px 0;
    text-align: center; }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    transform: translateX(0px); }
  header.nav-fixed {
    height: auto;
    padding: 15px 0; }
  .navbar-expand-lg .navbar-nav .nav-link {
    display: block; }
  .navbar-dark .navbar-toggler-icon {
    background-image: none;
    padding: 0;
    width: 34px;
    height: 34px;
    display: inline-block;
    background: var(--primary-color);
    border-radius: 4px;
    text-align: center; }
  .navbar-toggler-icon.fa {
    font-size: 20px;
    line-height: 1.2em;
    color: #eaeaea;
    line-height: 34px; }
  .navbar-toggler {
    padding: 0rem 0rem !important; }
  .navbar .search-right {
    margin: 0px auto; }
  .navbar .search-right a {
    color: #eaeaea; }
  .nav-fixed .search-right a {
    color: var(--heading-color); }
  a.login {
    padding: 0px 0 10px; } }

/*==============================================================
	CTA style start
==============================================================*/
.cta-btn .cta-link {
  position: relative;
  display: inline-block;
  background: #d2d6ef;
  color: #081c2d;
  font-size: 15px;
  min-width: 220px;
  text-align: center;
  letter-spacing: 0.050em;
  line-height: 18px;
  font-weight: 400;
  padding: 15px 30px;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease-in-out; }

.w3l-features .box-wrap {
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: rgba(1, 1, 1, 0.05) 1px 1px 5px 0px;
  background-color: var(--bg-color);
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease; }

.w3l-features .box-wrap:hover {
  transform: translateY(-0.25rem);
  box-shadow: rgba(46, 41, 51, 0.08) 0px 2px 4px, rgba(71, 63, 79, 0.16) 0px 5px 10px;
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease; }

.blog-info {
  padding: 0 20px;
  position: relative; }

.w3l-progress .progress-bar {
  background-color: var(--primary-color);
  transition: width 0.6s ease; }

.w3l-gallery a.zoom img {
  transition: 0.3s ease-in-out;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.w3l-gallery a:hover img {
  overflow: hidden;
  transform: scale(1.1);
  transition: 0.3s ease-in-out; }

.w3l-gallery span.hover-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  padding: 46px 50px;
  color: #eaeaea;
  z-index: 2; }

.w3l-gallery .overlay__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--layer);
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: 1; }

.w3l-blog a.zoom img {
  transition: 0.3s ease-in-out;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.w3l-blog .card:hover img {
  overflow: hidden;
  transform: scale(1.1);
  transition: 0.3s ease-in-out; }

.w3l-footer-29-main {
  background: #151421;
  border-top: 1px solid rgba(249, 249, 249, 0.1); }

.main-social-footer-29 a {
  margin-right: 15px;
  display: inline-block;
  text-align: center;
  font-size: 16px; 
  background: none;
  border-radius: 50%;
  transition: 0.3s;
  color: #999999;
  opacity: .6; }

.main-social-footer-29 a:hover {
  transition: 0.3s;
  color: #eaeaea;
  opacity: 1; }

  .w3l-footer-29-main {
    background: #151421;
    border-top: 1px solid rgba(249, 249, 249, 0.1); }
  
  .w3l-footer-29-main h2.footer-title-29 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
    letter-spacing: .5px; }
  
  .w3l-footer-29-main .navbar-brand {
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    color: #eaeaea;
    opacity: 1; }
  
  .w3l-footer-29-main .navbar-brand span.fa {
    color: var(--primary-color);
    margin-right: 5px;
    vertical-align: bottom; }
  
  .w3l-footer-29-main .navbar-brand span.logo {
    text-transform: none;
    display: block;
    font-size: 14px;
    padding-left: 46px;
    font-weight: 600;
    opacity: .9; }
  
  .w3l-footer-29-main .footer-list-29 ul li,
  .w3l-footer-29-main .midd-footer-29:nth-child(1) .footer-list-29 ul li:last-child {
    list-style: none;
    margin-bottom: 10px; }
  
  .w3l-footer-29-main .footer-list-29 ul li:last-child {
    margin-bottom: 0px; }
  
  .w3l-footer-29-main p {
    font-size: 18px;
    line-height: 28px;
    color: #999999; }
  
  .w3l-footer-29-main .footer-list-29 ul li a,
  .w3l-footer-29-main .footer-list-29 ul li p,
  .w3l-copyright .footer-list-29 ul li a,
  .w3l-footer-29-main a {
    font-size: 18px;
    line-height: 28px;
    color: #999999;
    opacity: .8; }

.w3l-copyright {
  background-color: rgba(0, 0, 0, 0.9); 
}
  
  .w3l-footer-29-main .footer-list-29 ul li a:hover,
  .w3l-copyright .footer-list-29 ul li a:hover,
  .w3l-footer-29-main a:hover {
    color: #eaeaea;
    opacity: 1; }
  
  .main-social-footer-29 a {
    margin-right: 15px;
    display: inline-block;
    text-align: center;
    font-size: 16px; 
    background: none;
    border-radius: 50%;
    transition: 0.3s;
    color: #999999;
    opacity: .6; }
  
  .main-social-footer-29 a:hover {
    transition: 0.3s;
    color: #eaeaea;
    opacity: 1; }
  
  .footer-list-29 ul li span.fa {
    width: 25px; }
  
  .w3l-copyright .copy-footer-29 a {
    color: #f9c400;          
    font-weight: 600;
  }
  
  .w3l-copyright .copy-footer-29 a:hover {
    color: #eaeaea; }
  
  .w3l-copyright {
    padding: 1.5em 0;
    border-top: 1px solid rgba(249, 249, 249, 0.1); }
  
  .w3l-footer-29-main .footer-29 form {
    margin-top: 25px;
    position: relative; }
  
  .w3l-footer-29-main .footer-post a {
    font-weight: 500;
    color: #ccc;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 4px;
    display: inline-block; }

.w3l-copyright #movetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #eaeaea;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  padding: 0;
  line-height: 36px;
  border-radius: 35px;
  transition: 0.3s ease-out; }

  .w3l-footer-29-main .footer-post a:hover {
    color: #eee; }
  
  .w3l-footer-29-main .map-iframe-ft iframe {
    -webkit-filter: var(--iframe-filter);
    -moz-filter: var(--iframe-filter);
    -ms-filter: var(--iframe-filter);
    -o-filter: var(--iframe-filter);
    filter: var(--iframe-filter);
    height: 200px;
    border-radius: var(--border-radius); }
  
  .w3l-copyright p.copy-footer-29 {
    align-self: center;
    color: #7f8a94;
    font-size: 17px;
    letter-spacing: .5px;
    opacity: 1; }
  
  @media (max-width: 992px) {
    .w3l-copyright .copy-footer-29 {
      text-align: center; }
    .w3l-footer-29-main ul.list-btm-29 {
      text-align: center;
      margin-top: 10px; }
    .w3l-footer-29-main h6.footer-title-29 {
      margin-bottom: 20px;
      font-size: 20px; }
    .w3l-copyright .main-social-footer-29 {
      text-align: center;
      margin-top: 20px; } }
  
  @media (max-width: 415px) {
    .w3l-footer-29-main .footer-list-29 ul li,
    .w3l-footer-29-main .midd-footer-29:nth-child(1) .footer-list-29 ul li:last-child {
      margin-bottom: 8px; }
    .w3l-footer-29-main a.navbar-brand {
      font-size: 26px; }
    .w3l-footer-29-main p {
      font-size: 17px; }
    .w3l-footer-29-main .footer-list-29 ul li a,
    .w3l-footer-29-main .footer-list-29 ul li p,
    .w3l-copyright .footer-list-29 ul li a,
    .w3l-footer-29-main a {
      font-size: 17px; } }

.scroll-up-arrow {
  font-size: 2rem;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease;
}

.scroll-up-arrow:hover {
  transform: translateY(-4px); /* lyfter upp vid hover */
}


/* Container */
.container.container-dark {
  background: #22313F;
  color: #eaeaea; }

.socials i {
  line-height: 37px;
  color: #616161;
  font-size: 14px;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.2s linear; }

.title-content {
  max-width: 800px;
  margin: auto; }

/**
   * Fade-zoom animation for first dialog
   */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8); }

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: opacity 0.3s ease-out; }

/**
   * Fade-move animation for second dialog
   */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-out;
  transform: translateY(-20px) perspective(600px) rotateX(10deg); }

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  transition: opacity 0.3s ease-out; }

.service-image {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius); }

.text-11 a.read {
  font-size: 18px;
  padding: 0;
  color: var(--heading-color);
  transition: 0.3s ease-in-out;
  font-weight: 600;
  border-radius: 0;
  margin-top: 20px;
  display: inline-block;
  text-transform: capitalize;
  letter-spacing: .5px; }

.form-header {
      position:relative;
      background: rgba(0, 0, 0, 0.65);
      padding: 0.5rem;
      border-radius: 1rem;
      color: #f8f8f8;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }

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

    .btn-custom {
      color: #111;
      font-weight: 700;
      border: none;
      padding: 1rem;
      border-radius: 14px;
      background: linear-gradient(to bottom right, #ffc107, #ff9800);
      box-shadow: 0 5px 15px rgba(255,193,7,0.5);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .btn-custom:hover {
      background-color: #ffde33;
      color: #002b5b; /* mörkblå text för kontrast */
      transform: scale(1.05);
      box-shadow:
        0 0 10px rgba(0, 123, 255, 0.6),     /* yttre blå glow */
        0 0 20px rgba(0, 123, 255, 0.4),     /* större diffus glow */
        inset 0 0 5px rgba(0, 123, 255, 0.3); /* inre skimmer */
      transition: all 0.2s ease-in-out;
    }
    

.btn-custom.attention {
      animation: nudge 2.5s infinite;
    }

@keyframes nudge {
      0% { transform: translateX(0); }
      2% { transform: translateX(-2px); }
      4% { transform: translateX(2px); }
      6% { transform: translateX(-2px); }
      8% { transform: translateX(2px); }
      10% { transform: translateX(0); }
      100% { transform: translateX(0); }
    }

.option-row-hero {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.6rem;
      margin-bottom: 1rem;
    }

.option-box-hero {
      color: #002244;
      font-size: 0.9rem;
      font-weight: 700;
      border-radius: 0.8rem;
      padding: 0.7rem;
      text-align: center;
      flex: 1 1 calc(33.33% - 0.6rem);
      min-width: 0;
      box-sizing: border-box;
      white-space: nowrap;
      background: linear-gradient(to bottom right, #ffc107, #ff9800);
      box-shadow: 0 5px 15px rgba(255,193,7,0.5);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      }


.option-box-hero:hover,
    .option-box-hero.selected {
      background-color: #ffde33;
      color: #002b5b; /* mörkblå text för kontrast */
      transform: scale(1.05);
      box-shadow:
        0 0 10px rgba(0, 123, 255, 0.6),     /* yttre blå glow */
        0 0 20px rgba(0, 123, 255, 0.4),     /* större diffus glow */
        inset 0 0 5px rgba(0, 123, 255, 0.3); /* inre skimmer */
      transition: all 0.2s ease-in-out;
    }

    input[type=radio] {
      display: none;
    }

.section-heading {
      margin-bottom: 3rem;
      text-align: center;
    }

.section-eyebrow {
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      font-weight: 600;
      color: #888;
      opacity: 0.75;
      margin-bottom: 0.5rem;
    }

.section-headline {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--font-color);
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
      line-height: 1.2;
    }

.rating-box {
      background: #eaeaea;
      padding: 2rem 1rem;
      border-radius: 12px;
      margin: 1rem;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.08),
                  0 0 0 1px rgba(0, 0, 0, 0.03) inset;
      transition: all 0.3s ease;
      min-height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }

.rating-box::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05), transparent 60%);
      transform: rotate(25deg);
      animation: shine 8s infinite linear;
      pointer-events: none;
    }

[data-theme="dark"] .rating-box {
      background: #111118;
      color: #e6e6e6;
      box-shadow: 0 0 15px rgba(7, 152, 255, 0.08),
                  0 0 0 1px rgba(255, 255, 255, 0.03) inset;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

[data-theme="dark"] .rating-box p {
      color: #dddddd;
      text-shadow: 0 0 3px rgba(255, 255, 255, 0.05);
    }

[data-theme="dark"] .rating-box:hover {
      box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
    }

[data-theme="dark"] .rating-box::before {
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 60%);
    }

.option-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.6rem;
    }

.option-box {
  color: #002244;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.8rem;
  padding: 0.6rem;
  text-align: center;
  flex: 1 1 calc(33.33% - 0.6rem);
  min-width: 0;
  box-sizing: border-box;
  white-space: nowrap;
  background: linear-gradient(to bottom right, #ffc107, #ff9800);
  box-shadow: 0 5px 15px rgba(255,193,7,0.5);
  backdrop-filter: blur(8px); /* suddig bakgrundseffekt */
  -webkit-backdrop-filter: blur(8px); /* för Safari */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.option-box {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: normal; /* tillåter radbrytning */
      line-height: 1.2;     /* justerar höjd på text */
    }

.option-box:hover,
    .option-box.selected {
      background-color: #ffde33;
      color: #002b5b; /* mörkblå text för kontrast */
      transform: scale(1.05);
      box-shadow:
        0 0 10px rgba(0, 123, 255, 0.6),     /* yttre blå glow */
        0 0 20px rgba(0, 123, 255, 0.4),     /* större diffus glow */
        inset 0 0 5px rgba(0, 123, 255, 0.3); /* inre skimmer */
      transition: all 0.2s ease-in-out;
    }

#result {
      display: none;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 1.5rem;
      border-radius: 10px;
      font-size: 1.25rem;
      font-weight: bold;
      color: #F6C324 !important;
      text-align: center;
      margin-top: 2rem;
      box-shadow: 0 0 20px rgba(0, 75, 135, 0.6);
      z-index: 10;
      position: relative;
    }

.result-message {
      display: none;
      background-color: rgba(0, 0, 0, 0.75);
      border-radius: 12px;
      padding: 20px;
      margin-top: 20px;
      color: #ffd700;
      font-size: 1.2rem;
      font-weight: 600;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
      animation: fadeInScale 0.5s ease-out forwards;
    }

@keyframes fadeInScale {
      0% {
        opacity: 0;
        transform: scale(0.8);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

.pulse-glow-blue {
      animation: pulseGlowBlue 2.5s infinite ease-in-out;
    }

@keyframes pulseGlowBlue {
      0% {
        box-shadow: 0 0 12px rgba(0, 120, 255, 0.4);
      }
      50% {
        box-shadow: 0 0 24px rgba(0, 120, 255, 0.8);
      }
      100% {
        box-shadow: 0 0 12px rgba(0, 120, 255, 0.4);
      }
    }

.pulse-glow-blue {
      animation: pulseGlowBlue 2.5s infinite ease-in-out;
    }

@keyframes pulseGlowBlue {
      0% {
        box-shadow: 0 0 12px rgba(0, 120, 255, 0.4);
      }
      50% {
        box-shadow: 0 0 24px rgba(0, 120, 255, 0.8);
      }
      100% {
        box-shadow: 0 0 12px rgba(0, 120, 255, 0.4);
      }
    }

.summary-box {
      background-color: rgba(0, 0, 0, 0.5);
      color: #f8f8f8;
      padding: 10px 10px;
      border-radius: 12px;
      font-size: 1rem;
      position: relative;
      z-index: 10;
      backdrop-filter: blur(2px);
    }

.btn {
      padding: 12px 28px;
      border: none;
      border-radius: 10px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.2s ease;
      min-width: 140px;
      text-align: center;
    }

.button-wrapper {
      width: 100%;
    }

.submit-btn {
      width: 100%;
      font-weight: bold;
      padding: 14px 20px;
      font-size: 1.2rem;
      background-color: #ffc400;
      color: #002b5b;
      border: none;
      border-radius: 14px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: all 0.25s ease-in-out;
    }

.back-wrapper {
      display: flex;
      justify-content: flex-start;
      margin-top: 16px;
    }

.back-btn-sm {
      font-size: 1rem;
      padding: 3px 6px;
      border-radius: 12px;
      background-color: rgba(255, 255, 255, 0.15);
      color: #ffc400;
      border: 1px solid #ffc400;
      font-weight: 600;
      box-shadow: none;
      transition: all 0.2s ease-in-out;
    }

.back-btn-sm-hero {
  font-size: 1rem;
  padding: 3px 6px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffc400;
  border: 1px solid #ffc400;
  font-weight: 600;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
    }

.option-row-exit {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      max-width: 100%;
      margin: 0 auto;
      padding: 10px 0;
      box-sizing: border-box;
      margin-top: 0.5rem;
    }

.cta-warning-box {
      background: rgba(255, 0, 0, 0.85);
      color: white;
      text-align: center;
      padding: 0.7rem 1.2rem;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 1rem;
      line-height: 1.4;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
      position: relative;
      z-index: 10; 
    }

.timer-box {
      background: rgba(0, 0, 0, 0.6);
      padding: 1rem;
      border-radius: 10px;
      width: 80px;
      text-align: center;
      box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
      z-index: 10;
    
    }

.privacy-note-exit {
      color: #eaeaea;
      font-size: 1.25rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-top: 1.5rem;
      text-align: center;
      justify-content: center;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
      background-color: rgba(0, 0, 0, 0.4); /* valfri mörk ton bakom */
      padding: 0.6rem 1rem;
      border-radius: 10px;
      max-width: 100%;
      line-height: 1.4;
      margin-top:10px;
    }

.privacy-note {
      color: #eaeaea;
      font-size: 1.25rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-align: center;
      justify-content: center;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
      background-color: rgba(0, 0, 0, 0.4); /* valfri mörk ton bakom */
      padding: 0.4rem 1rem;
      border-radius: 10px;
      max-width: 100%;
      line-height: 1.4;
    }

.privacy-note-hero {
      color: #eaeaea;
      font-size: 1.25rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-align: center;
      justify-content: center;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95);
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      max-width: 100%;
      line-height: 1;
      margin-top:-35px;
    }

    .form-progress {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 10px auto 10px;
      gap: 10px;
      position: relative;
      z-index: 10;
      margin-top: 15px;
      margin-bottom: 15px;
      z-index: 1;
      position: relative;
    }
    
    .hero-progress {
      margin-bottom: 20px;
    }
    
    .form-progress .step {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .form-progress .circle {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: bold;
      height: 38px;
      width: 38px;
      border-radius: 50%;
      background: #eaeaea;
      color: #002d74;
      box-shadow: 0 0 8px rgba(0,0,0,0.25), inset 0 0 5px rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    }
    
    
    .form-progress .step.active .circle {
      background: linear-gradient(145deg, #2ecc71, #27ae60);
      box-shadow: 0 0 15px #2ecc71;
      transform: scale(1.05);
    }
    
    .form-progress .step.active .circle::before {
      content: none;

    }
    
    .form-progress .line {
      height: 3px;
      width: 40px;
      background: #ccc;
      border-radius: 2px;
      box-shadow: inset 0 0 4px rgba(0,0,0,0.1);
      transition: background 0.3s ease;
    }
    
    .form-progress .step.active + .line {
      background: #28a745;
    }
   
    .glass-box {
      background: rgba(255, 255, 255, 0.25); 
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); 
      backdrop-filter: blur(10px); 
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .hero-section {
      display: flex;
      align-items: flex-start; /* eller center beroende på vad du vill */
      justify-content: flex-end; /* Skjuter formuläret till höger */
      position: relative;
    }
    
/* === LIGHT MODE (default) === */
/* ===== HERO FORM — Frosted Glass (Default: Dark) ===== */
.hero-form-wrapper {
  position: absolute;
  top: 110px;
  right: 140px;
  width: 100%;
  max-width: 380px;
  min-height: 750px;
  height: 870px;
  z-index: 10;
  border-radius: 16px;
  padding: 20px;
  display: block;
  aspect-ratio: 4 / 3;
  will-change: transform;
  transition: opacity .3s ease-in-out, transform .3s ease-out;

  /* Frosted glass core */
  color: var(--font-color, #fff);
  background:
    /* soft corner highlights */
    radial-gradient(140% 100% at 0% 0%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(120% 90% at 100% 0%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 60%),
    /* base tint */
    rgba(18,22,30,.32);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    0 28px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.25);
  backdrop-filter: blur(24px) saturate(135%) contrast(102%);
  -webkit-backdrop-filter: blur(24px) saturate(135%) contrast(102%);
}

/* Subtil glas-reflex + mikronoise för premiumyta */
.hero-form-wrapper::before,
.hero-form-wrapper::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.hero-form-wrapper::before {
  /* kantljus, nedtonat så det inte "lyser" */
  background: linear-gradient(135deg,
    rgba(255,255,255,.16) 0%,
    rgba(255,255,255,.08) 22%,
    rgba(255,255,255,0) 46%,
    rgba(255,255,255,0) 68%,
    rgba(255,255,255,.06) 84%,
    rgba(255,255,255,.12) 100%);
  mix-blend-mode: screen;
  opacity: .9;
}
.hero-form-wrapper::after {
  /* mikro-kornighet för glas-känsla */
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.05) 0, rgba(255,255,255,0) 100%),
    radial-gradient(1px 1px at 70% 60%, rgba(0,0,0,.04) 0, rgba(0,0,0,0) 100%),
    radial-gradient(1px 1px at 45% 80%, rgba(255,255,255,.04) 0, rgba(255,255,255,0) 100%);
  opacity: .65;
}

/* Fokusring för inputs/knappar inuti — diskret glassring */
.hero-form-wrapper :where(input,select,textarea,button,[role="button"],.btn):focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,.7), 0 0 0 6px rgba(255,193,7,.35);
  border-radius: 12px;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] .hero-form-wrapper {
  color: #0f1320;
  background:
    radial-gradient(140% 100% at 0% 0%, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 55%),
    radial-gradient(120% 90% at 100% 0%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 60%),
    rgba(242,246,252,.44);                /* ljus frosted tint (ej kritvit) */
  border: 1px solid rgba(255,255,255,.6);
  box-shadow:
    0 22px 60px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.75);
  backdrop-filter: blur(26px) saturate(160%) contrast(101%);
  -webkit-backdrop-filter: blur(26px) saturate(160%) contrast(101%);
}
[data-theme="light"] .hero-form-wrapper::before {
  background: linear-gradient(135deg,
    rgba(255,255,255,.65) 0%,
    rgba(255,255,255,.28) 22%,
    rgba(255,255,255,0) 50%,
    rgba(255,255,255,0) 68%,
    rgba(255,255,255,.18) 86%,
    rgba(255,255,255,.30) 100%);
}
[data-theme="light"] .hero-form-wrapper::after {
  background-image:
    radial-gradient(1px 1px at 22% 32%, rgba(0,0,0,.05) 0, rgba(0,0,0,0) 100%),
    radial-gradient(1px 1px at 70% 58%, rgba(0,0,0,.035) 0, rgba(0,0,0,0) 100%),
    radial-gradient(1px 1px at 48% 82%, rgba(0,0,0,.03) 0, rgba(0,0,0,0) 100%);
  opacity: .5;
}
[data-theme="light"] .hero-form-wrapper :where(input,select,textarea,button,[role="button"],.btn):focus-visible {
  box-shadow: 0 0 0 2px rgba(16,19,32,.55), 0 0 0 6px rgba(255,193,7,.35);
}

/* ===== Finjusteringar (valfritt) ===== */
/* Mjuk hover för hela panelen */
.hero-form-wrapper:hover { transform: translateY(-1px); }
/* Undvik intern overflow-scroll om fält blir många */
.hero-form-wrapper { overflow: clip; }  /* fallback: hidden */
@supports not (overflow: clip) { .hero-form-wrapper { overflow: hidden; } }

/* Responsiv placering (kan justeras efter din layout) */
@media (max-width: 1024px) {
  .hero-form-wrapper {
    position: relative;
    top: auto; right: auto; margin: 2rem auto 0;
    height: auto; min-height: 0; aspect-ratio: auto;
    max-width: 520px;
  }
}
@media (max-width: 520px) {
  .hero-form-wrapper { max-width: 92vw; padding: 16px; border-radius: 14px; }
}


/* === iPad Portrait (768px) === */
@media (max-width: 768px) {
  .hero-form-wrapper {
    right: 10px;
    left: auto;
    max-width: 380px;
    width: 100%;
    padding: 1.8rem;
  }
}

/* === iPad Landscape & mindre laptops (769px–1024px) === */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-form-wrapper {
    right: 10px;
    left: auto;
    max-width: 400px;
    padding: 2rem;
  }
}

@media (min-width: 1025px) and (max-width: 1468px) {
  .hero-form-wrapper {
    right: 20px;
    left: auto;
    max-width: 400px;
    padding: 2rem;
  }
}

.form-header-hero h2 {
  font-size: 1.9rem;
  text-align: center;
  font-weight: 700;
  color: #0056b3;
  background: linear-gradient(135deg, rgba(0,123,255,0.15), rgba(0,123,255,0.3));
  padding: 10px 20px;
  border-radius: 12px;
  margin: 0 auto 1rem auto;
  min-height: 105px;
  border: 1px solid rgba(0, 123, 255, 0.25);
  box-shadow:
    0 0 10px rgba(0,123,255,0.2),
    0 0 15px rgba(0,123,255,0.1),
    inset 0 0 5px rgba(0,123,255,0.1);
  text-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  animation: fadeGlowIn 0.8s ease-out forwards;
}

/* === DARK MODE via [data-theme="dark"] === */
[data-theme="dark"] .hero-form-wrapper {
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .form-header-hero h2 {
  color: #FFCD00;
  background: linear-gradient(135deg, rgba(0,123,255,0.4), rgba(0,123,255,0.6));
  border: 1px solid rgba(0, 123, 255, 0.4);
  box-shadow:
    0 0 10px rgba(0,123,255,0.4),
    0 0 20px rgba(0,123,255,0.3),
    inset 0 0 10px rgba(0,123,255,0.2);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.cta-price, .cta-proof, .cta-urgency {
  margin: 0.5rem 0;
  font-size: 1rem;
}
.cta-price .line-through {
  text-decoration: line-through;
  color: #ff6666;
  font-style: italic;
}
.cta-urgency .danger {
  color: #ff4444;
  font-weight: bold;
}
.cta-benefits {
  margin-top: 1rem;
  text-align: left;
}

/* Default (dark mode) */
.benefit-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #28a745; /* bootstrap green */
  font-size: 1em;
}

[data-theme="light"] .benefit-title {
  color: #055417;   /* djupare emerald */
}


.checklist-hero {
  list-style: none;
  padding-left: 0.9rem;
  margin: 0;
}

.checklist-hero li {
  padding-left: 1.4em;
  margin: 0.4rem 0;
  position: relative;
}

.checklist-hero li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}

@keyframes fadeGlowIn {
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

.privacy-note-hero {
      font-size: 1rem;
      flex-wrap: wrap;
    }

.text-para {
      color: var(--font-color);
      text-shadow: 0 0 3px rgba(0,0,0,0.5);
    }

.box-wrap .icon i {
      transition: transform 0.3s ease;
    }

    .form-control {
      display: block;
      width: 100%;
      height: calc(1.5em + 0.75rem + 2px);
      padding: 0.375rem 0.75rem;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #495057;
      background-color: #eaeaea;
      background-clip: padding-box;
      border: 1px solid #ced4da;
      border-radius: 0.25rem;
      transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }

.form-control::placeholder {
      color: #aaa;
    }
    
    .form-control {
      background-color: #1a1a1a !important;
      color: #eaeaea !important;
      border: 1px solid #444 !important;
      border-radius: 6px;
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6) !important;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      outline: none;
      border-color: #0798ff !important;
      box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.6),
        0 0 10px rgba(7, 152, 255, 0.8),
        0 0 20px rgba(7, 152, 255, 0.5) !important;
      background-color: #1a1a1a !important;
      color: #eaeaea !important;
      transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }
    
    .review-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      padding: 2rem;
      max-width: 1200px;
      margin: auto;
    }
    
    .review-box {
      background: #f9f9f9;
      border-radius: 16px;
      padding: 1.8rem;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03),
                  0 0 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
      color: #333;
      position: relative;
    }
    
    .review-box:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow:
        0 0 25px rgba(255, 193, 7, 0.15),
        0 0 50px rgba(7, 152, 255, 0.1),
        inset 0 0 15px rgba(0, 0, 0, 0.04);
    }
    
    .review-header {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .initials-circle {
      background: linear-gradient(145deg, #eee, #ccc);
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
      color: #111;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1rem;
      margin-right: 0.8rem;
    }
    
    .review-meta strong {
      display: block;
      font-size: 1rem;
      color: #ffc107;
    }
    
    .review-meta .meta {
      font-size: 0.85rem;
      color: #666;
    }
    
    .stars {
      color: #ffc107;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }
    
    /* FAQ Section (Light) */
    .faq-section {
      background: linear-gradient(to bottom, #f2f2f2, #e6e6e6);
      padding: 4rem 1rem;
      color: #333;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .faq-box {
      background: #eaeaea;
      padding: 2rem 1rem;
      border-radius: 12px;
      margin: 1rem;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.08),
                  0 0 0 1px rgba(0, 0, 0, 0.03) inset;
      transition: all 0.3s ease;
      min-height: 80%;
      border: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }
    
    .faq-box:hover {
      box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
      transform: translateY(-3px);
    }
    
    .faq-box h4 {
      color: #ffc107;
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-align: center;
      text-shadow: 0 0 6px rgba(255, 193, 7, 0.2);
    }
    
    .faq-box p {
      color: #444;
      font-size: 0.9rem;
      line-height: 1.5;
      padding-top:5px;
      text-align: left;
      text-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
    }
    
    .faq-box::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05), transparent 60%);
      transform: rotate(25deg);
      animation: shine 8s infinite linear;
      pointer-events: none;
    }

    /* === DARK MODE OVERRIDES === */
    [data-theme="dark"] .review-box {
      background: #111118;
      border: 1px solid rgba(255, 255, 255, 0.05);
      color: #ccc;
      box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02),
                  0 0 20px rgba(0, 0, 0, 0.6);
    }
    
    [data-theme="dark"] .review-box:hover {
      box-shadow:
        0 0 25px rgba(255, 193, 7, 0.15),
        0 0 50px rgba(7, 152, 255, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.04);
    }
    
    [data-theme="dark"] .initials-circle {
      background: linear-gradient(145deg, #1e1e2e, #111118);
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
      color: #eaeaea;
    }
    
    [data-theme="dark"] .review-meta .meta {
      color: #999;
    }
    
    [data-theme="dark"] .faq-section {
      background: linear-gradient(to bottom, #0a0a12, #0c0c16);
      color: #ddd;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    [data-theme="dark"] .faq-box {
      background: #111118;
      color: #e6e6e6;
      box-shadow: 0 0 15px rgba(7, 152, 255, 0.08),
                  0 0 0 1px rgba(255, 255, 255, 0.03) inset;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    [data-theme="dark"] .faq-box p {
      color: #dddddd;
      text-shadow: 0 0 3px rgba(255, 255, 255, 0.05);
    }
    
    [data-theme="dark"] .faq-box:hover {
      box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
    }
    
    [data-theme="dark"] .faq-box::before {
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 60%);
    }
    
    /* Optional: shine animation */
    @keyframes shine {
      0% { transform: rotate(25deg) translateX(-100%); }
      100% { transform: rotate(25deg) translateX(100%); }
    }
    
    .plats-varning {
      color: #ff4444;
      font-style: italic;
      font-size: 1.2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.1em;
    }
    
    .plats-varning .ikon {
      font-size: 1.4em;
      line-height: 1;
      vertical-align: middle;
      display: inline-block;
    }
    

    /* Autofill fix for Chrome */
    input.form-control:-webkit-autofill {
      -webkit-box-shadow: 0 0 0px 1000px #1a1a1a inset !important;
      -webkit-text-fill-color: #eaeaea !important;
      transition: background-color 5000s ease-in-out 0s;
    }
    
     .countdown-wrapper {
      display: flex;
      justify-content: center;
      gap: 0.4rem;
      margin: 0.6rem;
      }
    .countdown-timer {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      font-family: 'Segoe UI', sans-serif;
      font-weight: bold;
      font-size: 1.8rem;
    }
    
    .countdown-timer div {
      background: rgba(0, 0, 0, 0.2);
      padding: 1rem 1.2rem;
      border-radius: 10px;
      min-width: 80px;
      box-shadow: 0 0 8px rgba(255, 193, 7, 0.2);
      color: #ffc107;
      text-align: center;
      z-index: 10;
    }
    
    .countdown-timer small {
      display: block;
      font-size: 0.7rem;
      font-weight: normal;
      margin-top: 0.4rem;
      color: #ccc;
    }
    
    .exit-heading {
      font-size: 1.8rem;
      font-weight: 800;
      color: #eaeaea;
      text-align: center;
      line-height: 1.3;
      margin-bottom: 1rem;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    .highlight-free {
      font-size: 2rem;
      font-weight: 800;
      color: #fcd34d; /* gul/amber-ton */
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.4),
        inset 0 0 1px rgba(255, 255, 255, 0.1);
      background: none;
      -webkit-background-clip: unset;
      -webkit-text-fill-color: unset;
      display: inline-block;
      letter-spacing: -0.3px;
      text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.6),
      0 2px 4px rgba(255, 128, 0, 0.25);
    }
    
    .exit-heading .value-tag {
      margin-top: 0.3rem;
      font-size: 1.1rem;
      color: #eaeaea;
      font-weight: 600;
      background: #d10000;
      display: inline-block;
      padding: 0.15rem 0.6rem;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
      line-height: 1.2;
    }
    
    .checklist {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .checklist li {
      font-size: 1.1rem;
      line-height: 0.9;
      padding-left: 2rem;
      position: relative;
      margin-bottom: 0.8rem;
    }
    
    .checklist li .icon-check {
      position: absolute;
      left: 0;
      top: 0.1rem;
      color: #00ff88;
      font-weight: bold;
      font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
      
      .hero-form-wrapper {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto;
        max-width: 95%;
      }
    
      .cta-warning-box {
        font-size: 1rem;
        padding: 0.3rem 0.5rem;
        border-radius: 10px;
        line-height: 1.5;
      }
    
    .highlight-yellow {
      color: #ffee00;
      font-weight: bold;
    }
    
    .countdown-wrapper {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1rem;
      z-index: 5;
    }
    
    .timer-box {
      background: rgba(0, 0, 0, 0.6);
      padding: 1rem;
      border-radius: 10px;
      width: 80px;
      text-align: center;
      box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
      z-index: 10;
    
    }
    
    .timer-box .number {
      font-size: 1.8rem;
      color: #ffdc00;
      font-weight: 800;
    }
    
    .timer-box .label {
      font-size: 0.8rem;
      color: #ccc;
    }
    
      .exit-features li {
        font-size: 0.95rem;
        line-height: 1.4;
      }
    
      .exit-heading {
        font-size: 1.4rem;
        line-height: 1.3;
      }
    
      .highlight-price {
        font-size: 1rem;
        padding: 0.15rem 0.35rem;
      }
    
      .exit-subtitle {
        font-size: 1.2rem;
        margin-top: 1rem;
      }
    
      .exit-buttons .btn {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
      }
    }
    
    @media (max-width: 500px) {
      .brand-tagline {
        font-size: 0.60rem;
        white-space: nowrap;
      }
    
      .brand-name {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 400px) {
      
      .countdown-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.7rem;
        margin-top: 0.5rem;
        justify-content: center;
      }
    
      .timer-box {
        width: 70px;
        padding: 0.8rem 0.5rem;
        border-radius: 8px;
      }
    
      .timer-box .number {
        font-size: 1.5rem;
      }
    
      .timer-box .label {
        font-size: 0.75rem;
      }
    
      .faq-section .col-md-3:not(:last-child) {
        margin-bottom: 1.5rem;
      }
    
      .option-box-hero {
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
      }
    
      .modal-dialog {
        max-width: 95vw;
        margin: 0 auto;
      }
         
      .modal-content {
        width: 100%;
        padding: 1rem;
      }
      
      .modal-content h2 {
        font-size: 1.4rem !important;
      }
    
      .modal-dialog {
          margin: 10px auto;
          width: 95% !important;
          max-width: 95%;
        }
      
        .modal-content {
          padding: 15px;
          font-size: 14px;
        }
      
        .modal-header,
        .modal-body,
        .modal-footer {
          padding: 10px;
        }
      
        .modal-title {
          font-size: 18px;
        }
      
        .modal .btn {
          font-size: 14px;
          padding: 8px 12px;
        }
      
        input,
        select,
        textarea {
          font-size: 14px;
        }
         
      .call-grids-w3.d-grid {
        gap: 0.1rem;
      }
      
      .privacy-note-exit {
        font-size: 1rem;
        flex-wrap: wrap;
      }
    
      .privacy-note-exit i {
        font-size: 1.2rem;
      }
    
      .privacy-note {
        font-size: 1rem;
        flex-wrap: wrap;
      }
    
      .privacy-note i {
        font-size: 1.2rem;
      }
    
      .form-header {
        width: 100%;
        max-width: none;
        flex: 1 1 auto;
        display: block;
      }
    
      .form-header {
        padding: 1rem;
      }
    
      .form-header h2 {
        font-size: 1.3rem;     
        line-height: 1.4;      
        word-break: break-word;
        margin-bottom: 0.8rem;
      }
    
      .form-header .lead-time {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
      }
    
      .form-header p {
        font-size: 1rem;
        line-height: 1.6;
      }
    
      .checklist li {
        white-space: normal;  
        overflow: visible;
        text-overflow: unset;
      }
    
      .checklist {
        margin-top: 0.8rem;
      }
      
      .checklist li {
        font-size: 1.3rem;
        line-height: 0.9;
        padding-left: 1.6rem;    /* Ge plats för check-ikonen */
        margin-bottom: 0.5rem;
      }
    
      .checklist li .icon-check {
        font-size: 1.1rem;
        top: 0.15rem;
      }
    
      .option-box {
        font-size: 1.1rem;
        padding: 20px 22px;
        min-width: 110px;
      }
    
      .option-box-hero {
        font-size: 1.1rem;
        padding: 5px 7px;
        min-width: 110px;
      }
      
      .option-row {
        flex-direction: column;
        align-items: center;
      }
    
      .modal-content {
        padding: 1rem;
      }
    
      .summary-box {
        font-size: 1rem;
      }
    
      .btn {
        padding: 10px 18px;
        font-size: 1rem;
        min-width: 100px;
      }
    
      .form-header {
        padding: 1.2rem;
      }
    
      .button-row {
        flex-direction: column;
        align-items: stretch;
      }
    
      .button-column {
        align-items: center;
      }
      .submit-btn {
        max-width: 100%;
      }
      .submit-btn {
        font-size: 1.1rem;
      }
    
      .back-btn-sm {
        font-size: 0.95rem;
        padding: 3px 6px;
      }
      
      .back-btn-sm-hero {
        font-size: 0.95rem;
        padding: 3px 6px;
      }
      
      .back-wrapper {
        justify-content: left;
      }

      
    .exit-heading {
      line-height: 1.4;
      margin-bottom: 0.8rem;
      margin-top: 0.8rem;
      font-size: 1.3rem !important;
    }

    .highlight-free {
      font-size: 1.3rem !important;
    }
    
    }
    
    h1, .h1 {
      font-size: 2.5rem;
    }
    @media (max-width: 1200px) {
      h1, .h1 {
        font-size: calc(1.375rem + 1.5vw);
      }
    }
    @media (max-width: 480px) {
      h1, .h1 {
        font-size: 1.8rem;
      }
    }
    
    h2, .h2 {
      font-size: 2rem;
    }
    @media (max-width: 1200px) {
      h2, .h2 {
        font-size: calc(1.325rem + 0.9vw);
      }
    }
    @media (max-width: 480px) {
      h2, .h2 {
        font-size: 1.5rem;
      }
    }
    
    h3, .h3 {
      font-size: 1.75rem;
    }
    @media (max-width: 1200px) {
      h3, .h3 {
        font-size: calc(1.3rem + 0.6vw);
      }
    }
    @media (max-width: 480px) {
      h3, .h3 {
        font-size: 1.3rem;
      }
    }
    
    h4, .h4 {
      font-size: 1.4rem;
    }
    @media (max-width: 1200px) {
      h4, .h4 {
        font-size: calc(1.275rem + 0.3vw);
      }
    }
    @media (max-width: 480px) {
      h4, .h4 {
        font-size: 1.15rem;
      }
    }
    
    h5, .h5 {
      font-size: 1.25rem;
    }
    @media (max-width: 480px) {
      h5, .h5 {
        font-size: 1.05rem;
      }
    }
    
    h6, .h6 {
      font-size: 1rem;
    }
    @media (max-width: 480px) {
      h6, .h6 {
        font-size: 0.95rem;
      }
    }
    
    @media (max-width: 480px) {
      header.main-header {
        height: 100px;
        padding: 0 1rem;
      }
    
      header.main-header .header-container {
        height: 100%;
        align-items: center;
        padding-left: 0px;
      }
      .plats-varning {
        font-size: 1rem;
        text-align: center;
        display: block;
        padding: 0.1em 0;
    }   
}
    