* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

header {
      background-color: #eaefdd;

  position: sticky;
  top: 33px;
  left: 0;
  z-index: 1000;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 5rem;
}

body {
  font-family: system-ui, sans-serif;
  line-height: 1.5;
      background-color: #f3f6eb;
        font-family: "Bricolage Grotesque", sans-serif;


  -webkit-font-smoothing: antialiased;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/**********************************/
/*      NAVBAR/HEADER        */
/**********************************/
.container {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}

.container-sm {
  max-width: 800px;
  width: 60%;
  margin: 0 auto;
}

.mini-nav {
  padding: 5px;
  background-image: linear-gradient(to left, #2f4812 0%, #1a240d 100%);
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
}

.inf {
  display: flex;
  gap: 20px;
}

.inf h5 {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  margin-left: 5px;
}

.inf i {
  margin-right: 5px;
  color: #fff;
}

.cont-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-side i {
  font-size: 20px;
  color: #fff;
  margin: 4px 5px;
}
.cont-nav img:hover {
  transform: scale(1.1);
}

.navbar {
  min-height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar img {
  height: 57px;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.nav-link {
  transition: 0.3s ease-out;
  font-size: 18px;
        font-family: "Bricolage Grotesque", sans-serif;

  font-weight: 600;
  color: #000000;
}

.bg-dark {
  display: inline-block;
  background-color: #22360c;
  font-weight: 500;
  color: #fff;
  margin-left: 20px;
  padding: 12px 24px;
  border-radius: 999px;
}

.bg-dark i {
  color: #fff;
  margin-left: 10px;
  font-size: 15px;
}



.nav-link:hover {
  border-bottom: solid #283a13 2px;
}

.nav-link.current {
  border-bottom: solid #283a13 2px;
}

.inf a {
  color: #fff;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 32px;
  height: 2px;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.5s ease;
  background-color: #18220c;
}

/**********************************/
/*      HERO SECTIONS       */
/**********************************/
.hero {
  padding-top: 70px;
  width: 100%;
      background-color: #f3f6eb;

  
}

.hero-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  text-align: center;
  width: 100%;
  justify-content: center;
}

.hero-txt {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 20px;
}

.hero-txt h1 {
  font-size: 68px;
  font-weight: 600;
  font-style: normal;
  max-width: 600px;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.1;
  color: #21320e;
}

.hero-txt h6 {
  font-size: 20px;
  max-width: 65%;
  padding-top: 40px;
  font-weight: 500;
    font-family: "Bricolage Grotesque", sans-serif;

  color: #222f12;
}

.btn-kontakt {
  display: inline-block;
  padding: 16px 24px;
  background-color: #263c0e;
        font-family: "Bricolage Grotesque", sans-serif;

  color: #fff;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
}

.btn-kontakt:hover {
  opacity: 0.8;
}

.btn-kontakt i {
  margin-left: 10px;
}

.btn-floe {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  padding-top: 40px;
  gap: 40px;
}

.anm {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.strs p {
  font-size: 24px;
  color: #46780d;
  width: 100%;
  padding-bottom: 5px;
}

.p-strs p {
  font-size: 18px;
  color: #18220c;
  font-weight: 600;
}

/*SM JS*/
.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
  padding-bottom: 130px;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
}

.logos:after {
  right: 0;
}

.logos-slide {
  display: inline-block;
  animation: 59s slide infinite linear;
}

.logos-slide img {
  width: 380px;
  height: 330px;
  margin: 0 8px;

  border-radius: 6px;
}

/**********************************/
/*      MINI ABOUT       */
/**********************************/
.VK {
  margin: 70px 0;
  padding: 40px 0;
  width: 100%;
  background-image: linear-gradient(120deg, #252f16 0%, #12170a  100%);
}

.VK-cont h3 {
  font-size: 60px;
      font-family: "Bricolage Grotesque", sans-serif;

  color: #ffffff;
  max-width: 65%;
  line-height: 1.1;
}

.VK-cont h3 span {
  color: #dee8d1b2;
  font-size: 45px;
  font-weight: 500;
}

.mg {
  padding: 40px 0;
}

.cont-mg {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mg-img img {
  width: 100%;
  max-width: 80px;
  height: 80px;
  border-radius: 50%;
}

.flw-text h5 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}

.flw-text p {
  font-size: 14px;
  max-width: 60%;
  margin-top: 10px;
  color: #ffffffba;
}

/* 🔽 RESPONSIV – mobil / små skjermer */
@media (max-width: 600px) {
  .cont-mg {
    flex-direction: column;
    align-items: flex-start;
  }

  .mg-img img {
    max-width: 70px;
    height: 70px;
  }

  .flw-text h5 {
    font-size: 18px;
  }

  .flw-text p {
    max-width: 100%;
    font-size: 13px;
  }
}

.flex-VK {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 50px 0;
}
.r-par {
  max-width: 44%;
  margin-top: 12px;
}

.r-par p {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.9;
}


.bg-light {
  display: inline-block;
  padding: 12px 22px;
  color: #fff;
  border: solid #fff 0.5px;
  margin-top: 33px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
}

.bg-light i {
  margin-left: 10px;
  color: #fff;
}

.st h2 {
  font-size: 30px;
  padding: 20px 0;
  color: #18220c;
}

/* SM JS*/
.fade-in-large.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s; /* Forsinkelse for store tekster */
}

.fade-in-small.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s; /* Lengre forsinkelse for små tekster */
}

.mini-about {
  padding: 130px 0;
}

.mini-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 10px;
  align-items: center;
  overflow: hidden;
}

/* Bilde/video-blokken */
.img-mini video {
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.row-mini {
  width: 100%;
  padding: 50px;
}

.wrp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
  padding: 20px;
}

.ins-mini {
  width: 100%;
}

.ins-mini img {
  width: 100%;
  max-width: 22%;
  background-color: #0c2803d5;
  padding: 6px;
  border-radius: 50%;
}

.ins-mini h4 {
  padding: 15px 0;
  font-size: 26px;
  color: #273a10;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
}

.ins-mini p {
  font-size: 18px;
  color: #141f05;
  max-width: 80%;
}

/* RESPONSIVITET */
@media (max-width: 992px) {
  .mini-content {
    grid-template-columns: 1fr;
  }

  .img-mini video {
    border-radius: 10px 10px 0 0;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .row-mini {
    padding: 20px;
  }

  .wrp {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    padding: 10px;
  }
}

/*MT*/
.MT {
  background-color: #1f3700b2;
  padding: 40px 0;
  overflow: hidden;
}

.MT-scroll {
  display: flex;
  width: max-content;
  animation: scroll-left 50s linear infinite;
}

.MT-cont {
  display: flex;
  gap: 60px;
}

.MT-cont h3 {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  white-space: nowrap;
}

.MT-cont i {
  margin-right: 6px;
}

/* Smooth, infinite left scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.MT-scroll:hover {
  animation-play-state: paused;
}

/*JSE*/
.lazy-load {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lazy-load.visible {
  opacity: 1;
  transform: translateY(0);
}

/*Tesii*/
.testimonials {
  padding: 70px 0;
  padding-bottom: 90px;
}

.testimonials h3 {
  font-size: 40px;
  color: #1f3700;
  padding-top: 50px;
  padding-bottom: 25px;
  max-width: 25%;
}

.testimonials span {
  font-size: 30px;
  color: #1d2f10af;
}

.testimonials-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}

.flx-testi {
  background-color: #3650151d;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 60px 20px;
}

.flx-testi p {
  font-size: 18px;
  line-height: 1.6;
}

.colm-inh {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}

.flx-inh {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flx-inh img {
  width: 100%;
  border-radius: 50%;
  max-width: 60px;
  height: 60px;
  object-fit: fill;
}

.nm-flex h5 {
  font-size: 20px;
  font-weight: 600;
  color: #273a10;
}

.nm-flex p {
  color: #1f3700;
  font-size: 12px;
  width: 100%;
}

/**********************************/
/*      FAQ    */
/**********************************/
.faqs {
  padding: 60px 0;
}

.cont-faqs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 70px 0;
}

.img-faq img {
  width: 100%;
  border-radius: 6px;
  height: 100%;
  object-fit: cover;
}

#faq {
  margin: auto;
  padding: 0 15px;
  text-align: center;
}

section.faq {
  padding-top: 2em;
  padding-bottom: 3em;
}

#faq ul {
  text-align: center;
}
.transition,
p,
ul li i:before,
ul li i:after {
  transition: all 0.3s;
    font-family: "Bricolage Grotesque", sans-serif;

}

