<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: black;
  font-family: "Roboto", sans-serif;
}

main {
  background-color: #fff !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  font-size: 0.9rem;
}

h1 {
  margin-top: 15px;
  margin-bottom: 25px;
  color: #34495e;
}

h4 {
  font-weight: 400;
}

.navbar-item:hover {
  background-color: #ebeced !important;
}

.navbar-dropdown {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.nav-is-active {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.navbar {
  transition: 0.5s !important;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0px 1px 3px 0px transparent;
  transform: translateY(-100%);
}

.navbar.fixed {
  top: auto;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.navbar.fixed.scroll-show {
  transform: translateY(0%);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

.top {
  background-color: rgba(255, 255, 255, 0);
  transform: translateY(0%);
}

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

.logo-img img {
  width: 35%;
}

.title:not(:last-child) {
  margin-bottom: 0.5rem !important;
}

.has-dropdown:hover a {
  background-color: transparent !important;
}

.custom-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bolig-title {
  display: flex;
}

.bolig-title h1 {
  font-weight: 100;
  font-size: 4rem;
}

.wp-custom-header img {
  width: 100%;
}

.custom-logo {
  padding-top: 100px;
}

.custom-logo img {
  margin: 0 auto;
  max-width: 40%;
}

form {
  padding: 1rem 2.5rem;
}

.modal-content {
  background-color: #fff;
  border-radius: 0.2rem;
  width: 50vw;
  opacity: 1;
  transform: translateX(10%);
  transition: 0.2s ease-in-out;
}

.modal-content .modal-header {
  padding: 1rem 2.5rem;
  background-color: #f3f3f3;
}

.modal-content .modal-header h2 {
  font-size: 1.2rem;
  font-weight: bold;
}

#form-message {
  display: block;
  margin-top: 0.25rem;
}

.success {
  color: #48c774;
}

.danger {
  color: #f14668;
}

.aside-sticky {
  position: sticky;
  top: 0;
  height: 100%;
  padding-top: 4rem;
}

.modal-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 2rem;
  cursor: pointer;
  height: 3rem;
  width: 3rem;
  background-color: #f14668;
  border-radius: 3rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-btn i {
  color: #fff;
  font-size: 1.25rem;
}

.contact-modal {
  visibility: hidden;
  position: fixed;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  transition: 0.2s ease-in-out;
}

.fade-in {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.4);
}

.scale {
  transform: translateX(0%);
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.messages {
  padding-top: 1rem;
}

.saved-messages {
  background-color: #f3f3f3;
  border-radius: 0.2rem;
  margin: 1rem;
  padding: 0.5rem;
}

[data-modal-open="false"] {
  visibility: hidden;
  opacity: 0;
}

[data-moda-open="true"] {
  visibility: visible;
  opacity: 1;
}

.bestille {
  position: relative;
  top: 20px;
  text-align: center;
}

.price-info {
  padding: 1.25rem;
  display: block;
  overflow-y: hidden;
}

.full {
  padding: 1.25rem;
  display: none;
  overflow-y: hidden;
}

.icon {
  display: none;
}

.icon a {
  color: #333;
}

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

.section-header {
  text-transform: uppercase;
  font-size: 1.5rem;
}

.section-header h1 {
  font-weight: 600 !important;
  margin-top: 0 !important;
}

.down-arrow {
  position: absolute;
  bottom: 3rem;
  left: calc(50vw - 2rem);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.down-arrow a {
  padding: 1.5rem;
  transform: translate(-50%, -50%);
}

.fas.fa-chevron-down {
  font-size: 1.75rem;
}

.bounce {
  -moz-animation: bounce 3s infinite;
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
  }
  -moz-transform: translateY(0);
  transform: translateY(0);
  40% {
  }
  -moz-transform: translateY(-30px);
  transform: translateY(-30px);
  60% {
  }
  -moz-transform: translateY(-15px);
  transform: translateY(-15px);
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
  }
  -webkit-transform: translateY(0);
  transform: translateY(0);
  40% {
  }
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  60% {
  }
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.projects {
  padding-top: 40px;
}

.project-post {
  border-radius: 0.1rem;
  box-shadow: 0.1rem 0.1rem 0.5rem 0.1rem rgba(0, 0, 0, 0.1);
}

.project-post img {
  border-top-left-radius: 0.2rem;
  border-top-right-radius: 0.2rem;
}

.project-post .project-img img {
  height: 25vw;
  width: 100%;
}

.project-post .project-content {
  padding: 1.25rem;
}

.project-post .project-title {
  margin: 1rem 0 1rem 0;
}

.project-post .project-title h2 {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}

.project-post .project-excerpt {
  margin-bottom: 1rem;
}

.project-post .footer-post {
  display: flex;
}

.project-post .footer-post .project-tags {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.project-post .footer-post .read-more-btn {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
}

.project-post .footer-post .read-more-btn a {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  margin-left: auto;
  border: 1px solid #9c9c9c;
  border-radius: 0.2rem;
  background-color: #ebeced;
  color: #9c9c9c;
  text-decoration: none;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
}

.row {
  display: flex;
  flex-flow: row wrap;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #a2aa98;
  background-color: #ebeced;
  text-decoration: none;
  cursor: pointer;
  margin: 20px;
}

#load-more {
  margin: auto;
}

.show {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 800px;
  padding: 14px 16px;
  border-radius: 5px;
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-content::before {
  content: "";
  width: 20px;
  height: 20px;
  border-top-left-radius: 3px;
  position: absolute;
  background-color: #f1f1f1;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.bestille-befaring {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.show {
  display: block;
}

.tjenester {
  max-width: 750px;
  margin: auto;
  margin: 50px auto;
}

.tjenester p {
  font-size: 1.2rem;
}

#priser {
  max-width: 1000px;
  margin: auto;
}

.price-panel {
  flex: 50%;
}

.price-box {
  display: flex;
  flex-direction: column;
  border: #9c9c9c 1px solid;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

.price-header {
  padding: 14px 16px;
  background-color: #ebeced;
}

.price-header .read-more-btn {
  display: flex;
  justify-content: center;
}

.price-header .read-more-btn a {
  border: 1px solid #9c9c9c;
  border-radius: 0.2rem;
  background-color: #ebeced;
  color: #9c9c9c;
  text-decoration: none;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
}

.read-more-btn a:hover {
  background-color: #9c9c9c;
  color: #ebeced;
  transition: 0.3s;
}

.price-header h3 {
  margin: 15px;
}

/* .price-body {
  border-bottom: #a2aa98 1px solid;
} */

.price-column {
  display: flex;
}

.price-footer {
  padding: 14px 16px;
  border-top: #a2aa98 1px solid;
  margin-top: auto;
}

section .om {
  background-color: #ecf0f1;
}

section .om .columns {
  margin-right: 0 !important;
}

section .om .columns .column {
  padding: 0 !important;
}

section .om img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
}

section .om-text {
  padding: 1.75rem 5rem;
}

section .om-text p {
  word-break: normal;
}

section .om-text .om-oss-text {
  font-size: 1rem;
}

.widget_media_image img {
  object-fit: cover;
  width: 100%;
  max-height: 400px;
  height: fit-content !important;
}

.about p {
  width: 80%;
  margin: auto;
}

.txt {
  margin-top: 60px;
}

.container-about {
  background-color: #ecf0f1;
  margin: 20px auto;
}

.column img {
  height: 30vw;
  object-fit: cover;
}

.row-gallery img:hover {
  opacity: 0.5;
}

#kontakt {
  max-width: 1000px;
  margin: auto;
}

.card {
  flex: 50%;
}

.card-holder {
  max-width: 70%;
  margin: 25px auto;
  border: 1px solid #a2aa98;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

.contact-footer {
  margin: 20px;
}

.card-holder img {
  max-width: 100%;
}

.max-width {
  max-width: 1000px;
  margin: auto;
}

.project-single-post {
  max-width: 800px;
  margin: auto;
}

.project-single-post p {
  font-size: 1rem;
  margin: 1rem 0 1rem 0;
}

.project-single-post h2 {
  font-weight: 600;
  font-size: 1.2rem;
}

.project-card {
  border: 1px solid #a2aa98;
  background-color: #ebeced;
  margin: 10px;
}

.post-img img {
  max-width: 100%;
}

.post-txt {
  padding: 20px;
  text-align: left;
}

.post-txt h3 {
  margin-bottom: 20px;
}

.post-info {
  display: flex;
  margin-top: 25px;
  align-items: baseline;
}

.post-read-more-btn {
  text-align: right;
  flex: 1;
}

.entry-date {
  color: #7f8c8d;
  flex: 1;
}

.entry-date i {
  color: #7f8c8d;
}

.widget_recent_entries h3 {
  padding: 14px 16px;
  background-color: #ebeced;
}

.recent-posts {
  text-align: left;
  flex: 20%;
}

.recent-posts ul li {
  list-style: none;
}

.recent-posts ul li {
  display: block;
  color: #333;
  width: 100%;
  padding: 8px 10px;
  text-align: left;
}

.post-date {
  display: block;
}

footer {
  padding: 20px;
  background: #ecf0f1;
  line-height: 2;
}

.social-icons {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
}

.social-icons i {
  margin: 0.2rem;
}

@media screen and (max-width: 768px) {
  .column img {
    height: 70vw;
  }
  .project-img img {
    height: 70vw !important;
    width: 100%;
  }
  .logo-img {
    text-align: center;
  }
  .logo-img img {
    width: 60%;
  }
  .bolig-title {
    display: flex;
  }
  .bolig-title h1 {
    font-weight: light;
    font-size: 2.5rem;
  }
  .modal-content {
    width: 95vw;
  }
  .modal-btn {
    margin: 1rem;
  }
  section .om-text {
    padding: 1.75rem;
  }
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: transparent !important;
    transition: 0.5s;
  }
  .navbar-menu .is-active {
    transition: 0.5s;
  }
  .navbar-menu .navbar-item {
    color: #0f0f0f !important;
  }
  .navbar-menu .overlay {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  .navbar-menu .overlaya:hover .overlaya:focus {
    color: #f1f1f1;
  }
  .single-post-setup {
    flex-wrap: wrap;
  }
}
</pre></body></html>