:root {
  --midnight-blue: #0e0a28;
  --light-slate-grey: #0e0a2880;
  --dark-slate-grey: #ff6f40;
  --white-smoke: #f9fafb;
  --gainsboro: #e1eeea;
  --secondary: #fd6151;
  --mint-cream: #e8f6f2;
  --white-smoke-2: #f9fafb;
  --white: white;
  --hover: #3f6b79;
  --shadow: #0e0a281a;
  --label: #f0f1f2;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--midnight-blue);
  letter-spacing: 1px;
  font-family: Plusjakartadisplay, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

h1 {
  letter-spacing: 1.5px;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 54px;
  font-weight: 500;
  line-height: 76px;
}

h2 {
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 500;
  line-height: 56px;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
}

h4 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
}

h5 {
  background-image: none;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

h6 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

p {
  color: var(--light-slate-grey);
  margin-bottom: 10px;
}

a {
  color: var(--dark-slate-grey);
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.navbar {
  background-color: #0000;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  line-height: 24px;
  position: fixed;
}

.container {
  z-index: 1;
  flex: 1;
  max-width: 1360px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.container.medium {
  max-width: 1144px;
}

.container.small {
  max-width: 840px;
}

.nav-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2fr auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.nav-left {
  align-items: center;
  display: flex;
}

.dropdown-toggle {
  border-radius: 10px;
  align-items: center;
  padding: 8px 8px 8px 16px;
  transition: background-color .3s;
  display: flex;
}

.dropdown-toggle:hover {
  background-color: var(--white-smoke);
}

.dropdown-icon {
  margin-left: 4px;
}

.space-with-dotted-line {
  border-right: 1px dashed var(--gainsboro);
  margin-right: 32px;
  padding-right: 40px;
}

.nav-right {
  display: flex;
}

.green-button {
  background-color: var(--dark-slate-grey);
  background-image: linear-gradient(216deg, var(--dark-slate-grey), var(--secondary));
  text-align: center;
  letter-spacing: 1px;
  border-radius: 10px;
  padding: 16px 24px;
  line-height: 24px;
  transition: background-color .2s;
}

.green-button:hover {
  background-color: #3f6b79;
}

.green-button.first-button {
  font-weight: 500;
  transition: opacity .3s, background-color .3s ease-in;
}

.green-button.first-button:hover, .green-button.space-top-mobile:hover {
  background-image: none;
}

.section {
  padding-top: 15vh;
  padding-bottom: 15vh;
  position: relative;
}

.section.light-gray-background {
  background-color: var(--mint-cream);
  padding-top: 15vh;
  padding-bottom: 15vh;
  overflow: hidden;
}

.section.light-gray-background.underlay {
  margin-top: -60px;
  padding-top: 180px;
}

.section.limit {
  padding-top: 170px;
  padding-bottom: 170px;
}

.section.gray-background {
  background-color: var(--mint-cream);
}

.section.gray-background.full-size {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.section.no-space-top {
  padding-top: 0;
}

.section.morepb {
  padding-bottom: 20vh;
}

.partial-gray-background {
  background-color: var(--white-smoke);
  width: 29%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.partial-gray-background.home-1 {
  z-index: 0;
  background-color: var(--gainsboro);
  left: auto;
  right: 0;
  box-shadow: 0 24px 50px #0e0a2833;
}

.partial-gray-background.home-1.alt {
  height: 200%;
  top: -30%;
  bottom: auto;
  right: -10%;
  transform: rotate(34deg);
}

.partial-gray-background.home-1.alt._2 {
  width: 40%;
  left: -12.2%;
  right: auto;
  transform: rotate(-34deg);
}

.place-above {
  z-index: 99;
  position: relative;
}

.split {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
  position: relative;
}

.split.more-column-space {
  grid-column-gap: 80px;
}

.green-span {
  background-color: var(--white-smoke);
  background-image: linear-gradient(216deg, var(--dark-slate-grey), var(--secondary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 10px;
}

.large-paragraph {
  font-size: 19px;
  line-height: 36px;
}

.large-paragraph.limit-small.nopb {
  color: var(--light-slate-grey);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1em;
}

.large-paragraph.limit-medium {
  margin-bottom: 2.5%;
}

.green-text {
  background-image: linear-gradient(260deg, var(--secondary), var(--dark-slate-grey));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 19px;
  font-weight: 500;
}

.green-text.black {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.green-text.priskalk {
  line-height: 32px;
}

.space-top-extra {
  margin-top: 120px;
}

.space-top-small {
  margin-top: 24px;
}

.space-top {
  margin-top: 40px;
}

.space-top.nopt {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1em;
}

.space-top-medium {
  margin-top: 60px;
}

.limit {
  max-width: 470px;
}

.limit-small {
  max-width: 400px;
}

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

.narrow-section.green-background {
  background-color: var(--midnight-blue);
  background-image: linear-gradient(#0000005e, #0000005e);
  padding-top: 15vh;
  padding-bottom: 15vh;
}

.narrow-section.pb {
  padding-top: 10vh;
  padding-bottom: 15vh;
}

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

.light-gray-background {
  background-color: var(--white-smoke-2);
}

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

.process-columns {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.zig-zag {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.faq-wrapper {
  padding-top: 24px;
}

.accordion-item {
  border-bottom: 1px solid var(--gainsboro);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.accordion-item-trigger {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  transition: color .2s;
  display: flex;
}

.accordion-item-trigger:hover {
  color: var(--dark-slate-grey);
}

.large-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.accordion-item-content {
  overflow: hidden;
}

.answer {
  padding-top: 12px;
}

.level-images {
  grid-column-gap: 22px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.corners {
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
}

.lightbox-link {
  background-image: url('../images/Untitled-design-38.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 450px;
  display: flex;
}

.stacked-buttons {
  align-items: center;
  margin-top: 28px;
  display: flex;
}

.stacked-buttons.no-space-top {
  margin-top: 0;
}

.stacked-buttons.no-space-top._2 {
  margin-bottom: 2.5%;
}

.gray-button {
  background-color: var(--white-smoke);
  color: var(--midnight-blue);
  border-radius: 10px;
  padding: 16px 24px;
  line-height: 24px;
  transition: color .2s;
}

.gray-button:hover {
  color: var(--dark-slate-grey);
}

.first-button {
  margin-right: 16px;
}

.green-background {
  background-color: var(--dark-slate-grey);
}

.white-text {
  color: var(--white);
}

.blog-grid {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gray-text {
  color: var(--light-slate-grey);
  display: block;
}

.form-block {
  background-color: var(--white);
  border-radius: 12px;
  width: 450px;
  padding: 60px;
}

.input {
  letter-spacing: 1px;
  background-color: #f5f6f7;
  border: 1px #000;
  border-radius: 10px;
  height: 56px;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  font-size: 16px;
  line-height: 32px;
}

.input::placeholder {
  color: #8081a499;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 32px;
}

.input.icon-padded {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 16px 16px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 56px;
}

.input.icon-padded.mail {
  background-image: url('../images/Mail-icon.svg');
}

.input.icon-padded.message {
  background-image: url('../images/comment-text.svg');
}

.input.icon-padded.phone {
  background-image: url('../images/Phone-icon-rounded.svg');
}

.form-input-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-input-wrap.space-top-small.gjem {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.checkbox-field {
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 0;
  font-weight: 500;
  display: flex;
}

.checkbox-field.kalkulator {
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
}

.checkbox {
  background-color: #f0f1f2;
  border-style: none;
  border-radius: 5px;
  width: 45px;
  height: 25px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 16px;
  padding-right: 0;
}

.checkbox.w--redirected-checked {
  background-color: var(--dark-slate-grey);
  background-size: 13px;
}

.checkbox.hack42-checkbox {
  width: 24px;
}

.checkbox.smaller {
  width: 25px;
}

.checkbox-label {
  font-weight: 500;
  line-height: 1.4em;
}

.checkbox-label.hack42-checkbox-label, .checkbox-label.alt {
  margin-left: -56px;
  padding-left: 60px;
}

.blue-button {
  background-color: var(--hover);
  border-radius: 10px;
  padding: 16px 24px;
  line-height: 24px;
  transition: background-color .2s;
}

.blue-button:hover {
  background-color: #161138;
}

.form-element {
  flex-direction: column;
  display: flex;
}

.headshot-wrapper {
  align-items: flex-start;
  display: flex;
}

.headshot-wrapper.space-top-small {
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
}

.headshot {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

.lighter-white-text {
  color: #fff9;
}

.small-text {
  font-size: 14px;
  line-height: 28px;
}

.footer._2 {
  background-color: var(--mint-cream);
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

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

.footer-title {
  font-size: 18px;
  line-height: 24px;
}

.footer-title.opacity {
  opacity: 0;
}

.footer-link {
  color: var(--light-slate-grey);
  line-height: 24px;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--dark-slate-grey);
}

.social-logos-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 0 auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: -32px;
  display: grid;
}

.social-icon-wrapper {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: background-color .2s;
  display: flex;
}

.social-icon-wrapper:hover {
  background-color: #f2f3f9;
}

.footer-bottom {
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: 14px;
  line-height: 28px;
  position: relative;
}

.footer-bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-bottom-content {
  color: #7a7b98;
  align-items: baseline;
  display: flex;
}

.webflow-link {
  margin-left: 12px;
  margin-right: 12px;
}

.space-top-tiny {
  margin-top: 16px;
}

.space-top-large {
  flex-direction: column;
  align-items: center;
  margin-top: 5vh;
  display: flex;
}

.marquee-wrapper {
  overflow: hidden;
}

.marquee-wrapper.space-top-medium {
  z-index: 1;
  margin-top: 30px;
  position: relative;
}

.marquee-wide-element {
  width: 4596px;
  display: flex;
}

.marquee-single-element {
  width: 50%;
  padding-left: 32px;
}

.marquee-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 351px 351px 351px 351px 351px 351px;
  grid-auto-columns: 351px;
  align-items: stretch;
  padding-top: 30px;
  padding-bottom: 30px;
  display: grid;
}

.marquee-card {
  box-shadow: 5px 0 40px 0 var(--shadow);
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  padding: 40px;
  display: flex;
}

.gray-background {
  background-color: var(--white-smoke);
}

.footer-thirds {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-thirds-top {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-thirds-middle {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
}

.curve-segment {
  background-image: url('../images/Gray-curve.svg');
  background-position: 50% 0;
  background-size: cover;
  min-height: 120px;
}

.curve-segment.flipped {
  background-image: url('../images/Untitled-design-3.svg');
}

.trusted-by-grid {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 30px;
  padding-bottom: 50px;
  display: grid;
}

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

.about-us-overlay {
  z-index: 9;
  margin-top: -200px;
  position: relative;
}

.about-us-overlay.tjenester {
  margin-top: -170px;
}

.about-us-overlay-images {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 48px;
}

.testimonial-thirds {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 80px;
  display: grid;
}

.team-member {
  background-image: url('../images/1_2.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
  min-height: 440px;
}

.team-member._2 {
  background-image: url('../images/2_2.jpg');
}

.team-member._3 {
  background-image: url('../images/3.jpg');
}

.team-member._4 {
  background-image: url('../images/4.jpg');
}

.team-member._5 {
  background-image: url('../images/5.jpg');
  background-position: 50% 0;
  min-height: 500px;
}

.team-member._5._1 {
  background-image: url('../images/1_2.jpg');
}

.team-member._5._2 {
  background-image: url('../images/2_2.jpg');
}

.team-member._5._3 {
  background-image: url('../images/3.jpg');
}

.team-member._5._4 {
  background-image: url('../images/4.jpg');
}

.team-member._5._0 {
  background-image: url('../images/Design-uten-navn-43.jpg');
}

.team-member._6 {
  background-image: url('../images/6.jpg');
}

.team-member._7 {
  background-image: url('../images/7.jpg');
}

.team-member._8 {
  background-image: url('../images/8.jpg');
}

.team-member._1 {
  background-image: url('../images/Design-uten-navn-43.jpg');
}

.limit-medium {
  max-width: 600px;
}

.big-white-card {
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 0;
  padding: 60px;
}

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

.contact-left {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.contact-left.limit {
  max-height: 90vh;
  margin-top: 45%;
}

.contact-left.limit.kontakt {
  max-height: none;
  margin-top: 0;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

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

.utility-page-form {
  text-align: left;
  flex-direction: column;
  display: flex;
}

.dropdown-list {
  background-color: var(--mint-cream);
  border-radius: 12px;
}

.dropdown-list.w--open {
  background-color: var(--white);
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 24px 50px #0e0a281a;
}

.dropdown-link {
  padding: 12px 16px;
  transition: color .2s;
}

.dropdown-link:hover, .dropdown-link.w--current {
  color: var(--dark-slate-grey);
}

.nav-button {
  background-color: var(--dark-slate-grey);
  background-image: linear-gradient(212deg, var(--dark-slate-grey), var(--secondary));
  border-radius: 12px;
  padding: 16px 24px;
  transition: background-color .2s;
}

.nav-button:hover {
  background-color: #3f6b79;
}

.nav-button.desktop {
  background-image: linear-gradient(216deg, var(--dark-slate-grey), var(--secondary));
  font-weight: 500;
  transition: all .3s ease-in, background-color .3s;
}

.nav-button.desktop:hover {
  background-color: var(--hover);
  background-image: none;
}

.landing-links-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.landing-links-wrapper._2 {
  grid-template-columns: 1fr 1fr;
}

.landing-link {
  background-color: var(--white);
  box-shadow: 0 5px 40px 0 var(--shadow);
  color: var(--midnight-blue);
  border-radius: 10px;
  padding-top: 48px;
  padding-left: 48px;
  padding-right: 48px;
  text-decoration: none;
  transition: color .2s, background-color .2s;
}

.landing-link:hover {
  color: var(--dark-slate-grey);
  background-color: #f0f1f2;
}

.landing-link.pb {
  padding: 40px;
}

.landing-link-image {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-top: 32px;
}

.success-message {
  background-color: var(--white);
  color: var(--dark-slate-grey);
  text-align: center;
  border-radius: 8px;
}

.error-message {
  border: 1px solid var(--gainsboro);
  background-color: var(--white);
  color: #af2426;
  border-radius: 8px;
}

.landing-hero {
  padding-top: 20vh;
  padding-bottom: 30vh;
}

.link {
  background-image: linear-gradient(260deg, var(--dark-slate-grey), var(--secondary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-decoration: line-through;
}

.image {
  width: 70%;
}

.heading {
  margin-top: 24px;
  font-size: 60px;
}

.div-block {
  align-items: center;
  margin-top: 10%;
  margin-bottom: 10%;
  display: flex;
}

.image-2 {
  width: 50px;
  height: 50px;
  margin-right: 5%;
}

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

.heading-2.nopb {
  margin-bottom: 0;
}

.collection-list-wrapper {
  margin-top: 5%;
}

.collection-list-wrapper.pb {
  margin-bottom: 5%;
  margin-left: 5%;
  margin-right: 5%;
}

.section-2 {
  background-color: var(--mint-cream);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding-top: 3%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hide {
  opacity: 0;
  display: none;
}

.button {
  color: var(--midnight-blue);
  background-color: #0000;
  padding: 8px 16px;
  transition: background-color .3s;
}

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

.collection-item {
  margin-bottom: 33px;
  line-height: 1em;
}

.heading-4 {
  font-size: 36px;
}

.div-block-3 {
  z-index: 0;
  background-color: var(--white);
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.heading-9 {
  margin-top: 15px;
  margin-bottom: 0;
}

.heading-10 {
  margin-top: 32px;
  margin-bottom: 0;
}

.heading-11 {
  margin-bottom: 0;
}

.alt {
  font-family: Plusjakartadisplay, sans-serif;
  font-weight: 500;
}

.div-block-5 {
  align-items: flex-end;
  display: flex;
}

.big-height {
  line-height: 65px;
}

.logo-footer {
  height: 60px;
}

.div-block-8 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.svg-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.svg-icon:hover {
  cursor: pointer;
}

.div-block-9 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.div-block-10 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 15px;
    line-height: 28px;
  }

  h1 {
    font-size: 48px;
    line-height: 72px;
  }

  h2 {
    font-size: 36px;
    line-height: 50px;
  }

  h3 {
    font-size: 28px;
    line-height: 40px;
  }

  h4 {
    font-size: 22px;
    line-height: 36px;
  }

  h5 {
    font-size: 18px;
    line-height: 28px;
  }

  h6 {
    font-size: 16px;
    line-height: 28px;
  }

  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .container.place-above.kalkulator {
    margin-top: 10%;
  }

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

  .dropdown-toggle {
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 16px;
  }

  .nav-right {
    align-items: center;
  }

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

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

  .partial-gray-background {
    width: 10%;
  }

  .partial-gray-background.home-1 {
    display: none;
  }

  .split {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .split.hide-tab {
    display: none;
  }

  .large-paragraph {
    font-size: 17px;
    line-height: 32px;
  }

  .green-text.hide-tab {
    display: none;
  }

  .space-top-extra {
    margin-top: 90px;
  }

  .space-top-small {
    margin-top: 22px;
  }

  .space-top {
    margin-top: 36px;
  }

  .space-top-medium {
    margin-top: 52px;
  }

  .limit {
    text-align: center;
  }

  .limit-small {
    text-align: center;
    max-width: 470px;
  }

  .zig-zag {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }

  .zig-zag.space-top-extra {
    margin-top: 30%;
  }

  .large-text {
    font-size: 18px;
    line-height: 28px;
  }

  .stacked-buttons {
    justify-content: center;
  }

  .blog-grid {
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .form-block {
    width: auto;
  }

  .input.icon-padded.mail.hack44-select, .input.icon-padded.mail.hackdirt, .input.tallinput {
    text-align: left;
  }

  .form-input-wrap.space-top-small.gjem {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .headshot-wrapper.space-top-small {
    justify-content: center;
  }

  .footer-column {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    text-align: center;
    grid-template-rows: auto;
    justify-items: center;
  }

  .footer-title.hideon {
    display: none;
  }

  .social-logos-wrapper {
    width: 100%;
  }

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

  .space-top-tiny {
    margin-top: 14px;
  }

  .space-top-large {
    margin-top: 72px;
  }

  .footer-thirds {
    grid-template-columns: 2fr;
  }

  .footer-thirds-top {
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
  }

  .footer-thirds-middle {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

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

  .testimonial-card.space-top {
    margin-top: 0;
  }

  .testimonial-thirds {
    grid-template-columns: 1fr;
  }

  .team-member._5 {
    background-position: 50% 10%;
  }

  .big-white-card {
    padding: 40px;
  }

  .contact-left.limit {
    background-color: var(--mint-cream);
    align-items: center;
    max-width: none;
    margin-top: 0%;
    position: fixed;
    inset: auto 0% 0%;
  }

  .contact-left.limit.kontakt.ta-kontakt {
    position: static;
  }

  .dropdown-list {
    justify-content: center;
  }

  .dropdown-list.w--open {
    position: relative;
  }

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

  .nav-button.desktop {
    display: none;
  }

  .nav-menu {
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 24px;
    display: flex;
    box-shadow: 23px 23px 32px #0e0a281a;
  }

  .dropdown {
    text-align: center;
    display: block;
  }

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

  .menu-button.w--open {
    color: var(--midnight-blue);
    background-color: #0000;
  }

  .landing-links-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .landing-link {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .landing-link-image {
    margin-top: 32px;
  }

  .landing-hero {
    padding-top: 120px;
    padding-bottom: 280px;
  }

  .div-block {
    justify-content: center;
  }

  .section-2 {
    height: auto;
  }

  .button {
    display: block;
  }

  .hack45-added-value {
    margin-bottom: 0;
  }

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

  .heading-11 {
    margin-bottom: 5%;
  }

  .big-height.hide-tab {
    margin-bottom: 0;
    margin-left: 5px;
    line-height: 50px;
  }

  .div-block-6, .div-block-7 {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }

  h1 {
    font-size: 40px;
    line-height: 64px;
  }

  h2 {
    font-size: 32px;
    line-height: 48px;
  }

  h3 {
    font-size: 24px;
    line-height: 36px;
  }

  h4 {
    font-size: 20px;
    line-height: 32px;
  }

  h5 {
    font-size: 16px;
    line-height: 24px;
  }

  h6 {
    font-size: 15px;
    line-height: 24px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .space-with-dotted-line.brand {
    border-right-style: none;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

  .section.light-gray-background.hideon {
    display: none;
  }

  .large-paragraph {
    font-size: 16px;
    line-height: 28px;
  }

  .space-top-extra {
    margin-top: 80px;
  }

  .space-top-small {
    margin-top: 20px;
  }

  .space-top {
    margin-top: 32px;
  }

  .space-top-medium {
    margin-top: 48px;
  }

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

  .process-columns {
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .large-text {
    font-size: 16px;
    line-height: 24px;
  }

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

  .form-block {
    padding: 40px;
  }

  .input::placeholder {
    font-size: 14px;
  }

  .form-input-wrap.space-top-small.gjem {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 10%;
  }

  .checkbox-field.kalk {
    text-align: center;
    flex-direction: column;
  }

  .checkbox-label.alt {
    margin-top: 10px;
    margin-left: 0;
    padding-left: 0;
  }

  .footer-bottom-wrapper {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

  .footer-bottom-content {
    margin-top: 24px;
  }

  .space-top-tiny {
    margin-top: 12px;
  }

  .space-top-large {
    margin-top: 64px;
  }

  .footer-thirds-top {
    flex-direction: column;
    align-items: stretch;
  }

  .trusted-by-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

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

  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-thirds {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .space-top-mobile {
    margin-top: 16px;
  }

  .landing-links-wrapper {
    grid-template-columns: 1fr;
  }

  .landing-link {
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .landing-link-image {
    margin-top: 10px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container.place-above.kalkulator {
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown-toggle {
    padding: 12px;
  }

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

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

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

  .level-images {
    grid-column-gap: 12px;
  }

  .lightbox-link {
    width: 100%;
  }

  .stacked-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .first-button {
    margin-bottom: 12px;
    margin-right: 0;
  }

  .form-block {
    padding-left: 24px;
    padding-right: 24px;
  }

  .form-input-wrap.space-top-small {
    grid-column-gap: 12px;
  }

  .form-input-wrap.space-top-small.gjem {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .checkbox-field {
    flex-direction: row;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .checkbox.smaller.kalk {
    margin-right: 0;
  }

  .footer-column {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .social-logos-wrapper {
    margin-top: 24px;
  }

  .footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-bottom-content {
    flex-direction: column;
  }

  .footer-bottom-content.horizontal {
    flex-direction: row;
  }

  .webflow-link {
    margin: 12px 0;
  }

  .footer-thirds-middle {
    grid-template-columns: 1fr;
    padding-bottom: 80px;
  }

  .about-us-overlay-images {
    grid-template-columns: 1fr;
  }

  .big-white-card {
    padding: 24px;
  }

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

  .dropdown-list.w--open {
    padding: 8px;
  }

  .dropdown-link {
    padding: 8px 12px;
  }

  .nav-menu {
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .landing-links-wrapper, .landing-links-wrapper._2 {
    grid-template-columns: 1fr;
  }

  .heading {
    font-size: 40px;
  }

  .image-5 {
    display: none;
  }

  .heading-12 {
    font-size: 30px;
  }

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

  .logo-footer {
    height: 50px;
  }
}

#w-node-_89025de7-a0d9-4ec0-5375-16d6353ac183-b8906243, #w-node-_89025de7-a0d9-4ec0-5375-16d6353ac185-b8906243, #w-node-_89025de7-a0d9-4ec0-5375-16d6353ac184-b8906243, #w-node-_122e146d-b8cb-93ec-2804-3d431b301ee8-b8906243, #w-node-_122e146d-b8cb-93ec-2804-3d431b301ece-b8906243, #w-node-ad4ad6dc-c357-b5b4-0f6b-82b64ff20aa1-b8906243 {
  place-self: center;
}

#w-node-d6872691-8aa6-15ff-73cb-4a68b7824d3b-b8906243 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-a4fe6261-8dee-8e78-9dc4-5f40c97bd206-51a4fd27, #w-node-d5349383-8b5a-ab51-ffcf-8e95d63a1536-51a4fd27, #w-node-_70f19771-67fa-4b1e-0347-dbe32951501d-51a4fd27 {
  align-self: start;
}

#w-node-_6033e135-6a11-cfc1-76b6-716dfd34ddef-51a4fd27 {
  justify-self: start;
}

#w-node-df82e0ef-a71e-0d6b-6844-4da4c1c71692-c1c7168f {
  justify-self: center;
}

#w-node-df82e0ef-a71e-0d6b-6844-4da4c1c716a4-c1c7168f {
  place-self: center;
}

#w-node-_0be2450f-d549-c768-b919-372ac9026884-c9026875, #w-node-_0be2450f-d549-c768-b919-372ac902689a-c9026875 {
  align-self: start;
}

#w-node-f9dbeef4-97d1-9fdd-892b-def5a0211789-a0211786 {
  place-self: center start;
}

#w-node-f9dbeef4-97d1-9fdd-892b-def5a02117b1-a0211786 {
  place-self: center end;
}

#w-node-_0206be19-6632-78b5-f6e1-f3102161ef6b-6c90624e {
  align-self: center;
}

#w-node-_193bfd23-e7bd-f918-6745-99916ba73470-6c90624e {
  align-self: start;
}

#w-node-a31a9726-f1b8-a946-bf60-824d067e06d7-1690625d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-c1a8d247-b681-6377-8d1f-5f815c5da0c4-1690625d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: auto;
}

#w-node-e60fb4b0-055b-ecb8-26ae-5836121ea6c8-1690625d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-fe07b474-7572-eda8-1406-3fd3f630ceb2-1690625d {
  align-self: auto;
}

#w-node-a4d2d56e-60fe-6747-1c0c-87b96b5a365b-1690625d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: auto;
}

#w-node-_2a28f24a-4095-448c-668e-e689f514f593-1690625d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-f8c43e86-5da6-e0db-3b28-b61b00b7c8a4-1690625d {
  align-self: auto;
}

#w-node-b12e6f09-ce68-6e79-b588-5c3db3493ccf-1690625d, #w-node-b12e6f09-ce68-6e79-b588-5c3db3493ce9-1690625d {
  place-self: center;
}

#w-node-_2f22f6ff-c67d-9fe5-3dce-36648368f99e-1690625d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-b12e6f09-ce68-6e79-b588-5c3db3493cf0-1690625d {
  place-self: center;
}

#w-node-e9dbfe8e-c3b9-4504-a4d6-8b60c755fa7c-7cf1195f {
  align-self: start;
}

#w-node-e9dbfe8e-c3b9-4504-a4d6-8b60c755fa94-7cf1195f, #Storrelse-Inntil-2.w-node-e9dbfe8e-c3b9-4504-a4d6-8b60c755fa98-7cf1195f, #Grad-Av-Skittenhet-3.w-node-e9dbfe8e-c3b9-4504-a4d6-8b60c755fa99-7cf1195f, #Antall-Etasjer-3.w-node-e9dbfe8e-c3b9-4504-a4d6-8b60c755fa9a-7cf1195f, #Vindusvask-3.w-node-e9dbfe8e-c3b9-4504-a4d6-8b60c755fa9b-7cf1195f, #Antall-Baderom.w-node-e9dbfe8e-c3b9-4504-a4d6-8b60c755fa9c-7cf1195f, #w-node-e9dbfe8e-c3b9-4504-a4d6-8b60c755faaf-7cf1195f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0206be19-6632-78b5-f6e1-f3102161ef6b-bf00de4a {
  align-self: start;
}

#w-node-_8fde2e69-0fb2-d04b-9082-66d0c65693c3-bf00de4a, #Grad-av-skittenhet.w-node-ffdac9ea-dbc1-f4e5-3cfa-9206a25bd1f5-bf00de4a, #Antall-etasjer.w-node-_0cff3aeb-5cd8-6c5c-7674-e23f43922411-bf00de4a, #Vindusvask.w-node-dea713af-09ce-2b96-b3e7-516a5c595b43-bf00de4a, #Antall-baderom.w-node-_584809a8-7ed8-cbad-7697-5a500c31b7a0-bf00de4a, #w-node-_9ac7d458-f849-2b86-cd1c-018bb48ef47c-bf00de4a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0206be19-6632-78b5-f6e1-f3102161ef6b-80ba4cb5 {
  align-self: center;
}

#w-node-_193bfd23-e7bd-f918-6745-99916ba73470-80ba4cb5 {
  align-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_8958eb65-887b-9cc5-ffe6-42f651a4fd2a-51a4fd27, #w-node-_6033e135-6a11-cfc1-76b6-716dfd34ddef-51a4fd27, #w-node-_6033e135-6a11-cfc1-76b6-716dfd34ddf0-51a4fd27 {
    justify-self: center;
  }

  #w-node-df82e0ef-a71e-0d6b-6844-4da4c1c71692-c1c7168f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-b4583a54-0249-1eb9-117a-e73835a00090-1690625d {
    justify-self: center;
  }

  #w-node-_2f22f6ff-c67d-9fe5-3dce-36648368f99e-1690625d {
    grid-area: 2 / 1 / 3 / 2;
    place-self: center;
  }

  #w-node-_0206be19-6632-78b5-f6e1-f3102161ef6b-bf00de4a {
    grid-area: 2 / 1 / 3 / 2;
    align-self: end;
  }

  #Email.w-node-_64a35a05-1fbb-d3bb-fb15-7d7f8efd3dea-bf00de4a, #Telefon.w-node-_1b1f3863-5e98-9070-c037-2d8143fe5f6d-bf00de4a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2f22f6ff-c67d-9fe5-3dce-36648368f99e-1690625d {
    grid-area: 2 / 1 / 3 / 2;
    place-self: center;
  }

  #Fornavn-3.w-node-_64a35a05-1fbb-d3bb-fb15-7d7f8efd3de8-bf00de4a, #Etternavn-3.w-node-_64a35a05-1fbb-d3bb-fb15-7d7f8efd3de9-bf00de4a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Dax';
  src: url('../fonts/Dax-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dax';
  src: url('../fonts/Dax-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dax';
  src: url('../fonts/Dax-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dax';
  src: url('../fonts/Dax-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dax';
  src: url('../fonts/Dax-Bold-Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Dax';
  src: url('../fonts/Dax-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dax';
  src: url('../fonts/Dax-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Dax';
  src: url('../fonts/Dax-Medium-Italic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}