#faq .no-select,
#faq h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
    font-family: "Bricolage Grotesque", sans-serif;

}

#faq h1 {
  color: #000;
  margin-bottom: 30px;
  margin-top: 0;
    font-family: "Bricolage Grotesque", sans-serif;

}

#faq h2 {
  color: #266021;
  font-size: 20px;
  line-height: 34px;
  text-align: left;
  padding: 15px 15px 0;
  text-transform: none;
    font-family: "Bricolage Grotesque", sans-serif;

  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
  transition: 0.2s;
}

#faq p {
  color: #333;
  text-align: left;
  font-size: 16px;
  line-height: 1.45;
  position: relative;
  overflow: hidden;
  max-height: 250px;
  will-change: max-height;
  contain: layout;
  display: inline-block;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 0 50px 0 15px;
  transition: 0.3s opacity, 0.6s max-height;
  hyphens: auto;
  z-index: 2;
}

#faq ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
#faq ul li {
  position: relative;
  overflow: hidden;
  /*padding-bottom: 4px;*/
  /*padding-top: 18px;*/
  background-color: #3650150c;
  -webkit-tap-highlight-color: transparent;
}
#faq ul li + li {
  margin-top: 25px;
}
#faq ul li:last-of-type {
  padding-bottom: 0;
}
#faq ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 28px;
  right: 15px;
}
#faq ul li i:before,
ul li i:after {
  content: "";
  position: absolute;
  background-color: #1f3700;
  width: 4px;
  height: 10px;
}
#faq ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
#faq ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
#faq ul li input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  touch-action: manipulation;
}
#faq ul li input[type="checkbox"]:checked ~ h2 {
  color: #000;
}
#faq ul li input[type="checkbox"]:checked ~ p {
  /*margin-top: 0;*/
  max-height: 0;
  transition: 0.3s;
  opacity: 0;
  /*transform: translate(0, 50%);*/
}
#faq ul li input[type="checkbox"]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
#faq ul li input[type="checkbox"]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

