@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400 (6.4.2)";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ultimapro;
  src: url('../fonts/UltimaProBlack.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ultimapro;
  src: url('../fonts/UltimaPro-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Ultimapro;
  src: url('../fonts/UltimaPro-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Ultimaprolt;
  src: url('../fonts/UltimaProLt-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Ultimapro;
  src: url('../fonts/UltimaPro.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Ultimapro;
  src: url('../fonts/UltimaProBlack-BlackItalic.otf') format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Ultimaprolt;
  src: url('../fonts/UltimaProLt.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-dark: #0e0e0e;
  --primary: #1a1f61;
  --paragraph-gray: #a7aaad;
  --primary-20: #1a1f6117;
  --white: white;
  --light-gray: #f9f9fa;
  --dark-gray: #afafaf;
  --dark-gray-50: #afafaf80;
  --primary-light: #fff9e4;
  --border-radius: 7px;
  --grå-profil: #979795;
  --black: black;
  --white-50: #ffffff80;
  --gray: #e9e9e9;
  --primary-50: #1a1f61b3;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--primary-dark);
  font-family: Ultimaprolt, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2em;
}

h1 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Ultimaprolt, sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.1em;
}

h2 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Ultimaprolt, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1em;
}

h3 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Ultimaprolt, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1em;
}

h4 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Ultimaprolt, sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.1em;
}

h5 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1em;
}

h6 {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Ultimaprolt, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1em;
}

p {
  color: var(--paragraph-gray);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.4em;
}

a {
  color: var(--primary);
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .3s;
}

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

ul {
  grid-row-gap: 15px;
  background-color: var(--paragraph-gray);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  display: flex;
}

li {
  align-items: center;
  font-size: 20px;
  line-height: 1.4em;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 10px;
  display: block;
}

strong {
  color: var(--primary);
  font-weight: 700;
}

