:root {
  --white: #faf8f5;
  --black: #201e1c;
  --primary: #f67d01;
  --mid-grey: #f0ede5;
  --light-grey: #f7f3ee;
  --green: #465832;
  --lightblue: #f3f9ff;
}

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

.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 {
  background-color: var(--white);
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.4rem;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 5.4rem;
  font-weight: 600;
  line-height: 6rem;
}

h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Visbycf, sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 4.5rem;
}

h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.5rem;
}

h4 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 2.8rem;
}

h5 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
}

h6 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Visbycf, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
}

p {
  text-indent: 3rem;
  margin-bottom: 0;
  line-height: 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #a25200;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 3rem;
}

li {
  margin-bottom: .5rem;
}

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

blockquote {
  color: var(--primary);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 0;
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  line-height: 2rem;
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section.hero {
  padding-top: 10rem;
}

.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 3rem;
}

.container.bilde {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

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

.row-2 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.col-3 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.col-1-flex {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.col-1-flex.text-align-middle {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  transition: all .2s;
}

.paragraph-1-25 {
  text-align: center;
  text-indent: 0;
  font-size: 1.25rem;
  line-height: 1.8rem;
}

.paragraph-0-9 {
  font-size: 1rem;
}

.paragraph-0-9.text-color-white {
  font-size: .9rem;
}

.text-0-9 {
  font-size: .9rem;
  line-height: 1.3rem;
}

.text-0-9.text-color-transparent {
  color: #faf8f580;
}

.text-1-25 {
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.8rem;
}

.text-1-25.luft {
  margin-bottom: 2rem;
}

.text-1-25.luft.over {
  max-width: 40rem;
  margin-top: 2rem;
  margin-bottom: 0;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  font-size: .9rem;
  line-height: 1.3rem;
}

.button {
  border: .05rem solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 10rem;
  padding: .7rem 1.5rem;
  font-size: .9rem;
  line-height: 100%;
  text-decoration: none;
  transition: all .2s;
}

.button:hover {
  border-color: var(--black);
  background-color: var(--white);
  color: var(--black);
}

.button.version-3 {
  border-color: var(--black);
  color: var(--black);
  background-color: #f0ede500;
}

.button.version-3:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.button.allign-center {
  align-self: center;
}

.row-1-flex {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.margin-3-bottom {
  margin-bottom: 3rem;
}

.row-2-flex {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  display: flex;
}

.row-2-flex.max-width-small {
  grid-column-gap: 1.1rem;
  grid-row-gap: 1.1rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.row-4-flex {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-direction: column;
  display: flex;
}

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

.bg-color-midgrey {
  background-color: var(--mid-grey);
}

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

.text-color-white {
  color: var(--white);
  font-size: .9rem;
}

.text-color-white.footer {
  text-transform: none;
  font-size: 1.7rem;
}

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

.max-width-large {
  max-width: 1080px;
}

.max-width-medium {
  max-width: 720px;
}

.max-width-small {
  max-width: 360px;
  display: flex;
}

.heading-hero {
  text-align: left;
  text-indent: 0;
  font-size: 4.6rem;
}

.section-image {
  background-image: linear-gradient(#00000080, #00000080), url('../images/vektere-3_1.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  min-height: 50rem;
}

.section-image.image-services {
  background-image: linear-gradient(135deg, var(--black), #201e1c00 52%), linear-gradient(to bottom, #0009, #0009), url('../images/member-of-security-guard-team-on-public-event-2023-11-27-05-11-25-utc-1_1.webp');
  background-position: 0 0, 0 0, 50% 0;
  background-size: auto, auto, cover;
}

.line {
  background-color: #ffffff40;
  height: 1px;
}

.row-7 {
  grid-column-gap: 7rem;
  grid-row-gap: 7rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-logos {
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.image-logos {
  opacity: 1;
}

.wrap-logos {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  place-items: center;
  display: flex;
}

.section-logos-color-fading {
  z-index: 1;
  background-image: linear-gradient(270deg, var(--white), #faf8f500 25%, #faf8f500 75%, var(--white));
  position: absolute;
  inset: 0%;
}

.wrap-link-navbar {
  color: var(--black);
  text-transform: uppercase;
  font-family: Visbycf, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.wrap-link-navbar:hover {
  color: var(--primary);
}

.link-footer {
  color: var(--white);
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s;
}

.link-footer:hover {
  color: var(--primary);
}

.text-huge {
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
}

.link-contact {
  color: var(--black);
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 8rem;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
  transition: color .2s;
}

.link-contact:hover {
  color: var(--primary);
}

.counterup {
  color: var(--white);
  font-family: Visbycf, sans-serif;
  font-size: 5rem;
  line-height: 85%;
}

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

.utility-page-form {
  max-width: 900px;
}

.section-utility-page {
  justify-content: center;
  align-items: center;
  min-height: 80svh;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
}

.wrap-password {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.field-password {
  text-align: center;
  border: 1px solid #fff;
  border-radius: 10rem;
  min-height: 3rem;
  margin-bottom: 0;
}

.button-password {
  background-color: var(--primary);
  text-transform: uppercase;
  border-radius: 10rem;
  padding: .7rem 1.5rem;
  font-size: .9rem;
  line-height: 100%;
}

.grid-footer-02 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
}

.row-8-flex {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-direction: column;
  display: flex;
}

.grid-footer-01 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
}

.logo-navbar {
  font-size: 1rem;
}

.col-footer {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.wrap-brand {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  padding-left: 0;
  display: flex;
}

.wrap-brand:hover {
  color: var(--primary);
}

.wrap-brand.mindre {
  width: 30%;
}

.navbar {
  background-color: var(--mid-grey);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-link {
  align-self: center;
  padding: 0;
}

.navbar-link:hover, .navbar-link.w--current {
  color: var(--primary);
}

.text-brand {
  color: var(--black);
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 100%;
}

.text-brand.lys {
  color: var(--mid-grey);
  font-size: 1.9rem;
}

.text-brand.header {
  font-size: 1.8rem;
}

.text-brand.header.phone-hide {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.navbar-menu {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.img-brand {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar-container {
  justify-content: space-between;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
}

.cms-list-projects-home {
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-image {
  background-image: url('../images/672cc1531c292cee397d2cf7_387742650_666095145501620_4250528031213565423_n_1.webp');
  background-position: 50%;
  background-size: cover;
  min-height: 35rem;
  position: relative;
}

.project-image.uteliv {
  background-image: url('../images/672cc17d23b7fb06196aa6fd_450240680_816365940474539_6775980075063053846_n_1.webp');
}

.project-image.arrangement {
  background-image: url('../images/672cc16e77aa65cebf6265cc_440144948_777479914363142_239244818206396871_n_1.webp');
}

.project-image.undeholdning {
  background-image: url('../images/672cc14103fc04d84e08d6c6_434400698_755958989848568_5831512699943204606_n_1.webp');
}

.cms-item-projects-home {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  margin-bottom: 5rem;
  display: flex;
}

.reveal-button {
  background-color: #201e1c40;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.link-services {
  background-color: var(--white);
  color: var(--black);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.link-services:hover {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.text-block {
  color: var(--white);
  font-size: .9rem;
}

.wrap-contact {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact {
  background-color: var(--white);
  padding: 3rem;
}

.text-field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.field-text {
  border: 1px #ececec;
  min-height: 3rem;
  margin-bottom: 0;
}

.field-text.large-field {
  min-height: 7rem;
}

.success-message {
  background-color: var(--white);
}

.wrap-form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-about-numbers {
  color: var(--white);
  font-size: 5rem;
  line-height: 100%;
}

.grid-insights {
  grid-column-gap: 10rem;
  grid-row-gap: 10rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrap-about-numbers {
  grid-column-gap: 7rem;
  grid-row-gap: 7rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1.5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrap-relative {
  position: relative;
}

.wrap-numbers-row {
  grid-column-gap: 7rem;
  grid-row-gap: 7rem;
  flex-direction: column;
  display: flex;
}

.image-about {
  opacity: .84;
  background-image: linear-gradient(#00000080, #00000080), url('../images/vektere-3_1.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  min-height: 85svh;
  position: absolute;
  inset: 0%;
}

.section-image-about {
  background-color: var(--black);
  min-height: 70svh;
  position: relative;
  overflow: hidden;
}

.team-slide {
  width: 100%;
  height: auto;
  margin-right: 2rem;
  padding-bottom: 0;
  padding-right: 0;
}

.text-block-2 {
  text-transform: none;
  font-family: Montserrat, sans-serif;
  font-size: 1.4rem;
}

.text-span, .text-span-2, .text-span-3 {
  color: var(--primary);
}

.accordion-circle {
  z-index: 5;
  opacity: 1;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 5em;
  margin-right: 1em;
  display: flex;
  position: relative;
  top: 1px;
}

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

.accordion-inner.in-testimonial {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 66em;
  margin-left: auto;
  margin-right: auto;
  padding: 5em;
}

.accordion-content {
  background-color: #ffffff4a;
  border-bottom: 1px #272b3d33;
  display: block;
  position: relative;
}

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

.testimonial-content {
  border: 1px #000;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.accordion {
  flex: none;
  align-self: stretch;
  margin-left: 0;
  margin-right: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.accordion.in-testimonial {
  margin-top: 2rem;
}

.accordion-toggle {
  white-space: normal;
  border-bottom: 1px solid #272b3d33;
  justify-content: flex-start;
  align-items: center;
  min-height: 5em;
  padding: 0;
  transition: border-color .3s;
  display: flex;
}

.accordion-toggle:hover {
  border-bottom-color: #adb5bd;
}

.accordion-toggle.in-testimonial {
  color: #272b3db3;
  border-bottom-style: solid;
  justify-content: space-between;
  min-height: 7em;
  transition: color .2s, border-color .3s;
}

.accordion-toggle.in-testimonial:hover {
  color: #272b3d;
}

.bold-text {
  color: var(--black);
}

.heading-7 {
  font-family: Montserrat, sans-serif;
  font-size: 3.2rem;
}

.heading-8 {
  font-size: 2.7rem;
}

.title-element-shape {
  width: 60px;
  position: absolute;
  top: 210px;
}

.title-element-shape.kontakt {
  width: 45px;
  position: static;
}

.help-gradient {
  z-index: 1;
  background-image: linear-gradient(90deg, #ffe8e700, var(--white) 80%);
  width: 15%;
  position: absolute;
  inset: 0% -.1% 0% auto;
}

.help-gradient.left {
  background-image: linear-gradient(90deg, var(--white) 20%, #ffe8e700);
  inset: 0% auto 0% -.1%;
}

.i-can-help-rows-wrapper {
  grid-row-gap: 40px;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.i-can-help-rows-wrapper.alt {
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
}

.seksjon-for-logoer {
  z-index: 1;
  background-color: #f9f7f6;
  position: relative;
}

.seksjon-for-logoer.hvit {
  overflow: hidden;
}

.ny-kontainer {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.i-can-help-blocks-wrapper {
  grid-column-gap: 6rem;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.i-can-help-row {
  grid-column-gap: 30px;
  align-items: flex-start;
}

.i-can-help-row._2 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  min-height: 5em;
  margin-right: 6rem;
  padding-top: 2em;
  padding-bottom: 2em;
}

.i-can-help-block {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 4em;
  display: flex;
}

.heading-9 {
  font-family: Montserrat, sans-serif;
}

@media screen and (min-width: 1440px) {
  .ny-kontainer {
    padding-left: 4.25rem;
    padding-right: 4.25rem;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 4.6rem;
    line-height: 5.4rem;
  }

  h2 {
    font-size: 3.6rem;
    line-height: 4rem;
  }

  h3 {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }

  h4 {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .row-1, .row-3 {
    max-width: 100%;
  }

  .paragraph-1-25 {
    font-size: .9rem;
  }

  .max-width-large {
    max-width: 100%;
  }

  .heading-hero {
    text-indent: 5rem;
  }

  .section-image {
    min-height: 40rem;
  }

  .row-7 {
    max-width: 100%;
  }

  .image-logos {
    max-width: 7rem;
  }

  .wrap-logos {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .text-huge.no-indent {
    text-indent: 0;
    white-space: pre-wrap;
    line-height: 1.5rem;
  }

  .link-contact {
    font-size: 6rem;
  }

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

  .grid-footer-01 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1.25fr 1fr;
  }

  .col-footer.row-mob {
    flex-direction: column;
  }

  .navbar-link {
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar-button {
    color: #fff;
    padding: .5rem 0;
  }

  .navbar-button.w--open {
    color: #c6ff7d;
    background-color: #0000;
  }

  .navbar-menu {
    background-color: var(--white);
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .navbar-icon {
    color: var(--black);
  }

  .cms-list-projects-home {
    grid-template-columns: 1fr;
  }

  .reveal-button {
    display: none;
  }

  .link-services {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .link-services:hover {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .wrap-contact {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .text-about-numbers {
    font-size: 3rem;
  }

  .grid-insights {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    grid-template-columns: 1fr;
  }

  .wrap-about-numbers {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .wrap-numbers-row {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .accordion-content, .accordion.in-testimonial {
    max-width: 100%;
  }

  .accordion-toggle.in-testimonial {
    color: #272b3d;
  }

  .bold-text {
    font-size: 1.1rem;
  }

  .div-block {
    max-width: 100%;
  }

  .ny-kontainer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .i-can-help-row._2 {
    padding-top: 1.8em;
    padding-bottom: 1.8em;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 3.8rem;
    line-height: 4.5rem;
  }

  h2 {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }

  h3 {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }

  h4 {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  h5 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .section.hero {
    padding-top: 6rem;
  }

  .container {
    padding: 4rem 1.5rem;
  }

  .col-3 {
    grid-auto-flow: row;
  }

  .col-1-flex, .text-color-white.footer {
    font-size: 1.2rem;
  }

  .heading-hero {
    text-indent: 0;
    font-size: 4.6rem;
  }

  .section-image {
    min-height: 30rem;
  }

  .wrap-logos {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .text-huge {
    font-size: 1.2rem;
  }

  .link-contact {
    font-size: 5rem;
  }

  .text-brand {
    display: none;
  }

  .text-brand.lys, .text-brand.header {
    display: block;
  }

  .navbar-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .project-image {
    min-height: 25rem;
  }

  .contact {
    padding: 1.5rem;
  }

  .wrap-form {
    grid-template-columns: 1fr;
  }

  .team-slide {
    margin-right: 1rem;
  }

  .heading-7 {
    font-size: 3rem;
    overflow: hidden;
  }

  .title-element-shape {
    width: 50px;
  }

  .i-can-help-rows-wrapper {
    grid-row-gap: 20px;
  }

  .ny-kontainer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }

  h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  h3 {
    font-size: 1.7rem;
    line-height: 2.1rem;
  }

  h4 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  h5 {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  h6 {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .container {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 0;
    padding-right: 0;
  }

  .container.text-align-middle {
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .text-1-25 {
    font-size: 1rem;
  }

  .heading-hero {
    font-size: 2.4rem;
  }

  .image-logos {
    max-width: 4rem;
  }

  .wrap-logos {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
  }

  .text-huge.no-indent {
    font-size: 1rem;
  }

  .link-contact {
    font-size: 3.5rem;
  }

  .grid-footer-01 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1.25fr;
  }

  .text-brand.lys {
    font-size: 1.4rem;
    display: block;
  }

  .text-brand.header {
    font-size: 1.2rem;
  }

  .text-brand.header.phone-hide {
    display: none;
  }

  .project-image {
    min-height: 15rem;
  }

  .cms-item-projects-home {
    max-width: 100%;
    overflow: hidden;
  }

  .wrap-about-numbers {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .accordion-circle {
    width: 1.5em;
    margin-right: .6em;
  }

  .accordion-inner.in-testimonial {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .testimonial-content {
    padding-right: 1.5em;
  }

  .heading-7 {
    font-size: 1.5rem;
  }

  .heading-8 {
    text-align: center;
    font-size: 1.3rem;
  }

  .div-block {
    width: 100%;
  }

  .title-element-shape {
    width: 40px;
  }

  .ny-kontainer {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}

#w-node-c418c10f-7ef9-19b0-c81e-6888ce6966d3-cd24e654, #w-node-_9250dc3f-989a-9556-1605-d679ec76e463-cd24e654, #w-node-fc84aaf3-11c4-25c5-081a-b653753b2a10-cd24e654, #w-node-b2529181-2de7-1b42-6dda-e88cfad0eb8b-cd24e654, #w-node-fbddfc1c-c9a0-e0d6-ff8c-45de2948a2e1-cd24e654 {
  justify-self: center;
}

#w-node-_8922df8e-62d3-1d07-1a74-092fa1c4aba2-cd24e654, #w-node-_7d9b5a56-20f3-e7ec-af78-000e25fe1807-cd24e654, #w-node-_2f48360c-600e-d242-9420-32c4e1fa94f2-cd24e654, #w-node-_4d4d8b1e-3c1e-3812-6b6c-6caec58c27ee-cd24e654, #w-node-afed0252-1ce4-7d73-40dd-7c9d4e190fb8-cd24e654, #w-node-_3fec5d30-acbf-e1d9-db17-74e4f63e22cc-cd24e654 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fa002e26-cc2c-47c7-cd6f-d9507fdadd49-fd98566a, #w-node-fa002e26-cc2c-47c7-cd6f-d9507fdadd35-fd98566a, #w-node-fa002e26-cc2c-47c7-cd6f-d9507fdadd3f-fd98566a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-fa002e26-cc2c-47c7-cd6f-d9507fdadd51-fd98566a, #w-node-fa002e26-cc2c-47c7-cd6f-d9507fdadd53-fd98566a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fa002e26-cc2c-47c7-cd6f-d9507fdadd5e-fd98566a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_32945d0a-f7ae-1e44-ed39-6d338b1500d0-8b1500cd {
  place-self: center;
}

#w-node-_32945d0a-f7ae-1e44-ed39-6d338b1500d8-8b1500cd {
  justify-self: center;
}

#w-node-_1d8f48d0-3c70-163b-5989-ee406a55b58c-cd24e657 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-ec5c99e5-2a61-b178-8b69-41520278e409-cd24e657 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3809906e-92ad-be4f-7485-02d4157bc9a1-157bc99b, #w-node-_1a0e4c20-b968-bfdc-dfaa-fe39a9d65d1b-cd24e659, #w-node-_8aa83e1a-a020-de21-94d4-897f695fc3c9-cd24e659 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_40754be3-801f-d1d6-449a-f2eed1b22ad2-cd24e659 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_46704303-c6dc-aec2-f66d-d9d34a40475a-cd24e659 {
  justify-self: start;
}

#w-node-_481725eb-53bb-46ab-1503-e355f1e5bfbb-7cac38c1, #w-node-_481725eb-53bb-46ab-1503-e355f1e5bfbb-e2a73743, #w-node-cf6ddb00-d66b-f58c-b330-5f8fe9a40460-e2a73743, #w-node-a6209f7a-679a-6caf-14e9-f4b36b10be5b-e2a73743 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6209f7a-679a-6caf-14e9-f4b36b10be6e-e2a73743 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a6209f7a-679a-6caf-14e9-f4b36b10be72-e2a73743 {
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-fa002e26-cc2c-47c7-cd6f-d9507fdadd5e-fd98566a {
    justify-self: start;
  }

  #w-node-_481725eb-53bb-46ab-1503-e355f1e5bfbb-7cac38c1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_481725eb-53bb-46ab-1503-e355f1e5bfc0-7cac38c1, #w-node-b94161f2-9053-0f58-215f-f4070db47abf-7cac38c1 {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_40754be3-801f-d1d6-449a-f2eed1b22ad2-cd24e659, #w-node-a6209f7a-679a-6caf-14e9-f4b36b10be6e-e2a73743 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b94161f2-9053-0f58-215f-f4070db47abf-7cac38c1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }
}


@font-face {
  font-family: 'Visbycf Regular';
  src: url('../fonts/VisbyCF-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-DemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}