/**********************************/
/*      THE SERVICE       */
/**********************************/
.SB {
  padding: 90px 0;
}

.SB-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}

.SB-content img {
  width: 100%;
  border-radius: 5px;
  object-fit: fill;
}

.SB-text {
  padding: 50px;
}

.SB-text h1 {
  font-size: 38px;
  font-family: "inter", sans-serif;
  font-weight: 800;
  max-width: 80%;
  color: #300046;
}

.SB-list {
  padding: 40px 0;
}

.SB-list i {
  font-size: 22px;
  margin-right: 10px;
  color: #407400;
}

.SB-list li {
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "inter", sans-serif;
  font-weight: 500;
  color: #300046;
}

.SB-text p {
  padding-top: 20px;
  font-size: 18px;
  color: #36014f;
  max-width: 80%;
}
.btn-bh {
  font-size: 20px;
  color: #480169;
  text-decoration: underline;
}

/*SERVICES*/

.serv {
  display: flex;
  margin-top: 90px;
  justify-content: flex-end;
  flex-direction: column;
  align-items: end;
  padding: 70px 0;
  background: radial-gradient(circle at center, #314616e5, #17200b 90%),
    url("../img/bg-gr.jpeg") no-repeat center center / cover;
}

.serv-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.flow-serv {
  padding: 20px;
}

.hl h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  max-width: 90%;
  font-family: "inter", sans-serif;
}

.hl {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.flow-serv p {
  font-size: 18px;
  color: #ffffff;
  padding-top: 20px;
  line-height: 1.6;
}

.hl i {
  border-radius: 50%;
  background-color: #278421;
  padding: 10px 17px;
  font-size: 20px;
  color: #fff;
  margin-right: 10px;
}

.aktuelt-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 30px auto;
  padding: 20px;
}

.aktuelt-card {
  background: #f8fff4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.aktuelt-card:hover {
  transform: translateY(-5px);
}

.aktuelt-image {
  position: relative;
}

.aktuelt-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0058156b;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.aktuelt-content {
  padding: 20px;
}

.aktuelt-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.aktuelt-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.4;
}

/**********************************/
/*      FOOTER      */
/**********************************/

.footer {
  padding: 40px 0;
  background-color: #041a01;
}

.cnt-footer {
  display: flex;
  justify-content: space-between;
  border-bottom: solid #ffffff69 0.4px;
}