blockquote {
  text-align: left;
  background-image: url('../images/quote.svg');
  background-position: 20px 0;
  background-repeat: no-repeat;
  background-size: 45px;
  border-left: .5px solid #000;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 55px 20px 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

figure {
  margin-bottom: 10px;
}

.section {
  padding-top: 100px;
  padding-bottom: 8em;
  position: relative;
}

.section.banner-testimonials {
  background-image: linear-gradient(180deg, var(--primary-20), white);
  flex-direction: column;
  align-items: center;
  padding-top: 9em;
  padding-bottom: 0;
  display: flex;
}

.section.without-top-spacing {
  padding-top: 0;
}

.section.banner-home {
  background-color: var(--white);
  padding-top: 170px;
  padding-bottom: 0;
  overflow: hidden;
}

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

.section.gray-bg-without-bottom-padding {
  background-color: var(--light-gray);
  padding-bottom: 0;
}

.section.cta-section {
  overflow: hidden;
}

.section.without-top-spacing-overflow {
  padding-top: 0;
  overflow: hidden;
}

.section.services-banner {
  background-image: linear-gradient(180deg, var(--primary-20), white);
  padding-top: 220px;
  padding-bottom: 120px;
}

.section.top-small-spacing {
  padding-top: 50px;
}

.section.banner-services-2 {
  padding-top: 170px;
  padding-bottom: 0;
  overflow: hidden;
}

.section.services-banner-copy {
  background-image: linear-gradient(#1a1f610a 60%, #fff);
  padding-top: 170px;
  padding-bottom: 140px;
}

.section.banner-news {
  padding-top: 170px;
  padding-bottom: 0;
}

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.base-container.align-left {
  align-items: flex-start;
}

.base-container.footer-container {
  max-width: 100%;
}

.base-container.left {
  align-items: flex-start;
}

.base-container.overflow-hidden {
  margin-bottom: 3em;
}

.spacing-system-column {
  padding-right: 20px;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.link-knapp {
  flex-direction: column;
  margin-top: .4em;
  margin-left: 52px;
  margin-right: 52px;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  overflow: hidden;
}

.link-knapp.link-uten-padding {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.link-knapp.link-uten-padding._10px-i-bunn {
  margin-bottom: 6px;
}

.link-knapp.link-uten-padding._1-3em-i-topp {
  margin-top: 1.3em;
}

.navbar {
  z-index: 9999;
  background-color: #ddd0;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 10px;
  position: fixed;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-menu {
  text-align: right;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.nav-link {
  color: var(--primary);
  padding: 20px 20px 10px;
  font-size: .95em;
  font-weight: 400;
}

.nav-link:hover {
  opacity: 1;
  color: var(--dark-gray);
}

.nav-link.w--current {
  color: var(--dark-gray);
  transition: opacity .3s;
}

.nav-link.hide-on-laptop {
  display: none;
}

.nav-dropdown-toggle {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--dark-gray);
  margin-left: 0;
  margin-right: 0;
  padding: 20px 14px;
  display: flex;
}

.licensing-image-link {
  width: 100%;
  height: 100%;
}

.licensing-image-link:hover {
  opacity: 1;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 280px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.password-image {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

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

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

.blog-grid-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
}

.blog-grid-collection-list {
  grid-column-gap: 2em;
  grid-row-gap: 3em;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: grid;
}

.blog-grid-image-link {
  border-radius: 8px;
  min-width: 100%;
  padding-bottom: 0;
  overflow: hidden;
}

.new-image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 350px;
  transition: all .3s;
}

.new-image:hover {
  transform: scale(1.1);
}

.blog-grid-item-date {
  margin-top: 0;
  margin-bottom: 0;
}

.blog-grid-content-wrapper {
  background-color: var(--white);
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.blog-grid-item {
  display: inline-block;
}

.blog-grid-item-title {
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: 700;
}

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

.footer {
  background-color: var(--light-gray);
  text-align: center;
  align-items: flex-start;
}

.footer-bottom-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-copyright {
  color: var(--paragraph-gray);
  font-size: 13px;
  font-weight: 500;
  display: inline;
}

.section-title-wrapper {
  text-align: center;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrapper.left-big-screen {
  text-align: left;
}

.style-guide-button-wrapper {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.paragraph-large {
  font-size: 40px;
  line-height: 1.2em;
}

.paragraph-large.mb-40 {
  color: var(--primary);
  margin-bottom: 40px;
}

.paragraph-large.mt-header-description {
  color: var(--paragraph-gray);
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 30px;
}

.paragraph-large.tilbakemelding {
  color: var(--primary);
  padding-left: 0;
  padding-right: 0;
  font-size: 1.5em;
}

.banner-title-wrapper {
  z-index: 10;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 760px;
  display: flex;
  position: relative;
}

.services-item {
  background-color: var(--light-gray);
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.section-title {
  font-size: 2.4em;
}

.accordion-toggle {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  transition: opacity .25s;
  display: flex;
}

.accordion-toggle:hover {
  opacity: .4;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
  display: flex;
}

.accordion-item {
  background-color: var(--light-gray);
  border-radius: 4px;
  margin-bottom: 30px;
  padding: 20px 30px;
  position: static;
}

.accordion-item.last {
  margin-bottom: 0;
}

.accordion-wrap {
  width: 50%;
}

.accordion-wrap.last-child {
  margin-right: 0;
}

.accordion-list-content {
  margin-top: 10px;
  margin-bottom: 0;
}

.accordion-title {
  font-size: 1.1em;
}

.contacts-wrapper {
  align-items: center;
  width: 100%;
  display: flex;
}

.contacts-content-wrapper {
  width: 50%;
  padding-right: 40px;
}

.contacts-form-wrapper {
  background-color: var(--light-gray);
  border-radius: 0 10px 10px;
  flex-direction: column;
  justify-content: center;
  width: 54%;
  min-height: 470px;
  padding: 50px 40px;
  display: flex;
}

.contacts-divider {
  background-color: var(--dark-gray-50);
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.contacts-detail {
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 4px;
  transition-property: opacity;
  transition-duration: .25s;
  display: flex;
}

.contacts-detail:hover {
  opacity: .4;
}

.contacts-detail.smaller {
  justify-content: flex-start;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0;
  font-size: 1em;
}

.contacts-detail.smaller:hover {
  opacity: .5;
}

.contacts-icon {
  color: var(--primary);
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  margin-top: 0;
  margin-bottom: 1px;
  margin-right: 15px;
  padding: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 24px;
  display: flex;
}

.paragraph-no-margin {
  margin-top: .7em;
  margin-bottom: 0;
  font-size: 1.3em;
}

.paragraph-no-margin.footer {
  font-size: .9em;
}

.hidden {
  display: none;
}

.contacts-2-location-wrapper {
  margin-top: 30px;
}

.contacts-2-location-wrapper.smaller {
  margin-top: 1em;
  margin-bottom: .5em;
}

.footer-link {
  color: var(--primary);
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: .9em;
  transition-property: opacity;
  display: block;
}

.footer-link:hover {
  opacity: .4;
}

.footer-wrapper {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  text-align: left;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 26% auto auto auto;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  width: 100%;
  margin-bottom: 60px;
  display: grid;
}

.footer-brand {
  width: 100%;
  margin-bottom: 10px;
  position: static;
}

.footer-brand.w--current {
  padding-left: 0;
}

.footer-links-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.footer-logo {
  width: 100%;
  height: 100%;
  margin-top: 0;
}

.without-top-spacing {
  padding-top: 0;
}

.search-result-item {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}

.search-result-item:hover {
  text-decoration: underline;
}

.search-result-item.landing-progress-bar-wrapper {
  grid-column-gap: .4em;
  grid-row-gap: .4em;
}

.search-link {
  margin-bottom: 0;
  font-size: 14px;
  transition: all .3s;
  display: inline-block;
}

.search-link:hover {
  opacity: .7;
}

.search-result-wrapper {
  width: 100%;
  margin-top: 40px;
}

.search-section {
  padding-top: 140px;
  padding-bottom: 80px;
}

.service-list-item {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.customer-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  overflow: hidden;
}

.customer-grey-image {
  flex: 1;
  max-width: 75%;
  max-height: 75%;
  transition: all .3s;
}

.customer-grey-image:hover {
  opacity: 1;
}

.customer-grey-image.bigger {
  max-width: 80%;
  max-height: 80%;
}

.slide-3 {
  max-height: 580px;
}

.about-3-tab-link {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.template-empty-state {
  color: var(--primary);
  background-color: #0000;
  padding: 30px;
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.landing-progress-bar-wrapper {
  margin-top: 20px;
}

.landing-feature-item {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.landing-inner-page-item {
  background-color: var(--primary-light);
  text-align: center;
  border-radius: 8px;
  width: 100%;
  padding: 2px;
}

.landing-inner-page-item.home-screen {
  background-color: var(--primary-light);
}

.mb-20 {
  margin-bottom: 20px;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper, .testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

.heading-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
}

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.search {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
}

.search.news {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 590px;
  margin-top: 0;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-wrap {
  justify-content: center;
  align-items: center;
  padding-left: 20%;
  padding-right: 20%;
  display: flex;
}

.rich-text-style {
  text-align: left;
  margin-top: 100px;
}

.rich-text-style h2 {
  margin-top: 25px;
  margin-bottom: 1em;
  font-size: 60px;
}

.rich-text-style h3 {
  margin-top: 25px;
  margin-bottom: 1em;
  font-size: 45px;
}

.rich-text-style h4 {
  margin-top: 25px;
  margin-bottom: 1em;
  font-size: 36px;
}

.rich-text-style h5, .rich-text-style h6 {
  margin-top: 20px;
  margin-bottom: 1em;
}

.rich-text-style li {
  font-size: 18px;
}

.rich-text-style ul {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
}

.rich-text-style img {
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.rich-text-style p {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 18px;
  line-height: 1.55em;
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.home-23-team-item {
  width: 33%;
}

.center-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-tablet {
  display: none;
}

.brand {
  max-width: 285px;
  transition: opacity .25s;
}

.brand:hover {
  opacity: .4;
}

.brand.w--current {
  justify-content: flex-start;
  align-items: center;
}

.success-message {
  color: var(--primary);
  text-align: center;
  background-color: #fff0;
}

.form-contacts {
  width: 100%;
  height: 100%;
}

.form-block-contacts {
  width: 100%;
  margin-bottom: 0;
}

.linjke-under-link {
  background-color: var(--primary);
  height: .5px;
  margin-top: 10px;
  overflow: hidden;
}

.input-big {
  color: var(--paragraph-gray);
  background-color: #fff0;
  border-radius: 50px 0 0 50px;
  height: auto;
  margin-bottom: 0;
  padding: 29px 70px 26px 20px;
  font-size: 20px;
  line-height: 1.2em;
}

.input-big:focus {
  border: 1px solid var(--primary);
}

.input-big::placeholder {
  color: var(--paragraph-gray);
  font-size: 18px;
}

.input-big._1-5-topp {
  border-radius: 50px 0 0 50px;
  margin-top: 1.5em;
}

.input-big._1-5-topp::placeholder {
  font-size: 20px;
  line-height: 1em;
}

.mb-15 {
  margin-bottom: 10px;
  line-height: 25px;
}

.banner-title-wrap {
  z-index: 10;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.banner-title-wrap.title-grid {
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1.5fr .5fr;
  grid-auto-columns: 1fr;
  align-items: end;
  max-width: 100%;
  display: grid;
  position: relative;
}

.banner-title-wrap.vertical-center {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  max-width: 70%;
}

.banner-title-text {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.banner-title-text.about {
  max-width: 670px;
}

.banner-title-text.news {
  z-index: 5;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  max-width: 60%;
  position: relative;
}

.banner-title-text.center-aligment {
  z-index: 5;
  align-items: center;
  position: relative;
}

.banner-image-wrap {
  z-index: 20;
  margin-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.banner-image {
  z-index: 10;
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
  height: 500px;
  position: relative;
}

.banner-home-gradient {
  background-color: var(--primary-20);
  filter: blur(120px);
  border-radius: 1000px;
  width: 600px;
  height: 600px;
  position: absolute;
  inset: auto 0% -11% auto;
}

.images-wrap-half-section {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  min-height: 100%;
  display: flex;
}

.text-content-wrap-half {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.big-arrow {
  width: 50px;
  padding-top: 10px;
}

.content-wrap-grid-2c {
  z-index: 10;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: .5fr 1.5fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.content-wrap-grid-2c.images {
  grid-column-gap: 1.3em;
  grid-row-gap: 1.3em;
  flex: 1;
  grid-template-columns: 1fr 1fr;
  margin-top: 90px;
}

.border-radius {
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
}

.border-radius.hover {
  transition-duration: .3s;
}

.border-radius.hover:hover {
  transform: scale(1.07);
}

.flex-block {
  width: 100%;
  display: flex;
}

.flex-block.space_b {
  z-index: 2;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.flex-block.card-service {
  justify-content: space-between;
  align-items: center;
}

.paragraph-wrapper {
  max-width: 420px;
}

.grid-3c-2r {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.grid-3c-2r.mt-50 {
  grid-column-gap: 1.3em;
  grid-row-gap: 1.3em;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 50px;
}

.services-list-wrap {
  width: 100%;
  height: 100%;
}

.service-item-inner {
  border-radius: var(--border-radius);
  background-color: var(--light-gray);
  color: var(--white);
  height: 100%;
  padding: 35px;
  display: block;
}

.paragraph-dark {
  color: var(--grå-profil);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-dark p {
  font-size: 17px;
}

.service-item-wrap {
  position: relative;
}

.service-heading {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.25em;
}

.grid-3-column {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.approach-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.approach-item-text-block {
  flex-direction: column;
  display: flex;
}

.mt-20 {
  margin-top: 20px;
  display: block;
}

.full-height {
  z-index: 5;
  border-radius: var(--border-radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: sticky;
}

.approach-list-wrap {
  z-index: 5;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.approach-section-gradient {
  background-color: var(--primary-20);
  filter: blur(140px);
  border-radius: 600px;
  width: 450px;
  height: 430px;
  position: absolute;
  inset: auto 0% 25% auto;
}

.content-wrapper-flex {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  width: 100%;
}

.content-wrapper-flex.section-spacing {
  z-index: 10;
  justify-content: space-between;
  margin-top: 100px;
  position: relative;
}

.title-wrapper-small {
  width: 365px;
  min-width: 365px;
}

.numeric {
  color: var(--primary);
  text-align: center;
  font-size: 80px;
  line-height: 1em;
}

.numeric-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.statistic-numbers {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tablet-center {
  line-height: 1.2em;
}

.home-1-slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.home-1-slide {
  height: 100%;
  padding-bottom: 124px;
  position: static;
}

.home-1-slider-arrow {
  background-color: var(--white);
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  transition: background-color .25s;
  display: flex;
  inset: auto 0% 0% auto;
}

.home-1-slider-arrow:hover {
  background-color: var(--primary-20);
}

.home-1-slider-arrow.left {
  margin-right: 84px;
}

.arrow-left {
  aspect-ratio: 3 / 2;
  transform: rotate(-180deg);
}

.author-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding-left: 0;
  display: flex;
  position: absolute;
  inset: auto auto 0 0%;
}

.left {
  text-align: left;
  transform: rotate(0);
}

.section-bottom-line {
  background-color: #a7aaad66;
  width: 100%;
  height: 1px;
  margin-bottom: 80px;
}

.section-bottom-line.top-padding {
  margin-top: 80px;
  margin-bottom: 0;
}

.title-wrap-615 {
  flex-direction: column;
  align-items: flex-start;
  max-width: 615px;
  margin-right: auto;
  display: flex;
}

.blog-post-list {
  z-index: 5;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.blog-post-collection-wrapper {
  width: 100%;
  margin-top: 50px;
}

.blog-post-text {
  margin-top: 15px;
}

.text-wrapper-cta {
  z-index: 10;
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.gradient-cta {
  background-color: var(--primary-20);
  opacity: .9;
  filter: blur(160px);
  border-radius: 600px;
  width: 1000px;
  height: 330px;
  position: absolute;
  top: -40%;
  left: auto;
  right: 50%;
  transform: translate(50%);
}

.gradient-cta.bottom {
  top: -9%;
}

.link-image-wrap {
  border-radius: var(--border-radius);
  width: 100%;
  height: 250px;
  padding-bottom: 0;
  overflow: hidden;
}

.border {
  border-radius: 10px;
}

.mb-25 {
  color: var(--paragraph-gray);
  margin-bottom: 25px;
}

.mb-20 {
  color: var(--primary);
}

.mb-20:hover {
  text-decoration: none;
}

.mb-20.h3 {
  font-size: 24px;
}

.arrow-default {
  width: 27px;
}

.arrow-default.arrow-left {
  height: 24px;
}

.services-collection {
  width: 100%;
}

.services-collection-list {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.services-collection-list.mt-0 {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 0;
}

.service-item-home-2 {
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.h2 {
  padding-bottom: 25px;
  font-size: 30px;
}

.white-bg-wrap {
  border: 1px solid var(--light-gray);
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
}

.heading-wrap {
  align-items: flex-end;
  display: flex;
}

.header-logo {
  width: 100%;
  height: 100%;
}

.footer-logo-link-wrap.tablet-mb-30 {
  flex-flow: column;
  display: flex;
}

.banner-header-description {
  z-index: 50;
  max-width: 650px;
  margin-top: 20px;
  font-size: 30px;
  line-height: 1.2em;
  position: relative;
}

.banner-header-description.mw-750 {
  max-width: 100%;
  margin-top: 0;
  font-size: 27px;
}

.top-right-arrow:hover {
  transform: translate(0);
}

.top-right-arrow.accordion {
  width: 5%;
}

.input {
  color: var(--paragraph-gray);
  background-color: #fff0;
  border-radius: 8px;
  height: 60px;
  margin-bottom: 20px;
  padding: 20px 30px;
  font-family: Ultimaprolt, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

.input:focus {
  border: 1px solid var(--primary);
}

.input::placeholder {
  font-size: 20px;
  line-height: 1.2em;
}

.half {
  object-fit: cover;
  max-width: 50%;
  height: 100%;
}

.half.tablet-100 {
  max-width: none;
}

.half.tablet-100.tjenester {
  margin-top: 1em;
  margin-bottom: 1em;
}

.scroll-item {
  flex: none;
  align-items: flex-end;
  width: 40%;
  padding-right: 40px;
  display: flex;
}

.mb-40 {
  margin-bottom: 40px;
}

.light-yellow-block {
  background-color: var(--primary-20);
  border-radius: 8px;
  padding: 30px;
}

.logo-block {
  border-radius: var(--border-radius);
  background-color: var(--primary-20);
  justify-content: center;
  align-items: center;
  height: 5.5em;
  display: flex;
}

.clients-logo-wrap {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  display: flex;
}

.relative {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  height: 5.5em;
  position: relative;
  overflow: hidden;
}

.relative.full-height {
  height: 100%;
}

.knapp-m-rk {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: none;
  vertical-align: middle;
  border-radius: 50px;
  padding: 26px 47px;
  line-height: 1.2em;
  transition: all .3s;
}

.knapp-m-rk:hover {
  background-color: var(--white);
  opacity: 1;
  color: var(--primary-dark);
}

.knapp-m-rk.mt-button {
  color: var(--white);
  border-style: solid;
  margin-top: 1.5em;
}

.knapp-m-rk.mt-button:hover {
  color: var(--primary);
  background-color: #1a1f6100;
  border-style: solid;
}

.knapp-m-rk.mt-button.s-k {
  border-radius: 0 50px 50px 0;
  padding-top: 29px;
  padding-left: 45px;
  padding-right: 50px;
}

.knapp-m-rk.header {
  padding: 21px 30px 19px;
  font-size: 20px;
  line-height: 1em;
}

.knapp-m-rk.header:hover {
  background-color: #fff9e400;
}

.testimonials-item-card {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--primary-light);
  border-radius: 8px;
  flex-direction: column;
  padding: 30px;
  display: flex;
}

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

.service-image {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 300px;
  transition: all .3s;
}

.service-image:hover {
  transform: scale(1.1);
}

.services-banner-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-radius: 30px 30px 30px 0;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.service-image-wrap-link {
  border-radius: 8px;
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}

.services-services-page {
  margin-bottom: 20px;
  font-size: 30px;
  transition: all .3s;
}

.services-services-page:hover {
  opacity: .8;
  color: var(--primary);
}

.paragraph-large-t_c {
  font-size: 40px;
  line-height: 1.2em;
}

.paragraph-large-t_c.mt-30 {
  color: var(--primary);
  margin-top: 30px;
}

.service-cards-wrapper {
  perspective: 1000px;
  height: 100%;
  position: static;
}

.h1-details {
  font-size: 74px;
}

.h1-details.left {
  font-size: 2.5em;
}

.line-2 {
  background-color: var(--dark-gray-50);
  height: 2px;
  position: relative;
}

.tab-info {
  padding-top: 4em;
  padding-left: 40px;
  padding-right: 40px;
}

.tab-year {
  opacity: .4;
  background-color: #0000;
  flex: 1;
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0;
  font-size: 40px;
  transition: all .2s ease-in-out;
}

.tab-year:hover {
  opacity: 1;
  max-height: 105px;
  font-size: 45px;
}

.tab-year.w--current {
  opacity: 1;
  background-color: #0000;
  font-size: 45px;
}

.history-wrap-tab {
  position: relative;
}

.history-wrap-tab.mt-40 {
  z-index: 10;
  width: 100%;
  margin-top: 40px;
  display: block;
}

.flex-block-2 {
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.tabs-menu-hisory {
  display: flex;
}

.circle {
  z-index: 3;
  background-color: var(--primary);
  border-radius: 20px;
  width: 15px;
  height: 15px;
  position: absolute;
  inset: auto 0% 0% 50%;
  transform: translate(-7px, -3px);
}

.history {
  border: 1px solid #eaeef24d;
}

.info-text {
  grid-row-gap: 20px;
  flex-direction: column;
  align-self: center;
  align-items: flex-start;
  max-width: 1200px;
  display: flex;
}

.story-section-gradient {
  background-color: var(--primary-20);
  filter: blur(140px);
  border-radius: 600px;
  width: 450px;
  height: 430px;
  position: absolute;
  inset: auto 0% 25% auto;
}

.service-details-banner-img {
  z-index: 10;
  float: right;
  object-fit: cover;
  border-radius: 10px;
  width: 500px;
  min-height: 100%;
  position: relative;
}

.link-category {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 9px 20px 7px;
  font-size: 18px;
  transition-property: all;
}

.link-category:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: #1a1f6100;
}

.flex-row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.flex-row.margin-10 {
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.contacts-form-title-center {
  margin-bottom: 40px;
  font-family: Ultimaprolt, sans-serif;
  font-size: 2.1em;
}

.textarea {
  color: var(--paragraph-gray);
  background-color: #fff0;
  border-radius: 8px;
  height: 60px;
  margin-bottom: 20px;
  padding: 20px 30px;
  font-family: Ultimaprolt, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
}

.textarea:focus {
  border: 1px solid var(--primary);
}

.textarea::placeholder {
  font-size: 20px;
  line-height: 1.2em;
}

.error-title {
  font-size: 160px;
}

.logo {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  object-fit: contain;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 0;
}

.new-author-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.new-title {
  font-size: 1.2em;
  transition: all .2s;
}

.new-title:hover {
  text-decoration: underline;
}

.author-name {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 24px;
}

.news-gradient {
  background-color: var(--primary-20);
  filter: blur(140px);
  border-radius: 600px;
  width: 450px;
  height: 430px;
  position: absolute;
  inset: auto 0% 25% auto;
}

.new-photo {
  object-fit: cover;
  border-radius: 8px;
  width: 800px;
  height: 420px;
}

.new-banner-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-radius: 30px 30px 30px 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.post-date {
  text-align: left;
  margin-bottom: 20px;
  transform: rotate(0);
}

.new-detail-heading-wrap {
  max-width: 60%;
}

.lys-knapp {
  background-color: var(--white);
  color: var(--primary-dark);
  text-align: center;
  letter-spacing: .5px;
  border: 1px #000;
  border-radius: 50px;
  align-items: center;
  padding: 26px 47px;
  font-size: 20px;
  line-height: 1.2em;
  transition: all .3s;
  box-shadow: 0 2px 280px 20px #ffdc60cc;
}

.lys-knapp:hover {
  background-color: var(--primary);
  color: var(--primary-dark);
  border-style: none;
}

.lys-knapp.tablet-mt-40 {
  background-color: var(--white);
  box-shadow: 0 2px 200px 50px var(--primary-20);
  font-size: 21px;
}

.lys-knapp.tablet-mt-40.mobil {
  padding-bottom: 24px;
}

.lys-knapp.tablet-mt-40.mobil:hover {
  background-color: var(--primary);
  color: var(--white);
}

.heading {
  color: var(--primary);
  font-size: 78px;
}

.heading.hide {
  display: none;
}

.heading.tjenester {
  margin-bottom: 15px;
  font-size: 2em;
}

._100 {
  font-weight: 100;
}

.lighter {
  color: var(--paragraph-gray);
}

.heading-2 {
  text-align: left;
}

.heading-2.left {
  display: none;
}

.heading-2.left.hide-on-tab {
  display: block;
}

.image-4 {
  transform-style: preserve-3d;
  border-radius: 10px 120px;
  display: inline-block;
}

.heading-3 {
  text-align: left;
  margin-bottom: 0;
  font-size: 2.5em;
}

.knapp {
  color: var(--primary);
}

.absolute-overlay {
  background-image: linear-gradient(180deg, #0000, var(--light-gray));
  height: 40%;
  position: absolute;
  inset: auto 0% 0%;
}

.grid {
  grid-column-gap: 6em;
  grid-row-gap: 6em;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.animation_wrapper {
  justify-content: center;
  align-items: center;
  width: 17em;
  height: 17em;
  display: flex;
  position: relative;
}

.tjenesrter_footer.pt {
  margin-top: 45px;
}

.div-block-9 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  display: flex;
}

.logo_wrapper {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-10 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.div-block-11 {
  background-color: var(--primary);
  opacity: .1;
  filter: blur(20px);
  border-radius: 500%;
  width: 17em;
  height: 17em;
  position: absolute;
  inset: 0%;
}

.lottie-animation-2 {
  width: 140%;
  height: 140%;
  margin-bottom: 20%;
  position: absolute;
  inset: auto;
}

.pagination {
  margin-top: 3em;
}

.rstall {
  text-align: center;
  max-height: 40px;
  margin-bottom: 25px;
  line-height: 1em;
}

.paragraph-4 {
  margin-top: 0;
  font-size: 18px;
}

.search-result-list {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.accordion-arrow-2 {
  z-index: 20;
  object-fit: contain;
  width: 1em;
  height: 1em;
  font-size: 1.6em;
  position: relative;
}

.accordion-visible-line {
  z-index: 1;
  background-color: #12042c26;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.accordion-visible-line.is-2nd {
  background-color: #00000026;
}

.container-30 {
  z-index: 20;
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8em;
  padding-right: 8em;
  position: relative;
}

.container-30._0em-side {
  padding-left: 0;
  padding-right: 0;
}

.container-30.in-accordion {
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding-left: 5em;
  padding-right: 5em;
  display: flex;
}

.container-30.in-accordion._2-em-on-sides {
  padding-left: 2em;
  padding-right: 2em;
}

.container-30.in-accordion._2-em-on-sides.center {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.accordion-inner-2 {
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 3em 0 4em;
  display: flex;
  position: relative;
}

.accordion-4 {
  flex-flow: column;
  flex: none;
  align-self: center;
  margin-left: 0;
  margin-right: 0;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.accordion-4:hover {
  background-color: #ffffffa6;
}

.accordion-4.center:hover {
  background-color: #fff0;
}

.accordion-lines {
  z-index: 5;
  opacity: 1;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  height: .5px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.accordion-lines.is-bottom {
  inset: auto 0% 0%;
}

.accordion-toggle-2 {
  white-space: normal;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 8em;
  padding: 0;
  display: flex;
}

.accordion-content-4 {
  background-color: #0000;
  display: block;
  position: relative;
}

.accordion-content-4.w--open {
  position: relative;
}

.accordion-interactive-line {
  z-index: 3;
  background-color: #12042c;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.accordion-interactive-line.is-2nd {
  background-color: #00000026;
}

.acc-flex {
  grid-column-gap: 3.5em;
  grid-row-gap: 3.5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.accordion-toggle-3 {
  white-space: normal;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 8em;
  padding: 0;
  display: flex;
}

.accordion-toggle-3.smaller {
  min-height: 6em;
  margin-bottom: 1px;
}

.accordion-toggle-3.smaller.center {
  width: auto;
}

.grid-2 {
  grid-column-gap: 74px;
  grid-row-gap: 74px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: .25fr;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 90px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.banner-testimonials {
    padding-top: 200px;
  }

  .section.banner-home {
    padding-top: 170px;
  }

  .section.top-small-spacing {
    padding-top: 0;
  }

  .section.banner-services-2 {
    padding-top: 170px;
  }

  .section.services-banner-copy {
    padding-bottom: 0;
  }

  .section.banner-news {
    padding-top: 170px;
  }

  .base-container.footer-container {
    max-width: 1230px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .nav-container {
    padding-left: 50px;
    padding-right: 50px;
  }

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

  .blog-grid-collection-list {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .footer-bottom-wrapper {
    margin-top: 30px;
  }

  .style-guide-button-wrapper {
    width: auto;
  }

  .paragraph-large.mt-header-description {
    font-size: 25px;
  }

  .banner-title-wrapper {
    max-width: 800px;
  }

  .accordion-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .accordion-item {
    background-color: var(--light-gray);
    width: 100%;
  }

  .accordion-wrap {
    flex-direction: column;
    display: flex;
  }

  .paragraph-no-margin.footer {
    text-align: left;
  }

  .footer-wrapper {
    grid-template-columns: 28% auto auto auto;
  }

  .without-top-spacing {
    padding-top: 0;
  }

  .search-section {
    padding-top: 200px;
    padding-bottom: 130px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .search {
    margin-top: 50px;
  }

  .search.news {
    width: 550px;
  }

  .mobile-center {
    font-size: 81px;
  }

  .center-title {
    padding-right: 140px;
  }

  .left-column-content-header {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-items: center;
    display: flex;
  }

  .input-big._1-5-topp {
    margin-top: 50px;
  }

  .banner-title-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1.25fr .75fr;
    grid-auto-columns: 1fr;
    align-items: flex-end;
    max-width: 100%;
    display: grid;
  }

  .banner-title-wrap.vertical-center {
    align-items: end;
    max-width: 100%;
  }

  .banner-title-text.news {
    align-items: flex-start;
    max-width: 100%;
  }

  .banner-title-text.center-aligment {
    align-items: flex-start;
    width: 100%;
    min-width: 100%;
  }

  .banner-image-wrap {
    margin-top: 80px;
  }

  .content-wrap-grid-2c {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: .9fr 1.1fr;
  }

  .content-wrap-grid-2c.images {
    margin-top: 80px;
  }

  .grid-3c-2r {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .service-item-inner {
    min-height: auto;
  }

  .content-wrapper-flex.section-spacing {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-items: center;
    margin-top: 130px;
  }

  .statistic-numbers {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
  }

  .home-1-slide {
    padding-bottom: 154px;
  }

  .section-bottom-line {
    margin-bottom: 130px;
  }

  .section-bottom-line.top-padding {
    margin-top: 130px;
  }

  .blog-post-collection-wrapper {
    margin-top: 60px;
  }

  .link-image-wrap {
    padding-bottom: 0;
  }

  .services-collection-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .heading-wrap {
    min-height: auto;
  }

  .banner-header-description.mw-750 {
    max-width: 750px;
  }

  .knapp-m-rk.mt-button {
    margin-top: 50px;
  }

  .testimonials-item-card {
    min-height: 440px;
  }

  .services-banner-wrap {
    flex-direction: row;
  }

  .paragraph-large-t_c.mt-30 {
    margin-top: 40px;
  }

  .h1-details {
    font-size: 80px;
  }

  .h1-details.left {
    font-size: 2.4em;
  }

  .info-text {
    padding-left: 0;
  }

  .logo {
    width: 160px;
  }

  .new-title {
    font-size: 1.3em;
  }

  .new-detail-heading-wrap {
    max-width: 60%;
  }

  .heading {
    font-size: 76px;
  }

  .heading-2 {
    font-size: 48px;
  }
}

@media screen and (min-width: 1440px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .base-container, .base-container.footer-container {
    max-width: 1370px;
  }

  .nav-dropdown-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-bottom-wrapper {
    flex-direction: row;
  }

  .services-item {
    padding: 40px;
  }

  .contacts-content-wrapper {
    padding-right: 60px;
  }

  .contacts-form-wrapper {
    width: 51%;
  }

  .footer-wrapper {
    flex-wrap: nowrap;
    grid-auto-columns: 1fr;
  }

  .footer-links-wrapper {
    align-items: flex-start;
    width: auto;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .success-message {
    padding-left: 0;
  }

  .left-column-content-header {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .banner-title-wrap.title-grid {
    grid-template-columns: 1.25fr .5fr;
  }

  .banner-image {
    object-fit: cover;
    width: 100%;
    height: 600px;
  }

  .banner-home-gradient {
    width: 700px;
    height: 700px;
  }

  .grid-3c-2r.mt-50 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .service-item-inner {
    padding: 35px;
  }

  .approach-section-gradient {
    opacity: .7;
    width: 540px;
    height: 340px;
    bottom: 20%;
    right: 0%;
  }

  .content-wrapper-flex.section-spacing {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .statistic-numbers {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    width: 100%;
  }

  .section-bottom-line {
    margin-bottom: 80px;
  }

  .blog-post-list {
    z-index: 5;
    position: relative;
  }

  .gradient-cta {
    filter: blur(200px);
    height: 650px;
    top: -70%;
  }

  .light-yellow-block {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-direction: column;
    display: flex;
  }

  .story-section-gradient {
    opacity: .7;
    width: 540px;
    height: 340px;
    bottom: 20%;
    right: 0%;
  }

  .service-details-banner-img {
    width: 560px;
  }

  .news-gradient {
    opacity: .7;
    width: 540px;
    height: 340px;
    bottom: 20%;
    right: 0%;
  }

  .new-detail-heading-wrap {
    max-width: 70%;
  }

  .new-text-wrap {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .heading {
    font-size: 82px;
  }

  .animation_wrapper {
    width: 20em;
    height: 20em;
  }

  .div-block-11 {
    inset: 0%;
  }

  .accordion-interactive-line.is-2nd {
    background-color: #070707;
  }
}

@media screen and (min-width: 1920px) {
  h1 {
    font-size: 120px;
  }

  h2 {
    text-transform: none;
    font-size: 70px;
  }

  .section.banner-home {
    flex-direction: column;
    padding-top: 220px;
  }

  .section.gray-bg-without-bottom-padding {
    overflow: hidden;
  }

  .section.without-top-spacing-overflow {
    padding-top: 0;
  }

  .section.services-banner {
    padding-top: 220px;
  }

  .section.banner-services-2 {
    flex-direction: column;
    padding-top: 220px;
  }

  .section.services-banner-copy {
    padding-top: 220px;
  }

  .section.banner-news {
    flex-direction: column;
    padding-top: 220px;
  }

  .base-container.align-left {
    max-width: 1680px;
  }

  .base-container.smaller-on-big-screen {
    max-width: 1400px;
  }

  .nav-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .utility-page-content {
    width: 330px;
  }

  .blog-grid-collection-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-bottom-wrapper {
    margin-top: 40px;
  }

  .section-title-wrapper.left-big-screen {
    text-align: left;
  }

  .banner-title-wrapper {
    max-width: 1080px;
  }

  .accordion-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .accordion-item {
    margin-bottom: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contacts-content-wrapper {
    padding-right: 80px;
  }

  .contacts-form-wrapper {
    width: 60%;
    padding: 60px;
  }

  .footer-wrapper {
    text-align: left;
    flex-wrap: nowrap;
  }

  .footer-brand {
    text-align: left;
    margin-right: 10px;
  }

  .footer-links-wrapper {
    align-items: flex-start;
    width: auto;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .menu-wrap {
    margin-right: 100px;
  }

  .left-column-content-header {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    margin-right: auto;
  }

  .banner-title-wrap.title-grid {
    grid-template-columns: 2fr 1fr;
    justify-content: center;
    justify-items: stretch;
  }

  .banner-title-wrap.vertical-center {
    min-width: 100%;
  }

  .banner-title-text.about {
    max-width: 940px;
  }

  .banner-title-text.news {
    max-width: 60%;
  }

  .banner-image-wrap {
    margin-top: 100px;
  }

  .banner-image {
    height: 710px;
  }

  .banner-home-gradient {
    filter: blur(200px);
    width: 880px;
    height: 800px;
  }

  .content-wrap-grid-2c {
    grid-template-columns: .9fr .85fr;
  }

  .service-item-inner {
    min-height: 390px;
  }

  .service-heading {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .approach-list-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .approach-section-gradient {
    filter: blur(160px);
    bottom: 31%;
  }

  .content-wrapper-flex.section-spacing {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .statistic-numbers {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    display: flex;
  }

  .home-1-slide {
    padding-bottom: 174px;
  }

  .section-bottom-line {
    margin-bottom: 130px;
  }

  .blog-post-collection-wrapper {
    margin-top: 80px;
  }

  .gradient-cta {
    filter: blur(180px);
    border-radius: 600px;
    width: 80%;
    height: 450px;
    top: -60%;
  }

  .services-collection-list {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .banner-header-description {
    margin-top: 30px;
  }

  .half {
    border-radius: 8px;
  }

  .half.tablet-100 {
    height: auto;
  }

  .half.tablet-100.tjenester {
    max-width: none;
  }

  .half.tablet-100 {
    max-width: 60%;
    height: auto;
  }

  .mb-40 {
    margin-bottom: 60px;
  }

  .light-yellow-block {
    padding: 50px;
  }

  .clients-logo-wrap {
    grid-column-gap: 10em;
    grid-row-gap: 10em;
    align-items: flex-start;
  }

  .testimonials-item-card {
    padding: 50px;
  }

  .services-banner-wrap {
    align-items: center;
  }

  .services-services-page {
    transition: all .3s;
  }

  .history-wrap-tab {
    position: relative;
  }

  .history-wrap-tab.mt-40 {
    margin-top: 60px;
  }

  .story-section-gradient {
    filter: blur(160px);
    background-color: #ffdc60e6;
    width: 788px;
    height: 420px;
    bottom: 31%;
  }

  .service-details-banner-img {
    width: 750px;
  }

  .error-title {
    font-size: 180px;
  }

  .news-gradient {
    filter: blur(160px);
    width: 788px;
    height: 420px;
    bottom: 31%;
  }

  .new-photo {
    height: 500px;
  }

  .new-banner-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: row;
    align-items: center;
  }

  .new-detail-heading-wrap {
    max-width: 48%;
  }

  .animation_wrapper {
    width: 20em;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 86px;
  }

  h2 {
    font-size: 55px;
  }

  h3 {
    font-size: 46px;
  }

  h4 {
    font-size: 32px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }

  blockquote {
    font-size: 30px;
  }

  .section {
    padding-top: 6em;
  }

  .section.banner-testimonials {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 120px;
    display: block;
  }

  .section.banner-home {
    padding-top: 140px;
  }

  .section.gray-bg-without-bottom-padding {
    padding-top: 4em;
  }

  .section.services-banner {
    padding-top: 140px;
  }

  .section.top-small-spacing {
    padding-top: 50px;
  }

  .section.banner-services-2 {
    padding-top: 140px;
  }

  .section.services-banner-copy {
    height: auto;
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .section.banner-news {
    padding-top: 140px;
  }

  .section.smaller-top-on-tab {
    padding-top: 0;
  }

  .base-container.left {
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .headings-typography-wrapper {
    width: 100%;
  }

  .link-knapp.link-uten-padding {
    align-self: flex-start;
  }

  .navbar {
    padding-bottom: 15px;
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu {
    background-color: var(--white);
    flex-direction: column;
    width: 320px;
    inset: 0% auto 0% 0%;
  }

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-link.hide-on-laptop {
    display: flex;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-toggle.dark {
    color: var(--white);
  }

  .close-menu-button {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .close-menu-button.w--open {
    background-color: #0000;
    padding-top: 0;
    padding-left: 0;
    padding-right: 20px;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
    display: block;
  }

  .blog-grid-collection-list {
    grid-column-gap: 1em;
    column-count: 2;
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid-item-date {
    font-size: 18px;
  }

  .footer {
    height: 100%;
  }

  .footer-bottom-wrapper {
    justify-content: center;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .section-title-wrapper.left-big-screen {
    text-align: left;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .paragraph-large.mt-header-description {
    text-align: left;
    font-size: 31px;
  }

  .paragraph-large.tilbakemelding {
    font-size: 1.2em;
  }

  .banner-title-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 720px;
  }

  .section-title {
    font-size: 53px;
    display: none;
  }

  .accordion-wrapper {
    flex-direction: column;
    min-width: 100%;
  }

  .accordion-item.last {
    margin-bottom: 0;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .contacts-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contacts-content-wrapper {
    width: 100%;
    margin-top: -30px;
    padding-top: 0;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    margin-left: 0;
    padding: 30px;
  }

  .contacts-divider {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .contacts-detail.smaller {
    justify-content: center;
    align-items: center;
  }

  .paragraph-no-margin {
    font-size: 1em;
  }

  .paragraph-no-margin.footer {
    font-size: .8em;
  }

  .contacts-title {
    margin-bottom: 40px;
  }

  .contacts-2-location-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    margin-top: 0;
  }

  .footer-wrapper {
    grid-column-gap: 6%;
    grid-row-gap: 6%;
    flex-wrap: wrap;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: auto auto;
    margin-bottom: 40px;
    display: flex;
  }

  .footer-brand {
    display: block;
  }

  .footer-links-wrapper {
    align-items: center;
    width: 47%;
  }

  .search-section {
    padding-top: 120px;
  }

  .customer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-inner-page-item.home-screen {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .menu-wrap {
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .rich-text-style h2 {
    font-size: 58px;
  }

  .rich-text-style h3 {
    font-size: 42px;
  }

  .rich-text-style h4 {
    font-size: 34px;
  }

  .mobile-center {
    font-size: 81px;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .image-burger {
    margin-bottom: 4px;
  }

  .brand-tablet {
    width: 70%;
    display: block;
  }

  .banner-title-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .banner-title-wrap.title-grid {
    grid-template-columns: 1.25fr;
    justify-items: center;
  }

  .banner-title-text {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .banner-title-text.left {
    align-items: flex-start;
  }

  .banner-title-text.about {
    justify-content: center;
    align-items: flex-start;
  }

  .banner-title-text.news, .banner-title-text.center-aligment {
    margin-left: auto;
    margin-right: auto;
  }

  .banner-image {
    object-fit: cover;
    height: 350px;
  }

  .banner-home-gradient {
    filter: blur(100px);
    object-fit: cover;
    max-width: 170%;
    bottom: -10%;
    left: 50%;
    right: auto;
    transform: translate(-50%);
  }

  .images-wrap-half-section {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .images-wrap-half-section.hide-on-mobile, .images-wrap-half-section.hide-on-tab {
    display: none;
  }

  .text-content-wrap-half {
    justify-content: center;
    align-items: center;
  }

  .content-wrap-grid-2c {
    grid-template-columns: 1fr;
  }

  .content-wrap-grid-2c.pt-on-tab {
    margin-top: 5em;
  }

  .grid-3c-2r.mt-50 {
    grid-template-columns: 1fr 1fr;
  }

  .paragraph-dark {
    font-size: 17px;
  }

  .grid-3-column {
    grid-template-columns: .25fr 1.5fr;
  }

  .full-height {
    width: 100%;
    height: 500px;
  }

  .content-wrapper-flex.section-spacing {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .title-wrapper-small {
    min-width: 200px;
  }

  .numeric {
    font-size: 68px;
  }

  .numeric-wrap {
    align-items: center;
  }

  .statistic-numbers {
    grid-template-columns: 1fr 1fr;
  }

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

  .home-1-slide {
    padding-bottom: 84px;
  }

  .home-1-slider-arrow {
    width: 60px;
    height: 60px;
  }

  .home-1-slider-arrow.left {
    width: 60px;
    height: 60px;
    margin-right: 70px;
  }

  .section-bottom-line {
    margin-bottom: 60px;
  }

  .blog-post-list {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    display: flex;
  }

  .collection-item-3 {
    width: 47%;
    min-width: 43%;
    max-width: 50%;
  }

  .text-wrapper-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .link-image-wrap {
    width: 100%;
  }

  .mb-25 {
    margin-bottom: 15px;
  }

  .services-collection-list {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .service-item-home-2 {
    width: 47%;
  }

  .footer-logo-link-wrap {
    width: 100%;
  }

  .footer-logo-link-wrap.tablet-mb-30 {
    justify-content: center;
    align-items: center;
    width: 47%;
    margin-bottom: 30px;
    display: flex;
  }

  .banner-header-description {
    font-size: 36px;
  }

  .banner-header-description.mw-750 {
    text-align: left;
    align-self: flex-start;
    font-size: 22px;
  }

  .half {
    max-width: 100%;
  }

  .half.tablet-100 {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    display: flex;
  }

  .scroll-item {
    flex: 0 auto;
    width: 50%;
    padding-right: 0;
  }

  .clients-logo-wrap {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-flow: column;
    margin-top: 3.7em;
  }

  .relative {
    text-align: center;
  }

  .knapp-m-rk {
    display: block;
  }

  .knapp-m-rk.mt-button {
    align-self: flex-start;
  }

  .knapp-m-rk.header {
    font-size: 17px;
  }

  .knapp-m-rk.header.hide-on-tab {
    display: none;
  }

  .testimonials-item-card {
    min-height: 430px;
  }

  .services-banner-wrap {
    flex-direction: column;
    display: flex;
  }

  .paragraph-large-t_c.mt-30 {
    font-size: 29px;
  }

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

  .line-2 {
    margin-bottom: -5px;
  }

  .tab-year {
    padding-bottom: 13px;
    font-size: 25px;
  }

  .tab-year:hover {
    font-size: 25px;
  }

  .tab-year.w--current {
    padding-top: 28px;
    padding-bottom: 13px;
    font-size: 27px;
  }

  .flex-block-2 {
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .info-text {
    max-width: none;
    padding-left: 0;
  }

  .story-section-gradient {
    display: none;
  }

  .service-details-banner-img {
    width: 100%;
  }

  .link-category {
    font-size: 16px;
  }

  .error-title {
    font-size: 140px;
  }

  .logo {
    margin-bottom: 0;
  }

  .new-author-wrap.center {
    justify-content: center;
  }

  .new-title {
    font-size: 1em;
  }

  .news-gradient {
    filter: blur(140px);
    width: 530px;
    height: 510px;
    bottom: 9%;
  }

  .new-photo {
    width: 610px;
  }

  .new-banner-wrap {
    flex-direction: column;
  }

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

  .new-detail-heading-wrap {
    max-width: 100%;
  }

  .lys-knapp:hover {
    opacity: 1;
  }

  .lys-knapp.tablet-mt-40 {
    margin-top: 40px;
  }

  .lys-knapp.tablet-mt-40.mobil {
    margin-top: 20px;
  }

  .heading {
    text-align: left;
    font-size: 72px;
  }

  .heading-2 {
    text-align: left;
    font-size: 34px;
  }

  .heading-2.left {
    text-align: center;
    font-size: 2.3em;
    display: block;
  }

  .heading-2.left.hide-on-tab {
    display: none;
  }

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

  .heading-3 {
    font-size: 2.1em;
  }

  .grid {
    flex: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1.75fr;
    width: 100%;
  }

  .div-block-9 {
    width: 100%;
    display: none;
  }

  .logo_wrapper {
    place-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .rstall {
    margin-bottom: 20px;
  }

  .menu-button-2 {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

  .menu-button-2.w--open {
    background-color: #0000;
  }

  .paragraph-4 {
    font-size: 15px;
  }

  .container-30 {
    padding-left: 4em;
    padding-right: 4em;
  }

  .accordion-4:hover {
    background-color: #0000;
  }

  .acc-flex {
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 46px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  blockquote {
    font-size: 25px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.banner-testimonials {
    padding-top: 100px;
  }

  .section.without-top-spacing {
    padding-top: 0;
  }

  .section.banner-home {
    padding-top: 7em;
  }

  .section.without-top-spacing-overflow {
    padding-top: 0;
  }

  .section.services-banner {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .section.services-banner.less-pb {
    padding-bottom: 0;
  }

  .section.top-small-spacing {
    padding-top: 20px;
  }

  .section.banner-services-2 {
    padding-top: 105px;
  }

  .section.services-banner-copy {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .section.banner-news {
    padding-top: 105px;
  }

  .base-container {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .link-knapp {
    margin-bottom: 10px;
  }

  .link-knapp.link-uten-padding {
    margin-top: 20px;
  }

  .nav-link {
    margin-left: 0;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

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

  .blog-grid-collection-list {
    column-count: 1;
    grid-template-columns: 1fr;
  }

  .new-image {
    height: 250px;
  }

  .blog-grid-item {
    width: 100%;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  .section-title-wrapper.left-big-screen {
    align-self: flex-start;
    margin-left: 0;
  }

  .style-guide-button-wrapper {
    grid-row-gap: 5px;
  }

  .paragraph-large {
    text-align: left;
    font-size: 24px;
  }

  .paragraph-large.mb-40 {
    text-align: left;
  }

  .paragraph-large.mt-header-description {
    text-align: left;
    margin-top: 20px;
    font-size: 22px;
  }

  .paragraph-large.tilbakemelding {
    text-align: left;
    font-size: 20px;
  }

  .services-item {
    width: 100%;
    margin-right: 0;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-item {
    padding: 20px;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .contacts-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .contacts-content-wrapper {
    width: 100%;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contacts-title {
    margin-bottom: 20px;
  }

  .contacts-2-location-wrapper {
    width: 100%;
  }

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

  .footer-wrapper {
    grid-column-gap: 1.9em;
    grid-row-gap: 1.9em;
    grid-template-rows: 0 auto 0 auto;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    margin-bottom: 40px;
  }

  .footer-brand {
    width: 100%;
    padding-left: 0;
  }

  .footer-links-wrapper {
    width: 100%;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .search-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .customer-grid {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    grid-template-columns: 1fr 1fr;
  }

  .customer-grey-image {
    height: auto;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search.news {
    flex-flow: row;
    width: 100%;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .rich-text-style h2 {
    font-size: 46px;
  }

  .rich-text-style h3 {
    font-size: 40px;
  }

  .mobile-center {
    text-align: center;
    font-size: 59px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .input-big {
    padding-right: 40px;
  }

  .mb-15.bigger {
    font-size: 30px;
  }

  .banner-title-wrap {
    width: 90%;
  }

  .banner-title-wrap.title-grid {
    width: auto;
  }

  .banner-title-wrap.vertical-center {
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: auto;
    max-width: none;
    display: block;
  }

  .banner-title-text.news {
    max-width: 100%;
  }

  .banner-title-text.center-aligment {
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
  }

  .banner-image-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .banner-image {
    object-fit: cover;
  }

  .banner-home-gradient {
    width: 500px;
    bottom: 11%;
  }

  .text-content-wrap-half {
    justify-content: center;
    align-items: flex-start;
  }

  .content-wrap-grid-2c.images {
    grid-template-columns: 1fr;
  }

  .border-radius {
    width: 100%;
  }

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

  .flex-block.card-service {
    flex-direction: row;
    align-items: flex-start;
  }

  .grid-3c-2r.mt-50 {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .paragraph-dark {
    text-align: left;
    font-size: 17px;
  }

  .service-heading {
    margin-bottom: 20px;
  }

  .grid-3-column {
    grid-template-columns: .25fr;
  }

  .approach-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .content-wrapper-flex.section-spacing {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
  }

  .title-wrapper-small {
    width: 100%;
  }

  .numeric-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
    align-items: flex-start;
  }

  .statistic-numbers {
    grid-template-columns: 1fr 1fr;
    place-items: center start;
    width: 100%;
  }

  .home-1-slider {
    height: auto;
  }

  .section-bottom-line.top-padding {
    margin-top: 60px;
  }

  .collection-item-3 {
    width: 100%;
    max-width: 100%;
  }

  .mb-20 {
    text-align: left;
  }

  .mb-20:hover {
    text-decoration: none;
  }

  .services-collection-list {
    margin-top: 40px;
  }

  .services-collection-list.mt-0 {
    grid-column-gap: 3%;
    grid-row-gap: 3%;
  }

  .service-item-home-2 {
    width: 48.5%;
  }

  .h2 {
    text-align: center;
  }

  .footer-logo-link-wrap.tablet-mb-30 {
    width: 70%;
  }

  .banner-header-description {
    margin-top: 20px;
    font-size: 30px;
  }

  .banner-header-description.mw-750 {
    font-size: 20px;
  }

  .relative.full-height {
    align-self: flex-start;
  }

  .knapp-m-rk {
    align-self: center;
  }

  .knapp-m-rk.mt-button {
    margin-top: 30px;
  }

  .knapp-m-rk.mt-button.s-k {
    margin-top: 1.5em;
  }

  .testimonials-item-card {
    min-height: 310px;
  }

  .service-image {
    height: 200px;
  }

  .services-banner-wrap {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .paragraph-large-t_c {
    font-size: 30px;
  }

  .paragraph-large-t_c.mt-30 {
    margin-top: 0;
    font-size: 21px;
  }

  .h1-details {
    font-size: 54px;
  }

  .h1-details.left {
    text-align: left;
    font-size: 2em;
  }

  .tab-info {
    padding-left: 0;
    padding-right: 0;
  }

  .info-text {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
  }

  .new-author-wrap.center {
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
  }

  .new-title {
    font-size: 1.05em;
  }

  .new-photo {
    height: 350px;
  }

  .new-banner-wrap {
    justify-content: space-between;
    align-self: flex-start;
    align-items: flex-start;
  }

  .lys-knapp.tablet-mt-40:hover {
    color: var(--primary-dark);
  }

  .heading {
    text-align: left;
    font-size: 50px;
  }

  .heading-2 {
    text-align: left;
    font-size: 34px;
  }

  .knapp {
    font-size: 19px;
  }

  .tjenesrter_footer.pt {
    margin-top: 0;
  }

  .div-block-9 {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-5 {
    align-self: flex-start;
  }

  .search-result-list {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
  }

  .accordion-arrow-2 {
    font-size: 1.6em;
  }

  .container-30.in-accordion {
    padding-left: 4em;
    padding-right: 4em;
  }

  .grid-2 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    overflow: hidden;
  }

  .section.banner-home {
    padding-top: 7em;
  }

  .section.gray-bg-without-bottom-padding {
    overflow: hidden;
  }

  .section.smaller-top-on-tab {
    padding-top: 0;
  }

  .link-knapp.link-uten-padding {
    margin-right: 0;
  }

  .nav-menu {
    width: 90%;
  }

  .nav-link {
    width: 99%;
  }

  .utility-page-content {
    width: 100%;
  }

  ._404-paragraph {
    font-size: 18px;
  }

  .text-center.mt-20 {
    font-size: 30px;
  }

  .text-center.large-device-left {
    font-size: 16px;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
    line-height: 1.6em;
  }

  .paragraph-large, .paragraph-large.mb-40 {
    font-size: 1.2em;
  }

  .paragraph-large.mt-header-description {
    font-size: .9em;
  }

  .services-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion-toggle {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .accordion-item {
    margin-bottom: 20px;
  }

  .accordion-item.last {
    padding: 0 10px 20px;
  }

  .accordion-list-content {
    font-size: 17px;
  }

  .accordion-title {
    font-size: .9em;
  }

  .contacts-detail {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .contacts-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 0;
    padding-left: 0;
    font-size: 20px;
  }

  .paragraph-no-margin {
    font-size: 17px;
  }

  .footer-wrapper {
    align-items: center;
  }

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

  .footer-links-wrapper {
    align-items: center;
  }

  .search-result-item {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
  }

  .search-result-item.landing-progress-bar-wrapper {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
  }

  .customer-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .our-services-wrap, .home-9-team-item {
    width: 100%;
  }

  .rich-text-style {
    font-size: 17px;
  }

  .mobile-center {
    text-align: left;
    font-size: 50px;
  }

  .home-23-team-item {
    width: 100%;
  }

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

  .brand-tablet {
    padding-left: 0;
  }

  .brand {
    max-width: 75%;
  }

  .input-big:focus {
    border: 1px solid var(--primary);
  }

  .input-big._1-5-topp {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 17px;
  }

  .input-big._1-5-topp::placeholder {
    font-size: 15px;
  }

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

  .banner-title-wrap {
    width: 100%;
  }

  .banner-title-wrap.title-grid {
    width: auto;
  }

  .banner-title-text.about {
    max-width: none;
  }

  .banner-image-wrap {
    margin-top: 50px;
  }

  .banner-image {
    object-fit: cover;
    height: 350px;
  }

  .banner-home-gradient {
    width: 300px;
    height: 300px;
    display: inline;
    bottom: 27%;
    right: -13%;
  }

  .text-content-wrap-half {
    overflow: hidden;
  }

  .service-item-inner {
    padding: 25px 20px 28px;
  }

  .paragraph-dark {
    font-size: 15px;
    overflow: hidden;
  }

  .paragraph-dark.mindre {
    font-size: 12px;
  }

  .grid-3-column {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .approach-list {
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .full-height {
    height: 350px;
  }

  .numeric {
    font-size: 2em;
  }

  .statistic-numbers {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .tablet-center {
    font-size: 1.2em;
  }

  .home-1-slider {
    padding-bottom: 90px;
  }

  .home-1-slider-arrow.left {
    left: 0;
    right: auto;
  }

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

  .mb-20.mindre {
    font-size: 24px;
  }

  .services-collection-list.mt-0 {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
  }

  .service-item-home-2 {
    width: 100%;
  }

  .white-bg-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-logo-link-wrap.tablet-mb-30 {
    width: auto;
  }

  .banner-header-description.mw-750 {
    text-align: left;
    font-size: 22px;
  }

  .top-right-arrow {
    width: 8%;
  }

  .input:focus {
    border: 1px solid var(--primary);
  }

  .input::placeholder {
    font-size: 17px;
  }

  .half.tablet-100 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .scroll-item {
    width: 100%;
  }

  .logo-block {
    padding: 15px;
  }

  .relative {
    display: none;
  }

  .relative.full-height {
    display: block;
  }

  .knapp-m-rk.mt-button {
    font-size: 17px;
  }

  .knapp-m-rk.mt-button.s-k {
    padding: 20px 30px;
  }

  .testimonials-item-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-banner-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .paragraph-large-t_c.mt-30 {
    font-size: 21px;
  }

  .h1-details.left {
    font-size: 1.2em;
  }

  .tab-year {
    min-width: 50%;
  }

  .flex-block-2 {
    grid-row-gap: 20px;
  }

  .tabs-menu-hisory {
    flex-flow: wrap;
    align-items: stretch;
  }

  .info-text {
    padding-left: 0;
  }

  .service-details-banner-img {
    width: auto;
    height: 300px;
  }

  .contacts-form-title-center {
    font-size: 1.3em;
  }

  .textarea:focus {
    border: 1px solid var(--primary);
  }

  .textarea::placeholder {
    font-size: 17px;
  }

  .error-title {
    font-size: 50px;
  }

  .logo {
    width: 91%;
  }

  .new-title {
    font-size: .8em;
  }

  .new-banner-wrap {
    grid-column-gap: 40px;
  }

  .lys-knapp.tablet-mt-40.mobil {
    margin-top: .5em;
    font-size: 17px;
  }

  .heading {
    font-size: 1.5em;
  }

  .heading.tjenester, .heading-2 {
    font-size: 1.2em;
  }

  .heading-2.left {
    text-align: left;
    font-size: 1.8em;
  }

  .image-4 {
    transform: rotateX(0)rotateY(-180deg)rotateZ(0);
  }

  .div-block-8 {
    overflow: hidden;
  }

  .heading-3 {
    font-size: 1.8em;
  }

  .animation_wrapper, .div-block-11 {
    width: 12em;
    height: 12em;
  }

  .paragraph-2, .paragraph-3 {
    font-size: 17px;
  }

  .search-result-list {
    grid-template-columns: 1fr;
  }

  .heading-6 {
    margin-bottom: 0;
    font-size: 40px;
  }

  .brand-2 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .accordion-arrow-2 {
    margin-bottom: .5em;
  }

  .container-30, .container-30.in-accordion {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .container-30.in-accordion._2-em-on-sides {
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    padding-right: 1em;
  }
}

#w-node-_767e8cbc-239b-8ff0-2537-f21c090c5c57-6c03853a {
  justify-self: end;
}

#w-node-_4c3be175-b900-0f4a-1de0-6726e4836ef2-6c03853a {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_1dd65917-1bf7-22fb-2a70-fa1d1240276a-6c03853a, #w-node-_6b0ad268-5bf3-8a3a-74e6-828869a8dea7-6c03853a, #w-node-_67a3662e-5252-c32c-c72d-0e1e1b786411-6c03853a, #w-node-e2fc9e83-5e30-9822-b780-8a5fabf56a1c-6c03853a {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-fb302a50-4fba-a137-2813-41cf920aaa20-6c03853a, #w-node-fb302a50-4fba-a137-2813-41cf920aaa21-6c03853a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9cf31d26-1fb8-02aa-7507-4f225a7ac886-634f2c73 {
  align-self: start;
}

#w-node-daf981fd-9b17-a0fb-7466-2c35634f2c86-634f2c73 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: start;
}

#w-node-_3db1224e-668d-bc93-3a50-fd5946ea9541-634f2c73 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-f7cd2bcf-6c51-bfce-5eea-5b3f83e10fff-634f2c73 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  justify-self: center;
}

#w-node-daf981fd-9b17-a0fb-7466-2c35634f2ca5-634f2c73 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_9e4ba58e-b156-1b56-0e2a-b04ac3afd844-c3afd842 {
  place-self: center;
}

#w-node-_7a439605-5413-3f91-14e2-22ccc1705f77-c1705f6a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4febd6b7-26e6-654a-50d0-b9a767cf2178-6c03854b {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-f834502a-c86e-ad28-ed26-2bbad0d00ecf-6c03854b {
  grid-area: span 2 / span 1 / span 2 / span 1;
  justify-self: end;
}

#w-node-a08dc122-a399-c934-ccbf-b581aed6f59c-6c03854b, #w-node-df0f487c-b0ed-11ce-d088-2c26c92adff1-6c03854b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_242f71e7-323c-13ae-3d16-fcc1d701ff86-6c03854b, #w-node-_9ce33c25-0ebd-bdf4-65a6-18768997e29d-6c03854b, #w-node-_5cf2d3df-71c9-10cd-8bd5-8ac09cdb659e-6c03854b, #w-node-_1c7f5083-6373-be18-5efa-a887ec972efc-6c03854b, #w-node-a7d593c8-186a-926d-bfca-acbac0350d14-6c03854b, #w-node-_085e4335-577a-94ad-bb00-34f39f4b834d-6c03854b, #w-node-_047caab8-5149-7a82-2a2a-65163b7a4dab-6d938c71, #w-node-_047caab8-5149-7a82-2a2a-65163b7a4dab-45015dbd, #w-node-_047caab8-5149-7a82-2a2a-65163b7a4dab-1acead28, #w-node-_047caab8-5149-7a82-2a2a-65163b7a4dab-ee2fed35, #w-node-_047caab8-5149-7a82-2a2a-65163b7a4dab-244266ab, #w-node-_047caab8-5149-7a82-2a2a-65163b7a4dab-196a3dc5, #w-node-_047caab8-5149-7a82-2a2a-65163b7a4dab-4cd1846c, #w-node-_047caab8-5149-7a82-2a2a-65163b7a4dab-cf272301, #w-node-_047caab8-5149-7a82-2a2a-65163b7a4dab-3b5fb1a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1920px) {
  #w-node-a08dc122-a399-c934-ccbf-b581aed6f59c-6c03854b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_767e8cbc-239b-8ff0-2537-f21c090c5c52-6c03853a, #w-node-_767e8cbc-239b-8ff0-2537-f21c090c5c57-6c03853a {
    justify-self: start;
  }

  #w-node-_112ee20b-df25-22f2-b601-87523398cc71-6c03853a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4c3be175-b900-0f4a-1de0-6726e4836ef2-6c03853a {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-eb83e284-50d9-003a-15cb-2d7374b2a544-634f2c73 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-daf981fd-9b17-a0fb-7466-2c35634f2c86-634f2c73, #w-node-_3db1224e-668d-bc93-3a50-fd5946ea9541-634f2c73 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f7cd2bcf-6c51-bfce-5eea-5b3f83e10fff-634f2c73 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-daf981fd-9b17-a0fb-7466-2c35634f2ca5-634f2c73 {
    grid-column: span 2 / span 2;
  }

  #w-node-_15e87ab4-825b-60e2-62de-6fcdcac5c220-c3afd842 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_9e4ba58e-b156-1b56-0e2a-b04ac3afd844-c3afd842 {
    grid-area: 1 / 1 / 2 / 3;
    place-self: center stretch;
  }

  #w-node-_68e34a01-eed3-f05f-a6d4-8717388b3c3a-388b3c25 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-f834502a-c86e-ad28-ed26-2bbad0d00ecf-6c03854b {
    justify-self: center;
  }

  #w-node-_242f71e7-323c-13ae-3d16-fcc1d701ff86-6c03854b, #w-node-_32635632-199b-2cbe-5964-fd2426e59ac2-6c03854b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4febd6b7-26e6-654a-50d0-b9a767cf2178-6c03854b, #w-node-f834502a-c86e-ad28-ed26-2bbad0d00ecf-6c03854b {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-e45afc87-3686-0f0c-dec4-a20677a505cb-6c03854b {
    justify-self: start;
  }

  #w-node-_32635632-199b-2cbe-5964-fd2426e59ac2-6c03854b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400 (6.4.2)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ultimapro';
  src: url('../fonts/UltimaProBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ultimapro';
  src: url('../fonts/UltimaPro-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ultimapro';
  src: url('../fonts/UltimaPro-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ultimaprolt';
  src: url('../fonts/UltimaProLt-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ultimapro';
  src: url('../fonts/UltimaPro.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ultimapro';
  src: url('../fonts/UltimaProBlack-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ultimaprolt';
  src: url('../fonts/UltimaProLt.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}