/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
.hero-split-section {
  background: #f7f9fb;
}


a.btn-red,
.btn-red {
  border: none;
  background: #ae080e;
  color: #fff;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  padding: 14px 25px 14px 25px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

a.btn-silver,
.btn-silver {
  border: none;
  background: #67645e;
  color: #fff;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  padding: 14px 25px 14px 25px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-split-row {
  min-height: 660px;
  overflow: hidden;
  align-items: stretch;
}

.hero-text-col {
  background: #283c4b;
  min-height: 660px;
}

@media (max-width: 991.98px) {

  .hero-split-row,
  .hero-text-col {
    min-height: 170px;
  }

  .hero-text-wrap {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.hero-text-wrap {
  width: 100%;
  max-width: 920px;
  padding-left: clamp(24px, 4vw, 80px);
  padding-right: clamp(24px, 4vw, 80px);
  padding-top: 60px;
  padding-bottom: 30px;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
  min-height: 660px;
}

.hero-carousel .carousel-item {
  overflow: hidden;
}

.hero-carousel-image {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 1400px) {
  .hero-split-row {
    min-height: 760px;
  }

  .hero-text-col,
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-carousel-image {
    min-height: 760px;
  }

  .hero-text-wrap {
    max-width: 1080px;
    padding-top: 130px;
    padding-bottom: 80px;
    padding-left: clamp(40px, 5vw, 110px);
    padding-right: clamp(40px, 5vw, 110px);
  }

  .hero-text-wrap .title h2 {
    font-size: clamp(3.25rem, 3vw, 4.4rem);
    line-height: 1.08;
  }

  .hero-text-wrap .lead {
    font-size: clamp(1.25rem, 1.15vw, 1.55rem);
    line-height: 1.7;
  }

  .hero-text-wrap p {
    font-size: clamp(1.05rem, 0.95vw, 1.2rem);
    line-height: 1.85;
  }
}

@media (min-width: 1800px) {
  .hero-split-row {
    min-height: 860px;
  }

  .hero-text-col,
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-carousel-image {
    min-height: 860px;
  }

  .hero-text-wrap {
    max-width: 1200px;
    padding-top: 150px;
    padding-bottom: 90px;
    padding-left: clamp(56px, 6vw, 140px);
    padding-right: clamp(56px, 6vw, 140px);
  }

  .hero-text-wrap .title h2 {
    font-size: clamp(3.8rem, 3.4vw, 5.2rem);
  }

  .hero-text-wrap .lead {
    font-size: clamp(1.35rem, 1.2vw, 1.7rem);
  }

  .hero-text-wrap p {
    font-size: clamp(1.08rem, 1vw, 1.24rem);
  }
}

.faq-list {

  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}

.faq-item details {
  background: #fff;
  border-radius: 12px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-title {
  font-size: 150%;
  margin: 0;
  line-height: 1.2;
}

.faq-chevron {
  opacity: .6;
  font-size: 85%;
}

details[open] .faq-chevron {
  transform: rotate(180deg);
  display: inline-block;
}

.faq-preview {
  padding: 0 20px 18px 20px;
  opacity: .95;
  font-size: 120%;
}

.faq-actions {
  padding: 0 20px 20px 20px;
}

.borderline {
  border: 1px solid;
  border-color: #999;
}

.service-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #32495a;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card>* {
    position: relative;
    z-index: 1;
  }

  .service-card .btn_1,
  .service-card i,
  .service-card h4 {
    transition: transform 0.35s ease, color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .service-card:hover i {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    display: inline-block;
    animation: serviceIconFlip 0.25s ease-in-out 1;
    transform-origin: center center;
    will-change: transform;
    backface-visibility: visible;
  }

  @keyframes serviceIconFlip {
    0% {
      transform: perspective(700px) rotateY(0deg) scale(1);
    }

    50% {
      transform: perspective(700px) rotateY(180deg) scale(1.04);
    }

    100% {
      transform: perspective(700px) rotateY(360deg) scale(1);
    }
  }

  .service-card:hover h4 {
    transform: translateY(-2px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  }

  .service-card:hover .btn_1:first-child {
    background: #7f6d52 !important;
    border-color: #fff !important;
    box-shadow: inset 0 0 0 1px #7f6d52;
    color: #fff !important;
  }

  .service-card.test-white-btn:hover .btn_1:first-child {
    background: #fff !important;
    border-color: #fff !important;
    box-shadow: none;
    color: #283c4b !important;
  }

  .service-card.test-white-btn:hover i {
    color: #978667;
  }

  .service-card:hover .btn_1:last-child {
    background: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
  }

  @media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-card::before,
    .service-card .btn_1,
    .service-card i,
    .service-card h4 {
      transition: none;
    }

    .service-card:hover {
      transform: none;
    }

    .service-card:hover i,
    .service-card:hover h4 {
      transform: none;
      animation: none;
    }
  }

  .blackmenu ul li a {
    color: #333 !important;
  }

  .blackmenu .hamburger_2 .hamburger__inner,
  .blackmenu .hamburger_2 .hamburger__inner::before,
  .blackmenu .hamburger_2 .hamburger__inner::after {
    background-color: #333 !important;
  }

  .box_cat_rooms figure {
    position: relative;
  }

  .box_cat_rooms .badgepreview {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    max-width: 90px;
    height: auto;
  }

  .klarna {
    max-width: 110px !important;
    height: auto;
  }

  .miljofyr {
    max-width: 100px;
    height: auto;
  }

  .custom-img-wrapper {
    position: relative !important;
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: -30px !important;

  }

  .list-group-item:first-child {
    border-radius: 20px;
  }

  .list-group-item {
    border-radius: 20px;
  }

  .list-group-item:last-child {
    border-radius: 20px;
  }

  .nbf {
    max-width: 130px;
  }


  .padding-btm {
    padding-bottom: 20px;
  }

  .margintop50 {
    margin-top: -30px !important;
    max-width: 80px;
    height: 80px !important;
  }

  .white {
    color: #ffffff !important;
  }

  body {
    font-size: 17px !important;
    line-height: 1.6;
  }

  .skinnibitch {
    font-weight: 400 !important;
  }

  .red {
    color: #db1a21 !important;
  }

  .ansatt {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 20px;
  }

  .ansattdl {
    border-radius: 50%;
    width: 135px;
    height: 135px;
    object-fit: cover;
    margin-right: 20px;
  }

  figure {
    position: relative;
  }

  .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: url('https://norgesdesign.docly.cloud/kepler/img/badges/god_medal.png') no-repeat center center;
    background-size: contain;
    z-index: 999999999999999999 !important;
  }


  .ndingress {
    font-size: 24px;
    font-weight: 600;
  }

  @media (max-width: 576px) {
    .ndingress {
      font-size: 18px;
    }
  }


  .altueltpreviewsmall {
    font-size: 18px;
    font-weight: 400;
  }

  .box_contentsaktueltpreview {
    padding: 20px;
  }