.lists {
  display: flex;
  justify-content: center;
  margin-left: 40px;
}

.lft-list {
  padding: 20px 0;
}
.lists ul {
  margin: 40px;
}

.lists ul li {
  margin-bottom: 40px;
}

.lists ul li a {
  color: #fff;
  font-size: 18px;
}

.lgo h2 {
  color: #fff;
  font-size: 30px;
  padding-bottom: 10px;
}
.social-icons {
  padding-top: 10px;
  padding-bottom: 30px;
}

.social-icons i {
  font-size: 24px;
  margin-right: 27px;
  color: #ffffffee;
}

.u-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}

.u-footer p {
  color: #fff;
}

.add h4 {
  font-size: 19px;
  color: #fff;
  font-weight: 400;
  padding-top: 10px;
  margin: 20px 0;
}

.pvern p {
  text-decoration: underline;
}

.add i {
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
}

/**********************************/
/*       ALLE BEHANDLINGER      */
/**********************************/

:root {
  --bg: #0d222f00;
  --card: #000000de;
  --text: #ffffff;
  --muted: #324146;
  --pill: #f2f5f7;
  --btn: rgba(3, 41, 62, 0.069);
  --btn-bd: rgba(1, 28, 34, 0.855);
}

.g-pad {
  margin: 120px 0;
}

.thep {
  padding: 30px 0;
}

.bg-som {
  background-color: #f0ece2;
}

.blog-strip {
  padding: 60px 0;
  padding-top: 120px;
  color: #000000;
  margin-bottom: 100px;
}

.blog-head {
  max-width: 1360px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  position: relative;
}
.blog-head h1 {
  font-size: 40px;
  font-weight: 600;
         font-family: "Bricolage Grotesque", sans-serif;
         color: #051f0d;

}
.blog-all {
  color: #000000;
  text-decoration: none;
  opacity: 0.9;
}
.blog-all:hover {
  opacity: 1;
}

.blog-nav {
  display: flex;
  gap: 10px;
}
.blog-btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #051f0d;
  border: 1.5px solid var(--btn-bd);
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s ease;
  backdrop-filter: blur(8px);
}

