html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  margin-top: var(--header-height);
  --margin: 20px;
  --beige: #b19574;
  --almost-black: #222222;
  --dark-green: #0e380e;
  --green: #329331;
  --neon-green: #b6fc50;
  --light-grey: #f2f2f2;
  --grey: #707070;
  --header-height: 155px;
  background-color: var(--almost-black);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
  body {
    --header-height: 120px;
  }
}
body.superadmin::before {
  display: block;
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  font-size: 17px;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  border-top-right-radius: 6px;
}
@media (min-width: 1200px) {
  body.superadmin::before {
    content: 'xxl';
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body.superadmin::before {
    content: 'xl';
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body.superadmin::before {
    content: 'l';
  }
}
@media (min-width: 551px) and (max-width: 767px) {
  body.superadmin::before {
    content: 'm';
  }
}
@media (min-width: 321px) and (max-width: 550px) {
  body.superadmin::before {
    content: 's';
  }
}
@media (max-width: 320px) {
  body.superadmin::before {
    content: 'xs';
  }
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}
.section-fullwidth > .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.section-fullwidth > .container > .row {
  margin-right: 0;
  margin-left: 0;
}
.section-fullwidth > .container > .row > .col-sm-12 {
  padding-right: 0;
  padding-left: 0;
}
.standard-btn {
  padding: 20px 35px;
  background-color: var(--neon-green);
  color: #0e380e;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
  border-radius: 1000px;
}
@media (max-width: 767px) {
  .standard-btn {
    padding: 20px 35px;
    font-size: 16px;
    font-weight: normal;
  }
}
@media (min-width: 1200px) {
  .section-header > .container,
  .section-footer > .container {
    width: auto;
    max-width: 1600px;
  }
}
.section-header p,
.section-footer p,
.section-header a,
.section-footer a {
  color: white;
}
.module-logo img {
  width: 200px;
}
body .section-header {
  background-color: #ffffff00;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: var(--header-height);
  position: fixed;
  inset: 0;
  bottom: auto;
  z-index: 11;
  padding: 30px 30px 20px 30px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  body .section-header {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  body .section-header > .container {
    flex-grow: 1;
  }
}
@media (min-width: 768px) {
  body .section-header > .container {
    transform: translateY(20px);
  }
}
body .section-header .col-sm-12 {
  display: flex;
  justify-content: space-between;
  gap: 2vw;
  padding-left: var(--margin);
  padding-right: var(--margin);
}
@media (min-width: 1200px), (min-width: 992px) and (max-width: 1199px) {
  body .section-header .col-sm-12 {
    gap: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  body .section-header .col-sm-12 {
    gap: 40px;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  body .section-header .col-sm-12 {
    padding-left: 0;
    padding-right: 0;
  }
}
body.template-standard .section-header,
body.template-tjenester .section-header,
body.template-standard-blogg .section-header {
  background-color: #424242;
  background-color: rgba(255, 255, 255, 0.15);
}
#header-menu-mobile {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  height: 100vh;
  overflow-y: auto;
  background-color: var(--dark-green);
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
  transform: translateX(50px);
  display: flex;
  flex-direction: column;
}
.mobile-menu-open #header-menu-mobile {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
#header-menu-mobile-close {
  background: transparent;
  border: none;
  margin: 23px 0;
  align-self: flex-end;
  padding: 18px 20px 7px 20px;
  margin-right: 30px;
}
.nav-mobile-services-group {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.nav-mobile-services-group a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px var(--margin);
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-left: none;
  border-right: none;
  font-size: 16px;
  line-height: 1;
}
.nav-mobile-services-group a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}
.nav-services-group a i {
  content: '';
  display: block;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  margin-bottom: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.nav-services-group .grunnarbeid i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/grunnarbeid.svg');
}
.nav-services-group .grunnarbeid i:after {
  content: '';
  width: 40px;
  height: 30px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/hover-grunn.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -2px;
  right: -25px;
  opacity: 0;
  transform: translateX(2px);
  transition: all 0.3s ease-in-out;
}
.nav-services-group .grunnarbeid:hover i:after {
  opacity: 1;
  transform: translateX(-2px);
}
.nav-services-group .infrastruktur i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/infrastruktur.svg');
}
.nav-services-group .infrastruktur:hover i {
  transform-origin: -300px;
}
.nav-services-group .overvann i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/overvann.svg');
  transform-origin: top;
}
.nav-services-group .overvann:hover i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/hover-overvann.svg');
  transform: scale(1.8);
}
.nav-services-group .sesongbasert i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/sesongbasert.svg');
  transform-origin: bottom right;
}
.nav-services-group .sesongbasert:hover i {
  transform: rotate(90deg);
}
.nav-services-group .grontanlegg i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/gr%C3%B8ntanlegg.svg');
}
.nav-services-group .grontanlegg:hover i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/hover-gront.svg');
  background-position: center;
  transform: scale(1.8);
}
.nav-mobile-services-group a i {
  content: '';
  display: block;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.nav-mobile-services-group .grunnarbeid i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/grunnarbeid.svg');
}
.nav-mobile-services-group .infrastruktur i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/infrastruktur.svg');
}
.nav-mobile-services-group .overvann i {
  width: 34px;
  height: 34px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/overvann.svg');
}
.nav-mobile-services-group .sesongbasert i {
  width: 34px;
  height: 34px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/sesongbasert.svg');
}
.nav-mobile-services-group .grontanlegg i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/gr%C3%B8ntanlegg.svg');
}
.nav-services-group {
  display: flex;
}
.nav-services-group a {
  width: 19%;
  color: white;
  flex-grow: 1;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.31);
  padding: 20px 10px;
  transition: 0.3s ease-in-out;
  text-align: center;
}
.nav-services-group a:last-child {
  border-right: none;
}
.nav-services-group a i,
.nav-services-group a span {
  transition: 0.3s ease-in-out;
  letter-spacing: 1px;
  font-weight: normal;
}
.nav-services-group a i {
  transform-origin: center bottom;
}
.nav-services-group a span {
  transform-origin: center top;
  padding-bottom: 5px;
}
.nav-services-group a:hover i,
.nav-services-group a:hover span {
  transform: scale(1.07);
  text-decoration: none;
}
.frontpage .nav-services-group a span {
  border-bottom: 5px solid transparent;
}
.frontpage .nav-services-group a:hover span {
  border-bottom: 5px solid var(--neon-green);
}
.topimg-section {
  margin-top: -185px;
}
.topimg-section > .container {
  width: 100%;
}
.topimg-section .topimg > p {
  margin: 0;
}
.topimg-section .topimg > p img {
  inset: 0;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  height: 683px;
  width: 100%;
}
@media (max-width: 767px) {
  .topimg-section .topimg > p img {
    height: 557px;
  }
}
.section-services-menu-frontpage {
  padding: 55px 0;
}
.section-services-menu-frontpage .container {
  width: 100%;
}
@media (max-width: 991px) {
  .section-services-menu-frontpage {
    display: none;
  }
}
.section-services-content {
  background-color: var(--almost-black);
  padding: 85px 0;
  position: relative;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .section-services-content {
    padding: 20px 0;
  }
}
.section-services-content::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background-color: white;
  opacity: 0.06;
}
@media (min-width: 1200px) {
  .section-services-content::before {
    right: calc(50% + 500px);
  }
}
@media (min-width: 1200px) and (max-width: 1640px) {
  .section-services-content::before {
    right: calc(100% - 120px - 10vw);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-services-content::before {
    right: calc(50% + 200px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-services-content::before {
    right: calc(50% + 150px);
  }
}
@media (max-width: 767px) {
  .section-services-content::before {
    display: none;
  }
}
.section-services-content > .container {
  z-index: 1;
}
@media (min-width: 1200px) {
  .section-services-content > .container {
    width: auto;
    max-width: 1600px;
  }
}
@media (min-width: 768px) {
  .section-services-content > .container > .row > .col-sm-3 {
    width: 30%;
    margin-right: 3%;
  }
  .section-services-content > .container > .row > .col-sm-9 {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .section-services-content > .container > .row > .col-sm-3 {
    width: 20%;
    margin-right: 3%;
  }
  .section-services-content > .container > .row > .col-sm-9 {
    width: 76%;
  }
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px) {
  .section-services-content > .container > .row .col-sm-6 {
    width: auto;
    float: none;
  }
}
.section-services-content .services-menu-header h3 {
  color: var(--green) !important;
}
@media (max-width: 767px) {
  .section-services-content .services-menu-header h3 {
    display: none;
  }
}
.section-services-content .nav-services-group {
  flex-direction: column;
  align-items: flex-start;
}
.section-services-content .nav-services-group a {
  display: block;
  border: none;
  align-items: flex-start;
  border-bottom: 5px solid transparent;
  padding: 20px 0 5px;
  margin-bottom: 10px;
}
.section-services-content .nav-services-group a.active,
.section-services-content .nav-services-group a:hover {
  border-color: var(--neon-green);
}
@media (max-width: 767px) {
  .section-services-content .nav-services-group {
    display: none;
  }
}
.section-services-content .page-content .container {
  width: auto;
}
.section-services-content .module-article h1,
.section-services-content .module-article h2,
.section-services-content .module-article h3,
.section-services-content .module-article h4,
.section-services-content .module-article h5,
.section-services-content .module-article p,
.section-services-content .module-article li {
  color: white;
}
.section-services-content .module-article h3 {
  line-height: 1.2;
  margin-bottom: 0.5em;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .section-services-content .module-article h3 {
    font-size: 20px;
  }
}
.module-article.checkmark {
  padding: 0 0 0 57px !important;
  position: relative;
  margin-bottom: 57px;
}
@media (max-width: 767px) {
  .module-article.checkmark {
    padding-left: 70px;
  }
}
@media (max-width: 767px) {
  .module-article.checkmark {
    margin-bottom: 30px;
  }
}
.module-article.checkmark h3::before {
  position: absolute;
  top: -7px;
  left: 0;
  content: '';
  display: inline-block;
  width: 38px;
  height: 38px;
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/green-check.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .module-article.checkmark h3::before {
    width: 30px;
    height: 30px;
    top: -2px;
  }
}
.nav-mobile-others {
  margin-top: 20px;
}
.nav-mobile-others p {
  display: flex;
  flex-direction: column;
}
.nav-mobile-others p a {
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px var(--margin);
  margin-left: 50px;
}
.module-header-nav {
  display: flex;
  align-items: center;
}
.module-header-nav .module-article > p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3vw;
  flex-grow: 1;
}
@media (min-width: 1200px) {
  .module-header-nav .module-article > p {
    gap: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .module-header-nav .module-article > p {
    gap: 60px;
  }
}
.module-header-nav .module-article > p a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .module-header-nav .module-article > p a {
    flex-shrink: 1;
  }
}
@media (min-width: 1200px) {
  .module-header-nav .module-article > p a {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .module-header-nav .module-article > p a {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .module-header-nav .module-article > p a {
    flex-basis: 300px;
    font-size: 14px;
  }
}
.module-header-nav-mobile button {
  margin-top: 10px;
}
#toggleMobileMenu {
  background: transparent;
  border: none;
}
.section-footer {
  background-color: var(--dark-green);
  padding: 80px 30px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .section-footer {
    padding: 50px 30px;
  }
}
@media (max-width: 767px) {
  .footer-logo-article {
    margin-bottom: 50px;
  }
}
.footer-logo-article p {
  font-weight: 300;
  font-size: 14px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-logo-article p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footer-logo-article p {
    font-size: 14px;
  }
}
.footer-logo-article p img {
  margin-bottom: 20px;
}
.footer-menu-article {
  padding-left: 130px;
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px) {
  .footer-menu-article {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .footer-menu-article {
    margin-bottom: 50px;
    padding-left: 0;
  }
}
.footer-menu-article p {
  font-weight: bold !important;
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-menu-article p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footer-menu-article p {
    font-size: 16px;
  }
}
.footer-menu-article p a {
  display: flex;
  padding: 9px 0;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .footer-menu-article p a {
    padding: 4px 0;
  }
}
@media (min-width: 768px) {
  .footer-menu-article p {
    columns: 2;
  }
}
.footer-links p {
  font-size: 16px;
  font-weight: lighter;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-links p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footer-links p {
    font-size: 16px;
  }
}
.footer-links p a {
  display: block;
  padding: 8px 0;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .footer-links p a {
    padding: 4px 0;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .body-mi243 .topimg p img {
    object-position: -290px;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .body-mi237 .topimg p img {
    object-position: -370px;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .body-mi255 .topimg p img {
    object-position: -270px;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .body-mi261 .topimg p img {
    object-position: -570px;
  }
}
.frontpage-topsection-img {
  position: relative;
  width: 100%;
  height: 683px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: -185px;
}
@media (max-width: 767px) {
  .frontpage-topsection-img {
    height: 95vh;
    text-align: center;
  }
}
.frontpage-topsection-img > p {
  position: absolute;
  inset: 0;
  margin: 0;
}
.frontpage-topsection-img > p::after {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, #222222, #22222200);
}
.frontpage-topsection-img > p > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.frontpage-topsection-img .text-area {
  z-index: 2;
  width: 1070px;
  padding: 0 15px;
  margin-bottom: 60px;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .frontpage-topsection-img .text-area {
    margin-bottom: 30px;
  }
}
.frontpage-topsection-img .text-area h1 {
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.7em;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2em;
}
@media (max-width: 767px) {
  .frontpage-topsection-img .text-area h1 {
    font-size: 30px;
  }
}
.frontpage-topsection-img .text-area p > a {
  padding: 20px 35px;
  background-color: var(--neon-green);
  color: #0e380e;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
  border-radius: 1000px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .frontpage-topsection-img .text-area p > a {
    padding: 20px 35px;
    font-size: 16px;
    font-weight: normal;
  }
}
.frontpage-topsection-img .text-area p > a:hover {
  background-color: var(--green);
  color: white;
  padding-right: 70px;
}
.frontpage-topsection-img .text-area p > a:hover:before {
  content: '';
  background-image: url(https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/white-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  position: absolute;
  right: 20px;
  top: 18px;
  width: 24px;
  height: 30px;
}
@media (min-width: 768px) {
  .om-oss-article ul {
    columns: 2;
  }
}
.om-oss-article h2 {
  color: var(--neon-green) !important;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 30px;
}
.find-landscape-gardner {
  display: flex;
  position: relative;
  padding: 20px;
  margin-bottom: 100px;
  text-decoration: none;
  background: transparent;
  justify-content: center;
  align-items: center;
}
.find-landscape-gardner::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: url('https://files.solvecms.com/anleggsgartner-paa-hjul/de421df/anlegg.jpg?v=1722934768997');
  background-size: cover;
  opacity: 0.2;
  border-radius: 1000px;
  z-index: -1;
  background-position-y: center;
}
.find-landscape-gardner:hover {
  text-decoration: none;
}
.find-landscape-gardner h2 {
  flex-shrink: 1;
  text-align: center;
  font-weight: 600;
  color: var(--neon-green);
  font-size: 45px;
  text-wrap: balance;
  margin-bottom: 0;
  text-decoration: none;
}
.find-landscape-gardner h2:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .find-landscape-gardner h2 {
    margin-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .find-landscape-gardner h2 {
    width: 200px;
  }
}
@media (max-width: 991px) {
  .find-landscape-gardner h2 {
    margin-bottom: 0;
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .find-landscape-gardner {
    padding: 30px;
  }
}
.find-landscape-gardner .find-locale-gardner-animplayer {
  width: 152px;
}
@media (max-width: 767px) {
  .find-landscape-gardner .find-locale-gardner-animplayer {
    width: 100px;
  }
}
.template-standard .find-landscape-gardner {
  margin-bottom: 20px !important;
}
.frontpage-articles ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.frontpage-articles ul:before,
.frontpage-articles ul:after {
  display: none;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .frontpage-articles ul {
    flex-direction: column;
  }
}
.frontpage-articles ul li {
  width: 40%;
  border: 0;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .frontpage-articles ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.frontpage-articles ul li .blogfeed-img {
  aspect-ratio: 1/1;
}
.frontpage-articles ul li .blogfeed-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.frontpage-articles ul li .blogfeed-info {
  padding: 40px 0 20px 0;
}
.frontpage-articles ul li .blogfeed-info .blogfeed-title1 h2 {
  color: white;
  font-size: 35px;
  margin-bottom: 20px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .frontpage-articles ul li .blogfeed-info .blogfeed-title1 h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
.frontpage-articles ul li .blogfeed-info .blogfeed-title2 {
  padding-left: 0;
}
.frontpage-articles ul li .blogfeed-info .blogfeed-title2 h3 {
  color: white;
  font-size: 16px;
  font-weight: lighter;
  line-height: 1.4em;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .frontpage-articles ul li .blogfeed-info .blogfeed-title2 h3 {
    margin-bottom: 10px;
  }
}
.frontpage-articles ul li .blogfeed-info .blogfeed-title2:after {
  content: 'Les mer';
  width: 100px;
  height: auto;
  display: block;
  color: var(--neon-green);
  margin-top: 30px;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-position: under;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .frontpage-articles ul li .blogfeed-info .blogfeed-title2:after {
    margin-top: 10px;
  }
}
.article421 {
  margin-top: 20px;
}
.article421 h4 a {
  color: white;
  font-size: 25px;
  text-decoration: underline;
  text-underline-position: under;
}
.map-section {
  background-color: #f2f2f2;
}
@media (min-width: 1200px) {
  .map-section > .container {
    width: auto;
    max-width: 1600px;
  }
}
#cc-map .col-sm-6 .heading {
  max-width: 600px;
}
@media (min-width: 768px) and (max-width: 991px) {
  #cc-map .col-sm-6 {
    width: auto;
    padding: 0;
    float: none;
  }
}
@media (min-width: 992px) {
  #cc-map .col-sm-6.right.map {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  #cc-map .col-sm-6.right.map {
    padding: 0;
  }
}
#cc-map .col-sm-6.left {
  padding: 80px 40px;
}
#cc-map .col-sm-6.left .stage-two.back-to-stage-1 {
  margin-bottom: 20px;
}
#cc-map .col-sm-6.left a {
  display: block;
}
#cc-map .col-sm-6.left a .back-text {
  color: var(--green);
  font-size: 20px;
  text-decoration: underline;
}
#cc-map .col-sm-6.left .all-stages {
  margin-bottom: 40px;
}
#cc-map .col-sm-6.left .all-stages .pre-text {
  font-weight: bold;
}
#cc-map .col-sm-6.left .stage-one a {
  display: inline-block;
}
#cc-map .col-sm-6.left .stage-two .pre-text {
  font-weight: bold;
}
@media (min-width: 992px) {
  #cc-map .col-sm-6.left {
    padding: 140px 40px;
  }
}
#cc-map h1 {
  color: var(--green);
  font-size: 45px;
  margin-bottom: 30px;
}
#cc-map .search input {
  margin-bottom: 15px;
}
#cc-map .search label {
  font-size: 16px;
}
#cc-map .pre-text {
  margin-bottom: 25px;
}
#cc-map .btn-primary {
  padding: 20px 35px;
  background-color: var(--green);
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
  border-radius: 1000px;
  border: 0;
}
@media (max-width: 767px) {
  #cc-map .btn-primary {
    padding: 20px 35px;
    font-size: 16px;
  }
}
#cc-map .all-stages .facilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}
#cc-map .all-stages .facilities .facility {
  margin-bottom: 10px;
  width: 49%;
}
@media (max-width: 767px) {
  #cc-map .all-stages .facilities .facility {
    width: 100%;
  }
}
#cc-map .all-stages .facilities .facility label {
  display: flex;
}
#cc-map .all-stages .facilities .facility label [type='checkbox'] {
  display: none;
}
#cc-map .all-stages .facilities .facility label .checkbox {
  border: 1px solid #c9d9e2;
  border-radius: 20px;
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0;
}
#cc-map .all-stages .facilities .facility label .checkbox i {
  transition: opacity 0.2s ease;
  display: block;
  transform-origin: 0 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(https://files.solvecms.com/vvseksperten-no3/51b9831/checkmark.svg?v=1668506835942);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 10px;
  height: 8px;
  opacity: 0;
}
#cc-map .all-stages .facilities .facility label .facility-name {
  margin-left: 10px;
  margin-top: -1px;
}
#cc-map .all-stages .facilities .facility.checked .checkbox i {
  opacity: 1;
}
.members-by-distance .member {
  padding: 15px 10px;
  display: grid;
  grid-template: 'member-name member-phone' 'member-address member-email';
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}
.members-by-distance .member:last-of-type {
  border: none;
}
.members-by-distance .member i {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8.5px;
  width: 21.5px;
  height: 21.5px;
}
.members-by-distance a:hover {
  text-decoration: none;
}
.members-by-distance .member-name {
  grid-area: member-name;
}
.members-by-distance .member-name p {
  font-size: 16px;
  color: black;
  font-weight: 600;
  margin-bottom: 0;
}
.members-by-distance .member-phone {
  grid-area: member-phone;
}
.members-by-distance .member-phone a {
  font-size: 14px;
  color: black;
}
.members-by-distance .member-phone a i {
  background-image: url('https://files.solvecms.com/vvseksperten-no3/51b9831/phone.svg?v=1668516386284');
  width: 16px;
  height: 16px;
}
.members-by-distance .member-address {
  grid-area: member-address;
}
.members-by-distance .member-address a {
  font-size: 14px;
  color: black;
}
.members-by-distance .member-address a i {
  background-image: url('https://tryggmedia-storage.s3.eu-west-1.amazonaws.com/anleggsgartner-pa-hjul/pin.svg');
  width: 10px;
  height: 13px;
}
.members-by-distance .member-email {
  grid-area: member-email;
}
.members-by-distance .member-email a {
  font-size: 14px;
  color: black;
}
.members-by-distance .member-email a i {
  background-image: url('https://files.solvecms.com/vvseksperten-no3/51b9831/mail.svg?v=1668516385995');
  width: 15px;
  height: 12px;
}
.vue-map-container {
  height: 80vh;
}
@media (min-width: 992px) {
  .vue-map-container {
    height: 80vh;
  }
}
.vue-map .gm-style-iw.gm-style-iw-c {
  background-color: white;
  border-radius: 5px;
  padding: 20px;
  color: var(--grey);
}
.vue-map .gm-style-iw.gm-style-iw-c a {
  text-decoration: underline;
  color: var(--grey);
}
.vue-map .gm-style-iw.gm-style-iw-c .title {
  font-size: 27px;
}
.vue-map .gm-style-iw.gm-style-iw-c .address,
.vue-map .gm-style-iw.gm-style-iw-c .contact-person,
.vue-map .gm-style-iw.gm-style-iw-c .facilities,
.vue-map .gm-style-iw.gm-style-iw-c .facilities-listed {
  font-size: 15px;
  line-height: 1.3em;
  margin-bottom: 10px;
}
.vue-map .gm-style-iw.gm-style-iw-c .street-address,
.vue-map .gm-style-iw.gm-style-iw-c .cp-phone {
  display: block;
}
.vue-map .gm-style-iw.gm-style-iw-c .prefix {
  font-weight: bold;
}
.vue-map .gm-style-iw.gm-style-iw-c .cp-name {
  margin: 0;
}
.vue-map .gm-style-iw.gm-style-iw-c .btn.go-to-member-page {
  padding: 10px 25px;
  background-color: var(--green);
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
  border-radius: 1000px;
  border: 0;
}
@media (min-width: 992px) {
  .vue-map {
    width: 50vw;
    transform: translateX(-10px);
  }
}
.module-article .admin-config {
  opacity: 0;
}
.module-article .admin-config a {
  color: black !important;
  border-radius: 4px;
}
.module-article .admin-config a:hover {
  color: white !important;
}
.module-article:hover .admin-config {
  opacity: 1;
}
.col-sm-12 {
  min-height: 0;
}
.mce-menu {
  position: fixed !important;
}
body .module-article h1,
body .module-article h2,
body .module-article h3,
body .module-article h4,
body .module-article h5,
body .module-article li {
  line-height: 1.4;
}
body .module-article li {
  font-weight: lighter;
}
body .module-article p {
  line-height: 1.6;
  font-weight: lighter;
}
body .module-article h1 {
  font-weight: 600;
  color: var(--neon-green);
  text-transform: uppercase;
}
body .module-article .emphasized-link a {
  padding: 27px 45px;
  background-color: var(--neon-green);
  font-size: 20px;
  display: inline-block;
}
body .module-article ul {
  margin-bottom: 20px;
}
body .module-article ul li {
  line-height: 1.4em;
  margin-bottom: 10px;
}
body .module-article ul li:last-child {
  margin-bottom: 0;
}
body .module-article ul li::marker {
  color: var(--neon-green);
}
body .module-article p {
  min-height: 1px;
}
.section-darkgrey {
  padding: 200px 0;
}
@media (max-width: 767px) {
  .section-darkgrey {
    padding: 50px 0 20px 0 !important;
  }
}
.frontpage .section-darkgrey {
  padding-bottom: 50px;
}
.section-darkgrey .module-article h1,
.section-darkgrey .module-article h2,
.section-darkgrey .module-article h3,
.section-darkgrey .module-article h4,
.section-darkgrey .module-article h5,
.section-darkgrey .module-article li,
.section-darkgrey .module-article p {
  color: white;
}
.section-darkgrey .module-article h1 {
  color: var(--neon-green);
  font-weight: 600;
}
@media (min-width: 768px) {
  .om-oss-article ul {
    columns: 2;
  }
}
.om-oss-article ul li::marker {
  color: var(--neon-green);
}
.page-content .section-standard {
  padding: 60px 0;
}
.page-content .section-standard .module-article h2,
.page-content .section-standard .module-article h3,
.page-content .section-standard .module-article p,
.page-content .section-standard .module-article li {
  color: white;
}
.page-content .section-standard .module-article h1 {
  color: var(--neon-green);
}
@media (max-width: 767px) {
  .page-content .section-standard {
    padding: 20px 0 30px 0;
  }
}
.module-employeelist {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.module-employeelist::before,
.module-employeelist::after {
  display: none !important;
}
.module-employeelist li {
  width: 21%;
  margin-bottom: 40px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-employeelist li {
    width: 98%;
  }
}
.module-employeelist .facehugger {
  background-color: white;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  overflow: hidden;
  margin: 0 auto 10px;
}
.module-employeelist .facehugger.no-img {
  display: none;
}
.module-employeelist .facehugger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.module-employeelist .employee-details {
  text-align: center;
}
.module-employeelist .employee-details * {
  color: white;
  font-size: 18px;
  line-height: 1.7em;
  font-weight: 300;
}
.module-employeelist .employee-details h1 {
  color: var(--neon-green);
  font-size: 22px;
  font-weight: 600;
}
.module-employeelist .employee-details h1 span {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
.module-employeelist .employee-details h2 {
  color: white;
  font-size: 16px;
}
.module-employeelist .employee-details p {
  color: white;
  font-size: 16px;
}
.module-employeelist .employee-details .email {
  text-decoration: underline;
  text-underline-position: under;
  font-size: 16px;
}
.module-employeelist .employee-details a {
  color: white;
}
.module-employeelist .employee-details a:hover {
  color: white;
}
.light-bg {
  background-color: var(--light-grey);
  padding: 100px 0;
}
@media (max-width: 767px) {
  .light-bg {
    padding: 80px 0;
  }
}
.light-bg .module-article h1 {
  color: var(--almost-black) !important;
  text-transform: none !important;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-blogfeed.more-articles {
    padding: 0 20px;
  }
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .body-mi231 .module-blogfeed.more-articles {
    padding: 0;
  }
}
.module-blogfeed.more-articles h4 {
  color: var(--neon-green);
  font-weight: bold;
  font-size: 25px;
  margin-top: 60px;
}
.module-blogfeed.more-articles ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.module-blogfeed.more-articles ul:before,
.module-blogfeed.more-articles ul:after {
  display: none;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-blogfeed.more-articles ul {
    flex-direction: column;
  }
}
.module-blogfeed.more-articles ul li {
  width: 100%;
  border: 0;
  border-bottom: 0.5px solid #707070;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.module-blogfeed.more-articles ul li:last-child {
  border-bottom: 0;
  margin-bottom: 20px;
}
.module-blogfeed.more-articles ul li .blogfeed-img {
  aspect-ratio: 1/1;
  width: 25%;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-blogfeed.more-articles ul li .blogfeed-img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.module-blogfeed.more-articles ul li .blogfeed-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.module-blogfeed.more-articles ul li .blogfeed-info {
  width: 70%;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-blogfeed.more-articles ul li .blogfeed-info {
    width: 100%;
  }
}
.module-blogfeed.more-articles ul li .blogfeed-info .blogfeed-title1 h2 {
  color: white;
  font-size: 25px;
  margin-bottom: 20px;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-blogfeed.more-articles ul li .blogfeed-info .blogfeed-title1 h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.module-blogfeed.more-articles ul li .blogfeed-info .blogfeed-title2 {
  padding-left: 0;
}
.module-blogfeed.more-articles ul li .blogfeed-info .blogfeed-title2 h3 {
  color: white;
  font-size: 16px;
  line-height: 1.4em;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .module-blogfeed.more-articles ul li .blogfeed-info .blogfeed-title2 h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.module-blogfeed.more-articles ul li .blogfeed-info .blogfeed-title2:after {
  content: 'Les mer';
  width: 170px;
  height: auto;
  display: block;
  background-color: var(--neon-green);
  padding: 20px 35px;
  color: #0e380e;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
  border-radius: 1000px;
  cursor: pointer;
  text-align: center;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .module-blogfeed.more-articles ul li .blogfeed-info .blogfeed-title2:after {
    padding: 20px 35px;
    font-size: 16px;
    font-weight: normal;
  }
}
.smal-bg {
  max-width: 1000px;
  margin: 0 auto;
}
.template-standard-blogg .module-header {
  margin-top: 100px;
}
.template-standard-blogg .module-header h1 {
  text-align: center;
  color: white;
  font-weight: 600;
}
.template-standard-blogg .module-blogmeta {
  background-color: transparent;
  color: white;
  margin: 0 auto;
  text-align: center;
  display: block;
}
.template-standard-blogg .module-blogmeta .blogmeta-info {
  float: none;
}
.template-standard-blogg .module-blogmeta .blogmeta-info .blogmeta-written {
  margin-bottom: 5px;
}
.template-standard-blogg .page-content {
  padding-bottom: 40px;
}
.template-standard-blogg .page-content .section {
  padding: 40px 0;
}
.template-standard-blogg .page-content .section .module-article h1,
.template-standard-blogg .page-content .section .module-article h2,
.template-standard-blogg .page-content .section .module-article h3,
.template-standard-blogg .page-content .section .module-article h4,
.template-standard-blogg .page-content .section .module-article h5,
.template-standard-blogg .page-content .section .module-article li,
.template-standard-blogg .page-content .section .module-article p {
  color: white;
}
.module-formbuilder.medlem {
  max-width: 1000px;
}
.module-formbuilder.medlem .form-field-freetext {
  margin-bottom: 30px;
}
.module-formbuilder.medlem textarea {
  min-height: 100px;
}
.module-formbuilder.medlem .btn.submit {
  padding: 17px 55px;
  background-color: var(--green);
  color: white;
  text-decoration: none;
  font-size: 20px;
  display: inline;
  margin-top: 1em;
  margin-bottom: 1em;
  border-radius: 1000px;
  border: 0;
  float: right;
}
@media (max-width: 767px) {
  .module-formbuilder.medlem .btn.submit {
    padding: 20px 35px;
    font-size: 16px;
  }
}
.article505 {
  padding: 60px 0;
  text-wrap: balance;
}
.article505 img {
  max-width: 100px;
}
hr {
  border-top: 0.5px solid #707070;
}
.svart-bg {
  padding: 30px 0 30px 0;
}
.svart-bg .container {
  max-width: 1200px;
}
.svart-bg .module-article h4,
.svart-bg .module-article h5,
.svart-bg .module-article h6,
.svart-bg .module-article p,
.svart-bg .module-article li,
.svart-bg .module-article td {
  color: white;
}
.svart-bg .module-article h2,
.svart-bg .module-article h3 {
  color: var(--neon-green);
}
.frontpage .svart-bg,
.body-mi219 .svart-bg {
  padding: 0;
}
.frontpage .svart-bg .find-landscape-gardner,
.body-mi219 .svart-bg .find-landscape-gardner {
  display: none;
}
.knapp a {
  padding: 20px 35px;
  background-color: var(--neon-green);
  color: var(--dark-green);
  text-decoration: none;
  font-size: 20px;
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
  border-radius: 1000px;
  border: 0;
}
@media (max-width: 767px) {
  .knapp a {
    padding: 20px 35px;
    font-size: 16px;
  }
}
.page-content .section .module-article {
  padding: 20px 0;
}
.module-formbuilder.befaring #find-nearest-link {
  text-decoration: underline;
  text-underline-position: under;
  color: var(--dark-green);
  font-size: 20px;
  margin-top: 30px;
  display: block;
}
.module-formbuilder.befaring textarea {
  min-height: 160px;
}
.module-formbuilder.befaring .btn.submit {
  padding: 17px 55px;
  background-color: var(--green);
  color: white;
  text-decoration: none;
  font-size: 20px;
  display: inline;
  margin-top: 1em;
  margin-bottom: 1em;
  border-radius: 1000px;
  border: 0;
  float: right;
}
@media (max-width: 767px) {
  .module-formbuilder.befaring .btn.submit {
    padding: 20px 35px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .module-formbuilder.befaring .row {
    display: flex;
    flex-direction: column-reverse;
  }
}
.template-tjenester .find-landscape-gardner,
.template-standard .find-landscape-gardner {
  margin-top: 20px;
  margin-bottom: 100px;
}
.template-tjenester .find-landscape-gardner:before,
.template-standard .find-landscape-gardner:before {
  z-index: 0;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .template-tjenester .find-landscape-gardner,
  .template-standard .find-landscape-gardner {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}
.template-tjenester .section-services-content .col-sm-3 .services-menu-header,
.template-tjenester .section-services-content .col-sm-3 .nav-services-group {
  padding-left: 20px;
}
.template-standard-blogg .find-landscape-gardner {
  margin-top: 80px;
}
.template-standard-blogg .find-landscape-gardner:before {
  z-index: 0;
}
@media (min-width: 551px) and (max-width: 767px), (min-width: 321px) and (max-width: 550px), (max-width: 320px) {
  .body-mi598 h1 {
    font-size: 27px;
  }
}
.page-content .section .module-article.start {
  padding: 60px 0 30px 0;
}
.page-content .section .module-article.liste {
  padding-bottom: 60px;
}
.page-content .section .module-article.hvit {
  color: white;
}
