@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  cursor: default;
}

body.login {
  color: white;
  background-color: #333333;
}

body::after {
  display: none;
}

@media only screen and (min-width: 0) {
  body::after {
    content: "mobile";
  }
}

@media only screen and (min-width: 520px) {
  body::after {
    content: "tablet";
  }
}

@media only screen and (min-width: 960px) {
  body::after {
    content: "desktop";
  }
}

img {
  display: inline-block;
  vertical-align: middle;
  height: auto;
  max-width: 100%;
}

:focus {
  outline: dotted thin;
}

:hover,
:active {
  outline: 0;
}

::-moz-selection {
  color: #ffffff;
  background-color: #000000;
}

::selection {
  color: #ffffff;
  background-color: #000000;
}

.grid {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  align-content: flex-start;
  width: 100%;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
}

.grid.-center {
  align-items: center;
  justify-content: center;
  align-content: center;
}

.grid.-stretch {
  align-items: stretch;
}

.grid.-fluid {
  max-width: none;
}

@media only screen and (min-width: 0) {
  .grid.-pad {
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media only screen and (min-width: 520px) {
  .grid.-pad {
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media only screen and (min-width: 960px) {
  .grid.-pad {
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media only screen and (min-width: 0) {
  .grid.-pad > .grid__column {
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media only screen and (min-width: 520px) {
  .grid.-pad > .grid__column {
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media only screen and (min-width: 960px) {
  .grid.-pad > .grid__column {
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media screen and (max-width: 768px) {
  .grid.-padFix {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media only screen and (min-width: 0) {
  .grid.-collapse {
    margin-right: -10px;
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}

@media only screen and (min-width: 520px) {
  .grid.-collapse {
    margin-right: -10px;
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}

@media only screen and (min-width: 960px) {
  .grid.-collapse {
    margin-right: -10px;
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}

.grid__column {
  width: 100%;
  display: flex;
  flex-flow: column wrap;
}

main > .grid__column {
  -webkit-animation: fadeInUp 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
          animation: fadeInUp 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

main > .grid__column:nth-child(1) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}

main > .grid__column:nth-child(2) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}

main > .grid__column:nth-child(3) {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}

main > .grid__column:nth-child(4) {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}

main > .grid__column:nth-child(5) {
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}

main > .grid__column:nth-child(6) {
  -webkit-animation-delay: 1200ms;
          animation-delay: 1200ms;
}

main > .grid__column:nth-child(7) {
  -webkit-animation-delay: 1400ms;
          animation-delay: 1400ms;
}

main > .grid__column:nth-child(8) {
  -webkit-animation-delay: 1600ms;
          animation-delay: 1600ms;
}

main > .grid__column:nth-child(9) {
  -webkit-animation-delay: 1800ms;
          animation-delay: 1800ms;
}

@media screen and (max-width: 768px) {
  .grid__column {
    width: 100% !important;
  }
}

.grid__column.-noPad {
  padding-right: 0;
  padding-left: 0;
}

@media only screen and (min-width: 0) {
  .grid__column.-mobile-1 {
    width: "8.3333333333%";
  }

  .grid__column.-mobile-2 {
    width: "16.6666666667%";
  }

  .grid__column.-mobile-3 {
    width: "25%";
  }

  .grid__column.-mobile-4 {
    width: "33.3333333333%";
  }

  .grid__column.-mobile-5 {
    width: "41.6666666667%";
  }

  .grid__column.-mobile-6 {
    width: "50%";
  }

  .grid__column.-mobile-7 {
    width: "58.3333333333%";
  }

  .grid__column.-mobile-8 {
    width: "66.6666666667%";
  }

  .grid__column.-mobile-9 {
    width: "75%";
  }

  .grid__column.-mobile-10 {
    width: "83.3333333333%";
  }

  .grid__column.-mobile-11 {
    width: "91.6666666667%";
  }

  .grid__column.-mobile-12 {
    width: "100%";
  }
}

@media only screen and (min-width: 520px) {
  .grid__column.-tablet-1 {
    width: "8.3333333333%";
  }

  .grid__column.-tablet-2 {
    width: "16.6666666667%";
  }

  .grid__column.-tablet-3 {
    width: "25%";
  }

  .grid__column.-tablet-4 {
    width: "33.3333333333%";
  }

  .grid__column.-tablet-5 {
    width: "41.6666666667%";
  }

  .grid__column.-tablet-6 {
    width: "50%";
  }

  .grid__column.-tablet-7 {
    width: "58.3333333333%";
  }

  .grid__column.-tablet-8 {
    width: "66.6666666667%";
  }

  .grid__column.-tablet-9 {
    width: "75%";
  }

  .grid__column.-tablet-10 {
    width: "83.3333333333%";
  }

  .grid__column.-tablet-11 {
    width: "91.6666666667%";
  }

  .grid__column.-tablet-12 {
    width: "100%";
  }
}

@media only screen and (min-width: 960px) {
  .grid__column.-desktop-1 {
    width: "8.3333333333%";
  }

  .grid__column.-desktop-2 {
    width: "16.6666666667%";
  }

  .grid__column.-desktop-3 {
    width: "25%";
  }

  .grid__column.-desktop-4 {
    width: "33.3333333333%";
  }

  .grid__column.-desktop-5 {
    width: "41.6666666667%";
  }

  .grid__column.-desktop-6 {
    width: "50%";
  }

  .grid__column.-desktop-7 {
    width: "58.3333333333%";
  }

  .grid__column.-desktop-8 {
    width: "66.6666666667%";
  }

  .grid__column.-desktop-9 {
    width: "75%";
  }

  .grid__column.-desktop-10 {
    width: "83.3333333333%";
  }

  .grid__column.-desktop-11 {
    width: "91.6666666667%";
  }

  .grid__column.-desktop-12 {
    width: "100%";
  }
}

.-gridFix {
  display: block;
}

html {
  font-family: futura-pt, Futura, Georgia, sans-serif;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 400;
  color: #464646;
  font-size: 1.037037037rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

@media only screen and (min-width: 520px) {
  html {
    font-size: 1.1851851852rem;
  }
}

@media only screen and (min-width: 960px) {
  html {
    font-size: 1.3333333333rem;
  }
}

body {
  line-height: 1.3;
}

a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
}

b,
strong {
  font-weight: bold;
  line-height: inherit;
}

i,
em {
  font-style: italic;
  line-height: inherit;
}

.h1 {
  font-size: 1.3888888889rem;
  font-weight: 500;
}

@media only screen and (min-width: 960px) {
  .h1 {
    font-size: 1.5555555556rem;
  }
}

.h2,
.form__title,
.news__title,
.chart__title {
  font-family: "Abril Fatface", cursive, serif;
  font-weight: 400;
  font-size: 1.2222222222rem;
}

@media only screen and (min-width: 520px) {
  .h2,
  .form__title,
  .news__title,
  .chart__title {
    font-size: 1.6666666667rem;
  }
}

@media only screen and (min-width: 960px) {
  .h2,
  .form__title,
  .news__title,
  .chart__title {
    font-size: 1.9444444444rem;
  }
}

.h3 {
  font-weight: 500;
  margin-bottom: 0.8333333333rem;
  font-size: 1rem;
}

@media only screen and (min-width: 520px) {
  .h3 {
    margin-bottom: 1.2222222222rem;
    font-size: 1.1111111111rem;
  }
}

.rIndex {
  font-family: "Abril Fatface", cursive, serif;
  font-weight: 400;
  font-size: 4.4444444444rem;
  text-align: center;
}

@media only screen and (min-width: 520px) {
  .rIndex {
    font-size: 8.8888888889rem;
  }
}

@media screen and (min-width: 1280px) {
  .rIndex {
    font-size: 11.1111111111rem;
  }
}

@media only screen and (min-width: 520px) {
  .rIndex.-longer {
    font-size: 5.5555555556rem;
  }
}

@media screen and (min-width: 1280px) {
  .rIndex.-longer {
    font-size: 8.8888888889rem;
  }
}

.fm {
  line-height: 1.4;
}

.fm h1 {
  font-weight: 500;
  padding-bottom: 0.5555555556rem;
  font-size: 1rem;
}

@media only screen and (min-width: 520px) {
  .fm h1 {
    padding-bottom: 1.1111111111rem;
    font-size: 1.1111111111rem;
  }
}

@media only screen and (min-width: 960px) {
  .fm h1 {
    padding-bottom: 1.6666666667rem;
    font-size: 1.2222222222rem;
  }
}

.fm h2 {
  padding-bottom: 0.2777777778rem;
}

.fm p,
.fm ul {
  padding-bottom: 0.8333333333rem;
}

@media only screen and (min-width: 520px) {
  .fm p,
  .fm ul {
    padding-bottom: 1.1111111111rem;
  }
}

@media only screen and (min-width: 960px) {
  .fm p,
  .fm ul {
    padding-bottom: 1.2222222222rem;
  }
}

.fm h2,
.fm strong,
.fm b {
  font-weight: 700;
}

.fm a {
  color: currentColor;
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.fm a:hover {
  color: #eb5245;
}

.fm ul li {
  position: relative;
  padding-bottom: 0.5555555556rem;
  padding-left: 1.1111111111rem;
}

.fm ul li::before {
  position: absolute;
  top: 0.3333333333rem;
  left: 0;
  font-size: 0.6666666667rem;
  content: "\2022";
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes loadingBullet {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loadingBullet {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes loadingBulletDouble {
  0% {
    left: 1.1111111111rem;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    left: 1.1111111111rem;
    opacity: 0;
  }

  50.0001% {
    left: 2.2222222222rem;
  }

  75% {
    opacity: 1;
  }

  100% {
    left: 2.2222222222rem;
    opacity: 0;
  }
}

@keyframes loadingBulletDouble {
  0% {
    left: 1.1111111111rem;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    left: 1.1111111111rem;
    opacity: 0;
  }

  50.0001% {
    left: 2.2222222222rem;
  }

  75% {
    opacity: 1;
  }

  100% {
    left: 2.2222222222rem;
    opacity: 0;
  }
}

.header {
  padding-top: 1.1111111111rem;
}

@media only screen and (min-width: 520px) {
  .header {
    padding-top: 1.6666666667rem;
  }
}

@media only screen and (min-width: 960px) {
  .header {
    padding-top: 2.2222222222rem;
  }
}

.logo {
  width: 7.2222222222rem;
  height: 7.1666666667rem;
  margin: auto;
  color: currentColor;
}

#logoIndex,
#logoRenovering {
  transform-origin: center;
}

@-webkit-keyframes logorotation {
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }

  from {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

@keyframes logorotation {
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }

  from {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

.section {
  flex: 1;
  padding: 1.1111111111rem;
  margin-bottom: 0.5555555556rem;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section {
    flex: inherit;
  }
}

@media only screen and (min-width: 520px) {
  .section {
    padding: 1.6666666667rem;
  }
}

@media only screen and (min-width: 960px) {
  .section {
    padding: 2.7777777778rem;
  }
}

@media only screen and (min-width: 520px) {
  .section.-back {
    padding-top: 0;
  }
}

.section__link {
  margin-top: 1.9444444444rem;
}

.section__link a {
  color: inherit;
}

@media screen and (min-width: 769px) {
  .section__link--map {
    width: 40%;
  }
}

.section__smalltext {
  text-align: center;
}

.section__map {
  padding-bottom: 200px;
}

@media screen and (min-width: 769px) {
  .section__map-text {
    padding-bottom: 50px;
  }
}

.-grayBG {
  background-color: #464646;
}

.-grayMediumBG {
  background-color: #a39f9e;
}

.-grayPastelBG {
  background-color: #f7f8f9;
}

.-redBG {
  background-color: #eb5245;
}

.-redPastelBG {
  background-color: #fadfdf;
}

.-blueBG {
  background-color: #3899b2;
}

.-bluePastelBG {
  background-color: #ecf3f4;
}

.-sunBG {
  background-color: #fec900;
}

.-grayColor {
  color: #464646;
}

.-grayMediumColor {
  color: #a39f9e;
}

.-grayPastelColor {
  color: #f7f8f9;
}

.-redColor {
  color: #eb5245;
}

.-redPastelColor {
  color: #fadfdf;
}

.-blueColor {
  color: #3899b2;
}

.-bluePastelColor {
  color: #ecf3f4;
}

.-sunColor {
  color: #fec900;
}

.paragraph {
  margin-bottom: 2em;
  font-family: Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.6em;
}

.paragraph.-excerpt {
  font-size: 2rem;
}

.preamble {
  max-width: 38.8888888889rem;
  padding-top: 1.6666666667rem;
  padding-bottom: 1.6666666667rem;
  margin: auto;
  text-align: center;
}

@media only screen and (min-width: 520px) {
  .preamble {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.7777777778rem;
  }
}

@media only screen and (min-width: 960px) {
  .preamble {
    padding-top: 3.6111111111rem;
    padding-bottom: 4.7222222222rem;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .preamble {
    display: flex;
    align-self: center;
  }
}

.epilogue {
  max-width: 38.8888888889rem;
  margin: auto;
  text-align: center;
}

.epilogue__title {
  padding-bottom: 0.8333333333rem;
}

.chart {
  display: none !important;
  width: 100%;
  margin-top: 2.5rem;
}

@media screen and (min-width: 769px) {
  .chart {
    display: block !important;
  }
}

.chart__keys {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .chart__keys {
    display: none;
  }
}

.chart__key {
  display: inline-block;
}

@media screen and (max-width: 1080px) {
  .chart__key {
    display: block;
    margin-right: 0 !important;
    margin-bottom: 0.5555555556rem;
  }
}

.chart__key:not(:last-child) {
  margin-right: 1.1111111111rem;
}

.chart__key::before {
  display: inline-block;
  width: 1.6666666667rem;
  height: 1.6666666667rem;
  margin-right: 0.4444444444rem;
  vertical-align: middle;
  content: "";
}

@media screen and (max-width: 1080px) {
  .chart__key::before {
    width: 1.1111111111rem;
    height: 1.1111111111rem;
  }
}

.chart__key.-gray::before {
  background-color: #a39f9e;
}

.chart__key.-red::before {
  background-color: #eb5245;
}

.chart__key.-blue::before {
  background-color: #3899b2;
}

.chart__key.-yellow::before {
  background-color: #fec900;
}

.chart__curve {
  position: relative;
}

@media screen and (min-width: 769px) {
  .chart__curve {
    padding-left: 5.8333333333rem;
  }
}

@media screen and (min-width: 1025px) {
  .chart__curve {
    padding-left: 7.2222222222rem;
  }
}

@media screen and (min-width: 1281px) {
  .chart__curve {
    padding-left: 8.8888888889rem;
  }
}

@media screen and (max-width: 768px) {
  .chart__curve {
    display: none;
  }
}

.chart__curveIcon {
  top: 0.6666666667rem;
  left: 2.1111111111rem;
}

.chart__curveIcon,
.chart__curveIcon::before,
.chart__curveIcon::after {
  position: absolute;
  display: block;
  width: 0.5555555556rem;
  height: 2px;
  background-color: #464646;
}

.chart__curveIcon::before,
.chart__curveIcon::after {
  top: 0;
  content: "";
}

.chart__curveIcon::before {
  left: 1.2777777778rem;
}

.chart__curveIcon::after {
  left: 2.5555555556rem;
}

@media screen and (min-width: 1025px) {
  .chart__curveIcon {
    left: 3.5rem;
  }
}

@media screen and (min-width: 1281px) {
  .chart__curveIcon {
    left: 5.1666666667rem;
  }
}

.chartBackup {
  display: none;
  padding-top: 1.3888888889rem;
}

.chartBackup:empty {
  position: relative;
  height: 4.1666666667rem;
}

.chartBackup:empty::before,
.chartBackup:empty::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #464646;
  transform: translate(0, -50%);
  content: "";
}

.chartBackup:empty::before {
  left: 1.1111111111rem;
  -webkit-animation: loadingBulletDouble 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99) infinite;
          animation: loadingBulletDouble 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99) infinite;
}

.chartBackup:empty::after {
  left: 1.6666666667rem;
  -webkit-animation: loadingBullet 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99) 0.2s infinite;
          animation: loadingBullet 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99) 0.2s infinite;
}

@media screen and (max-width: 768px) {
  .chartBackup {
    display: block;
  }
}

.chartBackup__item {
  margin-bottom: 1.3888888889rem;
}

.chartBackup__title {
  font-weight: 500;
  padding: 0.2777777778rem 0.5555555556rem;
  margin-bottom: 1.1111111111rem;
  color: white;
  font-size: 0.6666666667rem;
  letter-spacing: 0.5em;
  background-color: #a39f9e;
}

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

.chartBackup__dataKey,
.chartBackup__dataValue {
  padding: 0.2777777778rem 0;
  border-bottom: 1px solid #e8ebee;
}

.chartBackup__dataKey {
  flex: 0 65%;
}

.chartBackup__dataValue {
  font-weight: 500;
  flex: 0 35%;
  text-align: right;
}

.listIndex {
  padding-top: 2.7777777778rem;
}

@media only screen and (min-width: 520px) {
  .listIndex__container {
    padding-left: 0.8333333333rem;
  }
}

@media only screen and (min-width: 960px) {
  .listIndex__container {
    padding-left: 2.5rem;
  }
}

.listIndex__key,
.listIndex__value {
  float: left;
  margin-bottom: 0.3888888889rem;
}

.listIndex__key:last-of-type,
.listIndex__value:last-of-type {
  margin-bottom: 0;
}

.listIndex__key {
  width: 65%;
  clear: both;
}

.listIndex__key.-highlight {
  color: #eb5245;
}

.listIndex__value {
  width: 35%;
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.listIndex__value span {
  font-weight: 500;
  display: inline-block;
  min-width: 3.8333333333rem;
  padding: 0.1666666667rem 0.2777777778rem;
  text-align: center;
  background-color: #ffffff;
}

.listIndex__value.-positive span {
  background-color: #3899b2;
}

.listIndex__bottom {
  margin-top: 30px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  text-align: left;
}

.listIndex__bottom h3 {
  font-weight: bold;
}

@media only screen and (min-width: 520px) {
  .listIndex__bottom {
    width: 35%;
    text-align: right;
  }
}

.listImages {
  display: flex;
  flex-flow: row nowrap;
}

.listImages:not(:last-child) {
  margin-bottom: 1.1111111111rem;
}

.listImages__listItem {
  display: block;
  width: 30%;
  margin-right: 0.5555555556rem;
}

.listImages__link {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 100%;
  background-color: #e8ebee;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.listImages__link.-mickeal1 {
  background-image: url("/img/holmstrand-small.jpg");
}

.listImages__link.-mickeal2 {
  background-image: url("/img/MikaelHolmstrand-small.jpg");
}

.listImages__link.-logo {
  background-image: url("/img/logo.svg");
  background-color: transparent;
}

.listImages__link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: 0.2777777778rem solid #ffe47f;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  content: "";
}

.listImages__link:hover::after {
  opacity: 1;
}

.footer {
  padding-top: 1.1111111111rem;
  padding-bottom: 1.6666666667rem;
  text-align: center;
}

@media only screen and (min-width: 520px) {
  .footer {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}

.footer__text {
  font-size: 0.8888888889rem;
}

.-news {
  padding-bottom: 1.9444444444rem;
  text-align: center;
}

.-latest {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
}

.listNews:empty {
  position: relative;
  height: 4.1666666667rem;
}

.listNews:empty::before,
.listNews:empty::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #eb5245;
  transform: translate(0, -50%);
  content: "";
}

.listNews:empty::before {
  left: 1.1111111111rem;
  -webkit-animation: loadingBulletDouble 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99) infinite;
          animation: loadingBulletDouble 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99) infinite;
}

.listNews:empty::after {
  left: 1.6666666667rem;
  -webkit-animation: loadingBullet 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99) 0.2s infinite;
          animation: loadingBullet 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99) 0.2s infinite;
}

.listNews:not(:last-child) {
  padding-bottom: 1.3888888889rem;
}

.listNews__title,
.listNews__item {
  display: flex;
  flex-flow: row wrap;
  padding-bottom: 0.8333333333rem;
  align-content: flex-start;
  border-bottom: 1px solid #a39f9e;
}

@media only screen and (min-width: 520px) {
  .listNews__title,
  .listNews__item {
    padding-bottom: 1.3888888889rem;
  }
}

.listNews__title {
  text-align: left;
}

.listNews__item {
  padding-top: 0.5555555556rem;
  -webkit-animation: fadeInUp 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
          animation: fadeInUp 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.listNews__item:nth-child(1) {
  -webkit-animation-delay: 50ms;
          animation-delay: 50ms;
}

.listNews__item:nth-child(2) {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.listNews__item:nth-child(3) {
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
}

.listNews__item:nth-child(4) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}

.listNews__item:nth-child(5) {
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}

.listNews__item:nth-child(6) {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.listNews__item:nth-child(7) {
  -webkit-animation-delay: 350ms;
          animation-delay: 350ms;
}

.listNews__item:nth-child(8) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}

.listNews__item:nth-child(9) {
  -webkit-animation-delay: 450ms;
          animation-delay: 450ms;
}

@media only screen and (min-width: 520px) {
  .listNews__item {
    padding-top: 0.8333333333rem;
  }
}

.news__title {
  padding-bottom: 0.5555555556rem;
  text-align: left;
}

@media only screen and (min-width: 520px) {
  .news__title {
    padding-bottom: 1.1111111111rem;
  }
}

.news__title a {
  color: currentColor;
  text-decoration: none;
}

@supports not (-ms-ime-align: auto) {
  .news__title a {
    flex: 1;
    text-decoration: none;
    background-image: linear-gradient(to right, #f7bdb8 0, #f7bdb8 100%);
    background-position: 0 1.3888888889rem;
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: color 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99), background 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    cursor: pointer;
  }

  .news__title a:hover {
    background-size: 100% 100%;
  }

@media only screen and (min-width: 520px) {
    .news__title a {
      background-position: 0 1.8333333333rem;
    }
}

@media only screen and (min-width: 960px) {
    .news__title a {
      background-position: 0 2.1111111111rem;
    }
}
}

.listNews .news__title,
.-latest .news__title {
  flex: 1 100%;
}

.news__link,
.news__time {
  font-weight: 500;
}

.news__time {
  display: inline-block;
}

.newsArticle .news__time {
  padding-bottom: 0.5555555556rem;
}

.-latest .news__time {
  display: block;
  width: 100%;
  padding-bottom: 0.5555555556rem;
}

@media only screen and (min-width: 520px) {
  .-latest .news__time {
    padding-bottom: 0.8333333333rem;
  }
}

.listNews .news__time {
  margin-right: 0.5555555556rem;
}

.news__excerpt {
  padding-bottom: 0.8333333333rem;
}

.news__category {
  display: block;
  padding-bottom: 0.8333333333rem;
  margin-bottom: 1.1111111111rem;
  border-bottom: 1px solid #a39f9e;
}

.map {
  display: none;
}

@media only screen and (min-width: 520px) {
  .map {
    max-width: 14rem;
    max-height: 32.1666666667rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (min-width: 960px) {
  .map {
    max-width: 23.3333333333rem;
    max-height: 53.6111111111rem;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .map {
    width: 100%;
    height: 300vh;
  }
}

@media screen and (min-width: 769px) {
  .map.-show {
    display: block;
    -webkit-animation: fadeIn 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
            animation: fadeIn 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  }
}

.map__container {
  position: relative;
}

.map__region {
  position: relative;
  fill: #ffffff;
  stroke: #ecf3f4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  transition: fill 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  cursor: pointer;
}

.map__region:hover {
  fill: #f7f8f9;
}

.map__region.-positive {
  fill: #3899b2;
}

.map__region.-positive:hover {
  fill: #54b1c9;
}

.map__tooltip {
  position: absolute;
  border-radius: 1.1111111111rem;
  color: white;
  font-size: 0.6666666667rem;
  text-align: center;
  transform: translate(0, -50%);
  width: 40vw;
  height: auto;
}

.map__tooltip.-hide {
  display: none;
}

.form {
  width: 100%;
  max-width: 26.6666666667rem;
  padding: 1.1111111111rem;
  margin: 4.1666666667rem auto 5.5555555556rem;
  border: 2px solid #464646;
  -webkit-animation: fadeInUp 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99) 0.4s;
          animation: fadeInUp 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99) 0.4s;
}

@media only screen and (min-width: 520px) {
  .form {
    padding: 2.7777777778rem;
  }
}

.form__title {
  color: #fec900;
  margin-bottom: 1.1111111111rem;
}

.form__field {
  margin-bottom: 1.3888888889rem;
}

.form__label {
  display: block;
  font-size: 0.5555555556rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.form__input {
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1em;
  font-family: futura-pt, Futura, Georgia, sans-serif;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  width: 100%;
  padding: 0.5555555556rem 0;
  border-bottom: 2px solid #464646;
  color: white;
  font-size: 1.1111111111rem;
  transition: border-color 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.form__input:focus {
  outline: none;
}

textarea.form__input {
  resize: vertical;
}

.form__input[type=search]::-webkit-search-decoration,
.form__input[type=search]::-webkit-search-cancel-button,
.form__input[type=search]::-webkit-search-results-button,
.form__input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.form__input::-webkit-input-placeholder {
  color: #464646;
}

.form__input::-moz-placeholder {
  color: #464646;
}

.form__input:-ms-input-placeholder {
  color: #464646;
}

.form__input:-webkit-autofill,
.form__input:-webkit-autofill:hover,
.form__input:-webkit-autofill:focus .form__input:-webkit-autofill {
  border-color: #fec900;
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px #333333 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.form__input:focus {
  border-bottom-color: #3899b2;
}

.form__submit {
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  vertical-align: top;
  line-height: 1em;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  font-family: futura-pt, Futura, Georgia, sans-serif;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 500;
  position: relative;
  background-color: #464646;
  color: white;
  padding: 0.8333333333rem;
  border-radius: 0.1666666667rem;
  font-size: 0.6666666667rem;
  text-transform: uppercase;
  transition: background-color 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.form__submit:focus {
  outline: none;
}

.form__submit:hover,
.form__submit:focus {
  background-color: #3899b2;
}

.form__submit:active {
  top: 2px;
}

.contact__details:not(:last-child) {
  margin-bottom: 0.2777777778rem;
}

.contact__details a {
  color: currentColor;
  text-decoration: none;
}

@supports not (-ms-ime-align: auto) {
  .contact__details a {
    flex: 1;
    text-decoration: none;
    background-image: linear-gradient(to right, #ffe47f 0, #ffe47f 100%);
    background-position: 0 1rem;
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: color 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99), background 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    cursor: pointer;
  }

  .contact__details a:hover {
    background-size: 100% 100%;
  }
}

.link {
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  vertical-align: top;
  line-height: 1em;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  font-family: futura-pt, Futura, Georgia, sans-serif;
  font-style: normal;
  letter-spacing: 1px;
  font-weight: 500;
  color: #464646;
  text-decoration: none;
  transition-property: color, opacity;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.link:focus {
  outline: none;
}

.link:hover,
.link:focus {
  color: #eb5245;
}

.link .icon {
  margin-right: 0.2222222222rem;
}

.link.-back {
  text-align: left;
}

.link.-more {
  padding: 0.5555555556rem;
  -webkit-animation: fadeInLeft 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99) 250ms;
          animation: fadeInLeft 0.2s cubic-bezier(0.4, 0.01, 0.165, 0.99) 250ms;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.link.-loading {
  opacity: 0.3;
  cursor: progress;
}

.-news .link {
  margin-right: 0;
  margin-left: auto;
  font-size: 1rem;
  text-align: center;
}

.-latest .link {
  margin: auto 0 0 auto;
}

.input {
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1em;
  margin-bottom: 24px;
  padding: 12px 16px;
  border: solid 2px;
  border-radius: 2px;
  width: 100%;
  font-family: futura-pt, Futura, Georgia, sans-serif;
  font-size: 1.5rem;
  transition: border-color 140ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.input:focus {
  outline: none;
}

textarea.input {
  resize: vertical;
}

.input[type=search]::-webkit-search-decoration,
.input[type=search]::-webkit-search-cancel-button,
.input[type=search]::-webkit-search-results-button,
.input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.input::-moz-placeholder {
  line-height: normal;
}

.input:-ms-input-placeholder {
  line-height: normal;
}

.input::placeholder {
  line-height: normal;
}

.icon {
  display: inline-block;
  vertical-align: text-bottom;
  height: 1em;
  width: 1em;
  fill: currentColor;
  pointer-events: none;
}