.blog-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Scroller */
.blog-scroller {
  max-width: 1390px;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(290px, 42%, 620px); /* responsiv kortbredde */
  gap: 20px;
    scrollbar-width: none; /* Firefox */

  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.blog-scroller::-webkit-scrollbar {
  height: 8px;
}
.blog-scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

/* Kort */
.blog-card {
  scroll-snap-align: start;
  background: #26602127;

  color: var(--text);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pill {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 500;
  color: #000000;
  background: transparent;
  border: 0.5px solid #210808;
  padding: 5px 14px;

  border-radius: 9px;
}
.blog-card h3 {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.25;
  margin-top: 20px;
        font-family: "Bricolage Grotesque", sans-serif;

  color: #000000;
  font-weight: 500;
}
.media {
  position: relative;
  overflow: hidden;
}
.media img {
  width: 100%;
  height: 290px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}
.go {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #26602127;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: 0.2s ease;
}
.go:hover {
  transform: translateY(-2px);
  background-color: #00a410;
}


.blog-strip {
  padding: 60px 0;
  padding-top: 120px;
  color: #000000;
  margin-bottom: 100px;
}

/* Tittel + lenke + piler (desktop/default) */
.blog-head {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 8px;
  position: relative;
}

.blog-head h1 {
  font-size: 40px;
  font-weight: 700;
  font-family: "Bricolage Grotesque", sans-serif;
  margin: 0;
}

.blog-all {
  color: #000000;
  text-decoration: none;
  opacity: 0.9;
  font-weight: 500;
  white-space: nowrap;
}

.blog-all:hover {
  opacity: 1;
}

.blog-nav {
  display: flex;
  gap: 10px;
}

.blog-btn {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0d2f17;
  border: 1.5px solid var(--btn-bd);
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s ease;
  backdrop-filter: blur(8px);
}

.blog-btn:hover {
  transform: translateY(-1px);
  background: #0e3018;
}

.blog-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==============================
   SCROLLER / KORT
   ============================== */

.blog-scroller {
  max-width: 1390px;
  margin: 24px auto 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 32%, 420px);
  gap: 20px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.blog-scroller::-webkit-scrollbar {
  height: 8px;
}

.blog-scroller::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}


.blog-card h3 {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.25;
  margin-top: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #000000;
  max-width: 80%;
  padding-bottom: 20px;
  font-weight: 500;
}

.media {
  position: relative;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 270px;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}

.go {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00825d;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  transition: 0.2s ease;
}

.hold {
  padding: 20px 10px;
}

.hold h3 {
  padding: 20px 0;
}


.go:hover {
  transform: translateY(-2px);
  background-color: #00a410;
}

/* ===========================
   RESPONSIVE – NETTBRETT
   =========================== */

@media (max-width: 1024px) {
  .blog-strip {
    padding-top: 96px;
    margin-bottom: 80px;
  }

  .blog-head h1 {
    font-size: 34px;
  }

  .blog-scroller {
    grid-auto-columns: minmax(260px, 40vw);
  }

  .media img {
    height: 240px;
  }
}

/* ===========================
   RESPONSIVE – MOBIL / SMÅ NETTBRETT
   =========================== */

@media (max-width: 768px) {
  .blog-strip {
    padding-top: 80px;
    margin-bottom: 60px;
  }

  /* 2 rader:
     rad 1: tittel full bredde
     rad 2: "Se alle tjenester" + piler ved siden av hverandre  */
  .blog-head {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    align-items: center;
  }

  .blog-head h1 {
    font-size: 30px;
    grid-column: 1 / -1; /* tittel får hele første rad */
  }

  .blog-all {
    font-size: 0.95rem;
  }

  .blog-nav {
    justify-self: flex-start;
    display: flex;
    gap: 8px;
  }

  .blog-scroller {
    grid-auto-columns: minmax(300px, 76vw);
    gap: 16px;
    margin-top: 20px;
  }

  .media img {
    height: 220px;
  }
}

/* ===========================
   RESPONSIVE – SMÅ MOBILER
   =========================== */

@media (max-width: 480px) {
  .blog-strip {
    padding-top: 72px;
    margin-bottom: 48px;
  }

  .blog-head h1 {
    font-size: 26px;
  }

  .blog-all {
    display: inline-block;
    margin-top: 4px;
  }

  .blog-nav {
    margin-top: 4px;
  }

  .blog-scroller {
    grid-auto-columns: minmax(260px, 85vw);
    gap: 14px;
  }

  .blog-card {
    padding: 12px 12px 16px;
  }

  .media img {
    height: 200px;
  }

  .blog-card h3 {
    font-size: 16px;
  }
}


.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
}

.img-model img {
  width: 100%;
  max-width: 80%;
  margin-bottom: 30px;
  border-radius: 20px;
}







.beh-flex {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 10px 10px;
      background-color: #d4ddc14d;

}

.beh-flex.visible {
  opacity: 1;
  transform: translateY(0);
}

.all-beh {
  padding: 30px 0 60px 0;
}

.cont-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  row-gap: 40px;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #4a8200;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bg-hl {
  padding: 20px;
  height: 100%;
  background-color: #3650151d;
  border-radius: 0 0 10px 10px;
}

.bg-hl h3 {
  font-size: 26px;
  font-weight: 700;
  color: #18220c;
  padding-bottom: 15px;
}

.bg-hl h5 {
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 600;
  background-color: #ffffffc4;
  border-radius: 5px;
  color: #293e11;
  padding: 5px 17px;
  width: 190px;
  text-align: center;
}

.bg-hl h6 {
  font-size: 16px;
  margin: 10px 0 20px 0;
}

.bg-hl i {
  font-size: 16px;
  color: #3a6700;
  margin-right: 10px;
}

.bt {
  margin: 40px 10px;
}

.bg-hl a {
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  border-bottom: solid #222 0.7px;
  color: #000;
  background-color: transparent;
  text-decoration: none;
}

.bestill-her {
  margin: 20px 0;
  background-color: #092e03;
  max-width: 48%;
  padding: 14px 30px;
  border-radius: 9px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.bestill-her:hover {
  opacity: 0.9;
}

.bestill-her a {
  color: #fff;
}


@media (max-width: 768px) {
  .cont-all {
    grid-template-columns: 1fr;
  }

  .bestill-her {
  max-width: 50%;
}
}



a.mg-top:hover {
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  overflow-y: auto;
  padding: 40px 20px;
}

.modal-content {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  margin: 60px auto; /* Dette er viktig: gir mellomrom på toppen */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.4s ease;
  line-height: 1.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #999;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #333;
}

.modal-content h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
  font-weight: 600;
}

.modal-content h3 {
  font-size: 24px;
  margin: 40px 0 20px 0;
  color: #333;
  font-weight: 600;
}

.modal-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.modal-content ul {
  list-style: disc inside;
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  padding-left: 0;
}

.modal-content li {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
  }
  .modal-content h2 {
    font-size: 26px;
  }
  .modal-content h3 {
    font-size: 20px;
  }
  .modal-content p,
  .modal-content ul {
    font-size: 16px;
  }
}

/**********************************/
/*      OM MEG      */
/**********************************/
.ME {
  padding: 50px 0;
}

.me-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.img-me img {
  width: 100%;
  border-radius: 50%;
  transform: scale(0.8);
  object-fit: cover;
}

.me-text {
  padding-top: 40px;
}

.me-text h3 {
  font-size: 50px;
  padding: 10px 0;
}

.me-text h5 {
  font-size: 20px;
  color: #384f1ddf;
}

.me-text p {
  font-size: 18px;
  line-height: 1.4;
  color: #1d2f10;
  margin: 20px 0;
}

.kont-info {
  padding-top: 20px;
}

.flx-kont a {
  margin-right: 20px;
  color: #1f3700;
  border: solid #1f3700 2px;
  padding: 10px 25px;
  display: inline-block;
  font-size: 18px;
  border-radius: 20px;
}

.beh-txt h1 {
  font-size: 50px;
}

.flx-kont i {
  margin-right: 10px;
}

.form-contact {
  padding: 60px 0;
  background: linear-gradient(rgba(0, 30, 4, 0.846), rgba(0, 0, 0, 0.956)),
    url("../img/bhn.png") no-repeat center center/cover;
}

/* GRID-OPPSETT */
.grid-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 40px 0;
}

/* OVERSKRIFT */
.form-info h2 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 500;
  max-width: 80%;
  line-height: 1.4;
  margin-bottom: 40px;
}

.form-info h6 {
  font-size: 18px;
  color: #000;
  margin-top: 20px;
  max-width: 400px;
  padding-bottom: 40px;
  font-weight: 400;
}

.form-info h2 span {
  color: #222;
}

/* FORMDEL */
.form-input {
  width: 100%;
  padding-left: 40px;
}

.form-input span {
  color: #db0000f6;
  font-size: 20px;
}

/* IKONER DEL */
.top-icon {
  padding: 40px 0;
  color: #ffff;
  width: 500px;
}

.top-icon p {
  margin-top: 80px;
  color: #fff;
  letter-spacing: 1;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}

.content-icon {
  display: flex;
  margin-bottom: 30px;
}

.content-icon i {
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  background-color: #27842a;
  padding: 10px;
  border: solid #ffffff73 0.5px;
  border-radius: 50%;
}

.serving h4 {
  margin-top: 6px;
  margin-left: 10px;
  font-size: 20px;
  font-weight: 500;
}

/* SKJEMA ELEMENTER */
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 3px;
  margin-top: 6px;
  margin-bottom: 16px;
  border: none;
  resize: vertical;
  box-sizing: border-box;
}

input[type="file"] {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 16px;
  background: #ffffffdf;
  border-radius: 3px;
  border: none;
  box-sizing: border-box;
}

input[type="submit"] {
  background-color: #27842a;
  color: #fff;
  padding: 12px 30px;
  border: 0;
  border-radius: 5px;
  font-size: 20px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

input[type="submit"]:hover {
  opacity: 0.8;
}

/* LABEL TEKST */
label {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin: 20px 0;
}

/* UNDERTEKST */
.u-txt p {
  color: #fff;
  font-size: 22px;
  max-width: 70%;
}

/**********************************/
/*      MEDIA QUARY       */
/**********************************/
@media (max-width: 1024px) {
  header {
          background-color: #eaefdd;

    backdrop-filter: blur(10px);
  }
  .hamburger {
    display: block;
  }

  .navbar img {
    height: 39px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar {
    min-height: 80px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    gap: 0;
    flex-direction: column;
    width: 100%;
      background-color: #eaefdd;
    backdrop-filter: blur(10px);
    transition: 0.5s;
    justify-content: start;
    align-items: start;
    padding: 10px 40px;
    overflow: hidden;
  }

  .nav-item {
    margin: 20px 0;
    border-bottom: solid 0.4px #445b27;
    width: 100%;
    padding: 10px 0;
  }

  .nav-item:nth-child(5) {
    border: 0;
  }

  .nav-menu.active {
    left: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 0px;
  }

  .hero-txt h1 {
    font-size: 44px;
    max-width: 90%;
  }

  .hero-txt h6 {
    font-size: 18px;
    max-width: 90%;
    padding-top: 30px;
  }

  .btn-kontakt {
    font-size: 16px;
    padding: 16px 24px;
  }

  .btn-floe {
    flex-direction: column;
    gap: 20px;
  }

  .strs p {
    font-size: 28px;
  }

  .p-strs p {
    font-size: 14px;
  }
}

/* Responsivitet for mobil (480px og nedover) */
@media (max-width: 480px) {
  .hero {
    padding-top: 30px;
  }

  .hero-txt h1 {
    font-size: 38px;
  }

  .hero-txt h6 {
    font-size: 16px;
    padding-top: 20px;
  }

  .btn-kontakt {
    font-size: 16px;
    padding: 14px 20px;
  }

  .btn-floe {
    gap: 16px;
  }

  .p-strs {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .logos {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }

  .logos-slide img {
    width: 300px;

    max-height: 230px;
    margin: 0 8px;
  }

  .logos:before,
  .logos:after {
    width: 50px;
  }
}

/* Små skjermer (mobil) */
@media (max-width: 480px) {
  .logos-slide img {
    width: 190px;
    max-height: 160px;
    margin: 0 6px;
  }

  .logos:before,
  .logos:after {
    width: 30px;
  }
}

@media (max-width: 768px) {
  .VK {
    padding-top: 20px;
  }

  .flex-VK {
    flex-direction: column;
    align-items: flex-start;
  }

  .VK-cont h3 {
    font-size: 40px;
    max-width: 70%;
  }

  .VK-cont h3 span {
    font-size: 28px;
  }

  .r-par {
    max-width: 100%;
  }

  .r-par p {
    font-size: 18px;
    padding-top: 20px;
  }

  .bg-light {
    font-size: 16px;
    padding: 10px 18px;
  }
}

/* Mobil */
@media (max-width: 480px) {
  .VK {
    padding: 40px 10px;
  }

  .VK-cont h3 {
    font-size: 30px;
  }

  .VK-cont h3 span {
    font-size: 22px;
  }

  .r-par p {
    font-size: 16px;
  }

  .bg-light {
    font-size: 15px;
    padding: 10px 16px;
  }
}

@media (max-width: 1024px) {
  .mini-content {
    grid-template-columns: 1fr; /* Gjør layouten én-kolonne */
    gap: 40px;
    text-align: center;
  }

  .img-mini {
    display: flex;
    justify-content: center;
  }

  .row-mini {
    order: 2;
  }

  .ins-mini {
    margin: 10px;
  }

  .img-mini img {
    height: 70dvh;
    max-width: 100%;
    order: 1;
  }

  .wrp {
    grid-template-columns: 1fr 1fr; /* Beholder to kolonner for tekst */
    gap: 40px;
  }

  .ins-mini p {
    max-width: 100%;
  }
}

/* 📱 Mobil */
@media (max-width: 768px) {
  .mini-about {
    padding: 40px 0;
  }

  .mini-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wrp {
    grid-template-columns: repeat(2, 1fr); /* Endrer til én-kolonne */
    text-align: center;
    gap: 20px;
  }

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

  .ins-mini img {
    width: 100%;
    height: 50px;
  }

  .ins-mini h4 {
    font-size: 18px;
  }

  .ins-mini p {
    font-size: 15px;
  }

  .img-mini img {
    height: 60dvh;
  }
}

@media (max-width: 1024px) {
  .testimonials-content {
    grid-template-columns: 1fr;
  }

  .testimonials h3 {
    font-size: 36px;
    max-width: 100%;
  }

  .testimonials span {
    font-size: 24px;
    display: block;
  }

  .colm-inh {
    padding: 0;
  }

  .flx-testi {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .flx-testi p {
    font-size: 16px;
  }

  .nm-flex h5 {
    font-size: 17px;
  }

  .flx-inh img {
    max-width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .testimonials h3 {
    font-size: 30px;
  }

  .testimonials span {
    font-size: 20px;
  }

  .flx-testi {
    padding: 20px;
  }

  .flx-testi p {
    font-size: 15px;
  }

  .nm-flex h5 {
    font-size: 16px;
  }

  .flx-inh img {
    max-width: 45px;
    height: 45px;
  }
}

@media (max-width: 1024px) {
  .serv-cont {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .hl h3 {
    font-size: 20px;
  }

  .flow-serv p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .serv-cont {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hl {
    flex-direction: row;
    align-items: flex-start;
  }

  .hl h3 {
    font-size: 19px;
    max-width: 100%;
  }

  .flow-serv {
    padding: 15px;
  }

  .flow-serv p {
    font-size: 15px;
    padding-top: 15px;
  }

  .hl i {
    padding: 8px 13px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .accordion {
    padding: 0 16px;
  }
  .accordion h1 {
    font-size: 19px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .SB-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .s-img {
    order: 2;
  }

  .SB {
    padding: 0;
    padding-bottom: 30px;
  }

  .SB-content {
    padding: 20px 0;
    padding-top: 30px;
  }

  .SB-text {
    padding: 0;
    order: 1;
  }

  .SB-text h1 {
    font-size: 32px;
  }

  .sm-text h1 {
    font-size: 28px;
  }

  .cnt-footer {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0;
    align-items: start;
    justify-content: start;
  }

  .lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding-top: 40px;
    align-items: start;
    margin-left: -30px;
  }

  .lists ul li {
    padding: 0;
  }

  .all-beh {
    padding: 0;
  }

  .cont-all {
    display: grid;
    grid-template-columns: 1fr;
  }

  .u-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .pvern {
    order: 1;
    padding-top: 20px;
  }

  .cr {
    order: 2;
    padding-top: 15px;
  }

  .serv-cont {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .legal-links a,
  .languages a {
    display: inline-block;
    margin: 5px 10px 0 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cont-faqs {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .img-faq img {
    display: none;
  }

  .faqs {
    padding: 10px 0;
  }

  #faq h1 {
    text-align: center;
    font-size: 22px;
  }

  #faq h2 {
    font-size: 16px;
    max-width: 80%;
    line-height: 1.3;
    font-weight: 500;
    color: #243f01;
  }

  #faq p {
    font-size: 16px;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .me-cont {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 0;
  }

  .me-text {
    padding-top: 0;
    order: 2;
  }

  .me-text h3 {
    font-size: 36px;
  }

  .me-text h5 {
    font-size: 18px;
  }

  .me-text p {
    font-size: 17px;
    line-height: 1.5;
  }

  .kont-info {
    padding-top: 30px;
    display: flex;
    width: 100%;
  }

  .flx-kont {
    display: flex;
    gap: 15px;
  }

  .flx-kont a {
    margin: 0;
    padding: 12px 24px;
    font-size: 14px;
    width: fit-content;
  }

  .img-me img {
    max-width: 100%;
    height: auto;
    order: 1;
  }
}

/* Nettbrett (mellomstore skjermer) */
@media (min-width: 768px) and (max-width: 1023px) {
  .me-cont {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .me-text {
    padding-top: 0;
  }

  .flx-kont {
    justify-content: center;
  }
}

/* Desktop større skjermer */
@media (min-width: 1024px) {
  .me-cont {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .me-text {
    padding-top: 40px;
  }

  .flx-kont {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 992px) {
  .grid-form {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 60px;
  }

  .form-contact {
    padding: 40px 10px;
  }

  .form-info h2 {
    font-size: 38px;
    max-width: 100%;
  }

  .top-icon {
    width: 100%;
    display: grid;
  }

  .content-icon {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .content-icon i {
    margin-bottom: 10px;
  }

  .serving h4 {
    margin: 0;
    font-size: 18px;
  }

  .form-input {
    padding-left: 0;
  }

  .form-input input[type="submit"] {
    width: 100%;
  }

  .u-txt p {
    max-width: 100%;
    font-size: 18px;
  }
}

/*
  .hero-content img {
    height: 100%;
    width: 100%;
    mask-image: radial-gradient(circle, #00000000, transparent 90%);
    -webkit-mask-image: radial-gradient(circle, #000000, transparent 90%);
  }
    */
