@charset "UTF-8";
/* 
Kald på variabel: partial.$variabel-navn;
Kald på mixin: @include partial.mixin-navn;
*/
@import url("https://fonts.cdnfonts.com/css/niagara-engraved");
@import url("https://fonts.cdnfonts.com/css/caladea");
@import url("https://fonts.cdnfonts.com/css/zapfino");
* {
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: "Caladea", sans-serif;
  scroll-behavior: smooth;
}

p {
  font-size: 1rem;
}

h1 {
  font-size: 2rem;
  word-break: break-word;
}

h2 {
  font-size: 1.5rem;
  word-break: break-word;
}

h3 {
  font-size: 1.2rem;
  word-break: break-word;
}

.ygrid {
  display: grid;
  grid-template-columns: 0 1fr 0;
}
@media screen and (min-width: 1500px) {
  .ygrid {
    grid-template-columns: 1fr 1500px 1fr;
  }
}

.content {
  grid-column: 2/3;
}

.bg-beige {
  background-color: #F9F2D7;
}

body {
  display: grid;
  grid-template-rows: 80px 1fr auto;
  min-height: 100vh;
  background-color: #FEFBF3;
}
body header {
  background-color: #FEFBF3;
  grid-row: 1/2;
}
body header #global-nav {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-left: 100px;
  padding-right: 100px;
}
@media screen and (max-width: 900px) {
  body header #global-nav {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  body header #global-nav {
    padding-left: 10px;
    padding-right: 10px;
  }
}
body header #global-nav #logo {
  grid-column: 1/2;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: end;
  border: 3px solid #364626;
  padding: 10px;
  z-index: 10;
}
body header #global-nav #logo h1 {
  font-family: "Niagara Engraved", sans-serif;
  font-weight: normal;
  font-size: 2.5rem;
  color: #364626;
}
@media screen and (max-width: 400px) {
  body header #global-nav #logo h1 {
    font-size: 2rem;
  }
}
body header #global-nav #logo img {
  height: 4rem;
}
body header #global-nav #header-nav {
  grid-column: 2/3;
  justify-self: end;
  display: flex;
  flex-direction: row;
  gap: 50px;
}
@media screen and (max-width: 750px) {
  body header #global-nav #header-nav {
    display: none;
  }
}
body header #global-nav #header-nav .active-nav {
  text-decoration: underline;
}
body header #global-nav #header-nav a {
  font-size: 0.8rem;
  text-decoration: none;
  color: black;
  transition: all 0.3s;
}
body header #global-nav #header-nav a:hover {
  scale: 105%;
}
body header #global-nav #burger-menu {
  display: none;
  grid-column: 2/3;
  justify-self: end;
  align-self: center;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  body header #global-nav #burger-menu {
    display: block;
  }
}
body header #global-nav #burger-menu img {
  height: 3em;
}
body header #global-nav #burger-nav {
  display: none;
  flex-direction: column;
  gap: 100px;
  padding: 50px 50px 50px 50px;
  background-color: #364626;
  z-index: 1;
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  max-width: 300px;
  border-radius: 20px 0 0 20px;
}
body header #global-nav #burger-nav a {
  text-decoration: none;
  color: #FEFBF3;
  font-size: 1.5rem;
}
body main {
  grid-row: 2/3;
  /*#omgivelser {
      @include partial.responsive-padding;
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-template-rows: auto auto;
      column-gap: 100px;
      position: relative;
      margin-bottom: 50px;
      margin-top: 50px;

      @media screen and (max-width: 900px) {
          column-gap: 50px;
      }
      @media screen and (max-width: 700px) {
          grid-template-columns: 1fr;
          grid-template-rows: auto auto auto auto;
      }

          .bg-beige {
              background-color: partial.$detalje-farve;
              grid-column: 1/3;
              grid-row: 1/2;
              position: absolute;
              top: 0;
              bottom: 0;
              left: 0;
              right: 0;
              width: 100vw;
              margin-left: calc(-50vw + 50%);
              z-index: -1;

              @media screen and (max-width: 700px) {
                  grid-column: 1/2;
                  grid-row: 3/4;
              }
          }
          #omgivelser-tekst-container1 {
              margin-top: 50px;
              margin-bottom: 50px;
              //margin-right: 85px;
              grid-column: 1/2;
              grid-row: 1/2;
              display: flex;
              flex-direction: column;
              gap: 25px;
              justify-content: center;

              @media screen and (max-width: 700px) {
                  //margin-right: 0;
              }
          }
          #omgivelser-sticky-img-container {
              grid-column: 2/3;
              grid-row: 1/2;
              display: flex;
              align-items: center;

              @media screen and (max-width: 700px) {
                  grid-column: 1/2;
                  grid-row: 2/3;
              }

                  div {
                      margin-top: 50px;
                      margin-bottom: 50px;
                      height: 500px;
                      width: 100%;
                      //position: sticky;
                      //top: 50px;
                      //right: 0;
                      //display: flex;
                      //justify-content: center;

                      @media screen and (max-width: 700px) {
                          margin-top: 0;
                          height: 300px;
                      }

                          img {
                              object-fit: cover;
                              //object-position: center;
                              height: 100%;
                              width: 100%;
                          }
                  }
          }
          #omgivelser-tekst-container2 {
              margin-top: 50px;
              margin-bottom: 50px;
              //margin-right: 85px;
              grid-column: 2/3;
              grid-row: 2/3;
              display: flex;
              flex-direction: column;
              gap: 25px;
              justify-content: center;

              @media screen and (max-width: 700px) {
                  grid-column: 1/2;
                  grid-row: 3/4;
                  //margin-right: 0;
              }
          }
          #omgivelser-sticky-img-container2 {
              grid-column: 1/2;
              grid-row: 2/3;
              display: flex;
              align-items: center;

              @media screen and (max-width: 700px) {
                  grid-column: 1/2;
                  grid-row: 4/5;
              }

                  div {
                      margin-top: 50px;
                      margin-bottom: 50px;
                      height: 500px;
                      width: 100%;
                      //position: sticky;
                      //top: 50px;
                      //left: 0;

                      @media screen and (max-width: 700px) {
                          margin-bottom: 0;
                          height: 300px;
                      }

                          img {
                              object-fit: cover;
                              object-position: left;
                              height: 100%;
                              width: 100%;
                          }
                  }
          }
  }*/
}
body main #hero {
  position: relative;
}
body main #hero #hero-container {
  max-height: 650px;
  min-height: 400px;
  margin-left: 25px;
  margin-right: 25px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 3fr 2fr;
  gap: 15px;
}
@media screen and (max-width: 700px) {
  body main #hero #hero-container {
    margin-left: 10px;
    margin-right: 10px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
body main #hero #hero-container .hero-img-container {
  overflow: hidden;
}
body main #hero #hero-container .hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
  cursor: pointer;
}
body main #hero #hero-container .hero-img:hover {
  scale: 101.5%;
}
body main #hero #hero-container #hero-img1 {
  grid-column: 1/2;
  grid-row: 1/2;
}
body main #hero #hero-container #hero-img2 {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 700px) {
  body main #hero #hero-container #hero-img2 {
    display: none;
  }
}
body main #hero #hero-container #hero-img3 {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 700px) {
  body main #hero #hero-container #hero-img3 {
    display: none;
  }
}
body main #hero #hero-container #hero-img4 {
  grid-column: 3/4;
  grid-row: 1/3;
}
@media screen and (max-width: 700px) {
  body main #hero #hero-container #hero-img4 {
    display: none;
  }
}
body main #hero #hero-container #hero-cta {
  position: absolute;
  bottom: 50px;
  left: 10px;
  padding-left: 100px;
  padding-right: 100px;
}
@media screen and (max-width: 900px) {
  body main #hero #hero-container #hero-cta {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  body main #hero #hero-container #hero-cta {
    padding-left: 10px;
    padding-right: 10px;
  }
}
body main #hero #hero-container #hero-cta a {
  background-color: #FEFBF3;
  color: #364626;
  padding: 10px 30px 10px 30px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 20px;
  transition: all 0.3s;
}
body main #hero #hero-container #hero-cta a:hover {
  color: #F9F2D7;
  background-color: #364626;
}
body main #fakta-kontakt {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
  -moz-column-gap: 100px;
       column-gap: 100px;
  margin-top: 50px;
  margin-left: 100px;
  margin-right: 100px;
  position: relative;
}
@media screen and (max-width: 900px) {
  body main #fakta-kontakt {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  body main #fakta-kontakt {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 1200px) {
  body main #fakta-kontakt {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 780px) {
  body main #fakta-kontakt {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0;
  }
}
body main #fakta-kontakt h2 {
  grid-column: 1/2;
  grid-row: 1/2;
}
body main #fakta-kontakt #fakta-box-1-container {
  grid-column: 1/2;
  grid-row: 2/3;
}
body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  /*@media screen and (max-width: 780px) {
      width: 100%;
  }*/
}
body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list {
  display: flex;
  flex-direction: row;
  gap: 25px;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list {
    flex-direction: column;
  }
}
@media screen and (max-width: 780px) {
  body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list {
    flex-direction: row;
  }
}
@media screen and (max-width: 600px) {
  body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list {
    flex-direction: column;
  }
}
body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list .fakta-list-punkt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list .fakta-list-punkt {
    flex-direction: row;
  }
}
@media screen and (max-width: 780px) {
  body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list .fakta-list-punkt {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list .fakta-list-punkt {
    flex-direction: row;
  }
}
body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list .fakta-list-punkt img {
  height: 2em;
  align-self: center;
}
body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list .fakta-list-punkt .vis-kort {
  cursor: pointer;
  font-size: 0.8em;
  color: grey;
  text-decoration: underline;
}
body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list .fakta-list-punkt #google-map {
  position: fixed;
  z-index: 11;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
}
body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 #fakta-list .fakta-list-punkt #google-map #luk-kort {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20%, -20%);
  color: #FEFBF3;
  background-color: #364626;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 2em;
  cursor: pointer;
}
body main #fakta-kontakt #fakta-box-1-container #fakta-box-1 a {
  color: black;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
}
body main #fakta-kontakt #kontakt-info-container {
  grid-column: 2/3;
  grid-row: 1/4;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 780px) {
  body main #fakta-kontakt #kontakt-info-container {
    grid-column: 1/2;
    grid-row: 3/4;
    margin-bottom: 50px;
  }
}
body main #fakta-kontakt #kontakt-info-container #kontakt-info {
  background-color: white;
  margin-top: 0px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  right: 0;
  top: 50px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  position: sticky;
}
@media screen and (max-width: 420px) {
  body main #fakta-kontakt #kontakt-info-container #kontakt-info {
    width: 100%;
  }
}
body main #fakta-kontakt #kontakt-info-container #kontakt-info h2 {
  padding-bottom: 25px;
  color: #364626;
}
body main #fakta-kontakt #kontakt-info-container #kontakt-info #kontakt-box-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: solid 1px #364626;
}
body main #fakta-kontakt #kontakt-info-container #kontakt-info #kontakt-box-text .kontakt-box-text-punkt {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
}
body main #fakta-kontakt #kontakt-info-container #kontakt-info #kontakt-box-text .kontakt-box-text-punkt img {
  height: 2em;
}
body main #fakta-kontakt #kontakt-info-container #kontakt-info .cta {
  background-color: #364626;
  color: #FEFBF3;
  padding: 10px 30px 10px 30px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 20px;
  transition: all 0.3s;
  margin-top: 25px;
  max-width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  border-radius: 40px;
}
body main #fakta-kontakt #kontakt-info-container #kontakt-info .cta:hover {
  scale: 105%;
}
body main #fakta-kontakt #om-huset-tekst-column1 {
  grid-column: 1/2;
  grid-row: 3/4;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: solid 1px #364626;
}
@media screen and (max-width: 780px) {
  body main #fakta-kontakt #om-huset-tekst-column1 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
body main #fakta-kontakt #om-huset-tekst-column1 #om-overskrift p {
  font-style: italic;
  font-size: 0.8em;
}
body main #fakta-kontakt .om-brodtekst {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
body main #fakta-kontakt .om-brodtekst .sløret-text {
  opacity: 70%;
  transition: all 1s;
}
body main #fakta-kontakt .om-brodtekst .gemt-text {
  max-height: 0;
  overflow: hidden;
  transition: all 1s;
}
body main #fakta-kontakt .om-brodtekst .gemt-text.show {
  max-height: 100%;
}
body main #fakta-kontakt .om-brodtekst .vis-om-text-knap {
  margin-top: 15px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
body main #fakta-kontakt .om-brodtekst .vis-om-text-knap img {
  height: 1.5em;
}
body main #fakta-kontakt .om-brodtekst .vis-om-text-knap p {
  text-decoration: underline;
  color: black;
}
body main #fakta-kontakt .bg-beige-omhuset {
  background-color: #F9F2D7;
  grid-column: 1/3;
  grid-row: 3/4;
  z-index: -1;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: calc(-50vw + 50%);
}
@media screen and (max-width: 780px) {
  body main #fakta-kontakt .bg-beige-omhuset {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
body main #forside-galleri-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 400px 400px 500px 500px;
  gap: 15px;
  overflow: hidden;
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 50px;
}
@media screen and (max-width: 900px) {
  body main #forside-galleri-container {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  body main #forside-galleri-container {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 900px) {
  body main #forside-galleri-container {
    grid-template-rows: 300px 300px 400px 400px;
  }
}
@media screen and (max-width: 700px) {
  body main #forside-galleri-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 400px);
    gap: 10px;
    max-height: none;
  }
}
body main #forside-galleri-container .forside-galleri-img-container {
  overflow: hidden;
}
body main #forside-galleri-container .forside-galleri-img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
}
body main #forside-galleri-container .forside-galleri-img-container img:hover {
  scale: 101.5%;
}
body main #forside-galleri-container #forside-galleri-img1 {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media screen and (max-width: 700px) {
  body main #forside-galleri-container #forside-galleri-img1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
body main #forside-galleri-container #forside-galleri-img2 {
  grid-column: 1/3;
  grid-row: 2/3;
}
@media screen and (max-width: 700px) {
  body main #forside-galleri-container #forside-galleri-img2 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
body main #forside-galleri-container #forside-galleri-img2 img {
  -o-object-position: bottom;
     object-position: bottom;
}
body main #forside-galleri-container #forside-galleri-img3 {
  grid-column: 3/5;
  grid-row: 1/3;
}
@media screen and (max-width: 700px) {
  body main #forside-galleri-container #forside-galleri-img3 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
body main #forside-galleri-container #forside-galleri-img3 img {
  -o-object-position: right;
     object-position: right;
}
body main #forside-galleri-container #forside-galleri-img4 {
  grid-column: 1/4;
  grid-row: 3/4;
}
@media screen and (max-width: 700px) {
  body main #forside-galleri-container #forside-galleri-img4 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
body main #forside-galleri-container #forside-galleri-img4 img {
  -o-object-position: bottom;
     object-position: bottom;
}
body main #forside-galleri-container #forside-galleri-img5 {
  grid-column: 4/5;
  grid-row: 3/4;
}
body main #forside-galleri-container #forside-galleri-img5 img {
  -o-object-position: bottom;
     object-position: bottom;
}
@media screen and (max-width: 700px) {
  body main #forside-galleri-container #forside-galleri-img5 {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
body main #forside-galleri-container #forside-galleri-img6 {
  grid-column: 1/2;
  grid-row: 4/5;
  max-height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  body main #forside-galleri-container #forside-galleri-img6 {
    grid-column: 1/2;
    grid-row: 6/7;
  }
}
body main #forside-galleri-container #forside-galleri-img6 img {
  -o-object-position: right;
     object-position: right;
}
body main #forside-galleri-container #forside-galleri-img7 {
  grid-column: 2/5;
  grid-row: 4/5;
  max-height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  body main #forside-galleri-container #forside-galleri-img7 {
    grid-column: 1/2;
    grid-row: 7/8;
  }
}
body main #fakta2-container {
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 900px) {
  body main #fakta2-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  body main #fakta2-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
body main #fakta2-container #fakta-box2 {
  padding-top: 50px;
}
body main #fakta2-container #fakta-box2 #fakta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 50px;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  body main #fakta2-container #fakta-box2 #fakta-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}
@media screen and (max-width: 700px) {
  body main #fakta2-container #fakta-box2 #fakta-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}
body main #fakta2-container #fakta-box2 #fakta-grid .alle-fakta-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
body main #fakta2-container #fakta-box2 #fakta-grid .fakta2-punkt {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
body main #fakta2-container #fakta-box2 #fakta-grid .fakta2-punkt img {
  height: 1em;
}
body main #fakta2-container #fakta-box2 #fakta-grid .vis-kort {
  cursor: pointer;
  font-size: 0.8em;
  color: grey;
  text-decoration: underline;
}
body main #fakta2-container #fakta-box2 #fakta-grid #fakta1 {
  grid-column: 1/2;
  display: flex;
  justify-content: start;
}
@media screen and (max-width: 1000px) {
  body main #fakta2-container #fakta-box2 #fakta-grid #fakta1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
body main #fakta2-container #fakta-box2 #fakta-grid #fakta2 {
  grid-column: 2/3;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  body main #fakta2-container #fakta-box2 #fakta-grid #fakta2 {
    grid-column: 2/3;
    grid-row: 1/2;
    justify-content: start;
  }
}
@media screen and (max-width: 700px) {
  body main #fakta2-container #fakta-box2 #fakta-grid #fakta2 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
body main #fakta2-container #fakta-box2 #fakta-grid #fakta3 {
  grid-column: 3/4;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 1000px) {
  body main #fakta2-container #fakta-box2 #fakta-grid #fakta3 {
    grid-column: 1/2;
    grid-row: 2/3;
    justify-content: start;
  }
}
@media screen and (max-width: 700px) {
  body main #fakta2-container #fakta-box2 #fakta-grid #fakta3 {
    grid-row: 3/4;
  }
}
body main #fakta2-container #fakta-box2 #fakta-grid .bg-beige-fakta {
  background-color: #F9F2D7;
  z-index: -1;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: calc(-50vw + 50%);
}
body main #fakta2-container .cta {
  background-color: #364626;
  color: #FEFBF3;
  padding: 10px 30px 10px 30px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 20px;
  align-self: center;
  transition: all 0.3s;
  margin-bottom: 50px;
}
body main #fakta2-container .cta:hover {
  scale: 105%;
}
body main #form-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 50px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  body main #form-section {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  body main #form-section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 1100px) {
  body main #form-section {
    grid-template-columns: 3fr 2fr;
  }
}
@media screen and (max-width: 930px) {
  body main #form-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}
body main #form-section #booking-side-tekst {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 50px;
  padding-bottom: 50px;
}
body main #form-section #booking-side-tekst-bg {
  background-color: #F9F2D7;
  grid-column: 1/3;
  grid-row: 1/2;
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
@media screen and (max-width: 930px) {
  body main #form-section #booking-side-tekst-bg {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
body main #form-section form {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
@media screen and (max-width: 930px) {
  body main #form-section form {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
body main #form-section form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
body main #form-section form input {
  min-height: 3em;
  border-radius: 15px;
  border: 1px solid #364626;
}
body main #form-section form textarea {
  border-radius: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}
body main #form-section form button {
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #364626;
  color: #FEFBF3;
  padding: 10px 30px 10px 30px;
  max-width: fit-content;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  border: 0;
  font-family: "Caladea", sans-serif;
  transition: all 0.3s;
}
body main #form-section form button:hover {
  scale: 105%;
}
body main #form-section form #message {
  min-height: 100px;
}
body main #form-section form #dato-container {
  display: flex;
  flex-direction: row;
  gap: 25px;
  width: 100%;
}
body main #form-section form #dato-container label {
  flex: 1;
}
body main #form-section form #antal-gæster {
  max-width: 50px;
}
body main #form-section #booking-info-boks-container {
  grid-column: 2/3;
  grid-row: 1/3;
  margin-top: 50px;
}
@media screen and (max-width: 930px) {
  body main #form-section #booking-info-boks-container {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-top: 0;
  }
}
body main #form-section #booking-info-boks-container #booking-info-boks {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 50px;
  border-radius: 10px;
}
body main #form-section #booking-info-boks-container #booking-info-boks #booking-info-boks-img-container {
  width: 100%;
  height: 200px;
}
body main #form-section #booking-info-boks-container #booking-info-boks #booking-info-boks-img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 10px 10px 0 0;
}
body main #form-section #booking-info-boks-container #booking-info-boks #booking-info-boks-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 25px 25px 25px;
  border-radius: 10px;
}
body main #form-section #booking-info-boks-container #booking-info-boks #booking-info-boks-text h2 {
  color: #364626;
  padding-bottom: 25px;
  border-bottom: 1px solid #364626;
}
body main #form-section #booking-info-boks-container #booking-info-boks #booking-info-boks-text .kontakt-box-text-punkt {
  display: flex;
  flex-direction: row;
  gap: 25px;
}
body main #form-section #booking-info-boks-container #booking-info-boks #booking-info-boks-text .kontakt-box-text-punkt img {
  height: 2em;
}
body main #galleri-section {
  margin-left: 100px;
  margin-right: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  body main #galleri-section {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section {
    gap: 10px;
  }
}
body main #galleri-section .galleri-img-container {
  overflow: hidden;
}
body main #galleri-section .galleri-img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
body main #galleri-section #galleri-overst {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 500px;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  body main #galleri-section #galleri-overst {
    grid-template-rows: 300px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section #galleri-overst {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: none;
  }
}
body main #galleri-section #galleri-overst #galleri-img10 {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 700px) {
  body main #galleri-section #galleri-overst #galleri-img10 {
    order: 2;
  }
}
body main #galleri-section #galleri-overst #galleri-img10 img {
  -o-object-position: right;
     object-position: right;
}
body main #galleri-section #galleri-overst #galleri-img11 {
  grid-column: 2/3;
  grid-row: 1/2;
}
body main #galleri-section #galleri-hero-imgs {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 400px 500px;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  body main #galleri-section #galleri-hero-imgs {
    grid-template-rows: 200px 300px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section #galleri-hero-imgs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: none;
  }
}
body main #galleri-section #galleri-hero-imgs #galleri-img1 {
  grid-column: 1/2;
  grid-row: 1/2;
}
body main #galleri-section #galleri-hero-imgs #galleri-img2 {
  grid-column: 1/2;
  grid-row: 2/3;
}
body main #galleri-section #galleri-hero-imgs #galleri-img3 {
  grid-column: 2/3;
  grid-row: 1/3;
}
body main #galleri-section #galleri-hero-imgs #galleri-img4 {
  grid-column: 3/4;
  grid-row: 1/3;
}
body main #galleri-section #galleri-forside-galleri-imgs {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: 500px 500px 500px;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  body main #galleri-section #galleri-forside-galleri-imgs {
    grid-template-rows: 300px 300px 300px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section #galleri-forside-galleri-imgs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: none;
  }
}
body main #galleri-section #galleri-forside-galleri-imgs .galleri-img-container {
  overflow: hidden;
}
body main #galleri-section #galleri-forside-galleri-imgs .galleri-img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
body main #galleri-section #galleri-forside-galleri-imgs #galleri-img5 {
  grid-column: 1/3;
  grid-row: 1/2;
}
body main #galleri-section #galleri-forside-galleri-imgs #galleri-img6 {
  grid-column: 1/3;
  grid-row: 2/3;
}
body main #galleri-section #galleri-forside-galleri-imgs #galleri-img7 {
  grid-column: 3/5;
  grid-row: 1/3;
}
body main #galleri-section #galleri-forside-galleri-imgs #galleri-img7 img {
  -o-object-position: bottom;
     object-position: bottom;
}
body main #galleri-section #galleri-forside-galleri-imgs #galleri-img8 {
  grid-column: 1/4;
  grid-row: 3/4;
}
body main #galleri-section #galleri-forside-galleri-imgs #galleri-img8 img {
  -o-object-position: bottom;
     object-position: bottom;
}
body main #galleri-section #galleri-forside-galleri-imgs #galleri-img9 {
  grid-column: 4/5;
  grid-row: 3/4;
}
body main #galleri-section #galleri-slice1 {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: 600px;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  body main #galleri-section #galleri-slice1 {
    grid-template-rows: 400px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section #galleri-slice1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
body main #galleri-section #galleri-slice1 #galleri-img12 {
  grid-column: 1/2;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice1 #galleri-img13 {
  grid-column: 2/3;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice1 #galleri-img14 {
  grid-column: 3/4;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice2 {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: 600px;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  body main #galleri-section #galleri-slice2 {
    grid-template-rows: 400px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section #galleri-slice2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
body main #galleri-section #galleri-slice2 #galleri-img15 {
  grid-column: 1/2;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice2 #galleri-img16 {
  grid-column: 2/3;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice2 #galleri-img17 {
  grid-column: 3/4;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice3 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 600px;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  body main #galleri-section #galleri-slice3 {
    grid-template-rows: 400px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section #galleri-slice3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
body main #galleri-section #galleri-slice3 #galleri-img18 {
  grid-column: 1/2;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice3 #galleri-img19 {
  grid-column: 2/3;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice4 {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: 600px;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  body main #galleri-section #galleri-slice4 {
    grid-template-rows: 400px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section #galleri-slice4 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
body main #galleri-section #galleri-slice4 #galleri-img20 {
  grid-column: 1/2;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice4 #galleri-img21 {
  grid-column: 2/3;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice4 #galleri-img22 {
  grid-column: 3/4;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice5 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 600px;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  body main #galleri-section #galleri-slice5 {
    grid-template-rows: 400px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section #galleri-slice5 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
body main #galleri-section #galleri-slice5 #galleri-img23 {
  grid-column: 1/2;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice5 #galleri-img24 {
  grid-column: 2/3;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice5 #galleri-img24 img {
  -o-object-position: bottom;
     object-position: bottom;
}
body main #galleri-section #galleri-slice6 {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 500px 500px;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  body main #galleri-section #galleri-slice6 {
    grid-template-rows: 300px 300px;
  }
}
@media screen and (max-width: 700px) {
  body main #galleri-section #galleri-slice6 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
body main #galleri-section #galleri-slice6 #galleri-img25 {
  grid-column: 1/2;
  grid-row: 1/3;
}
body main #galleri-section #galleri-slice6 #galleri-img26 {
  grid-column: 2/3;
  grid-row: 1/2;
}
body main #galleri-section #galleri-slice6 #galleri-img27 {
  grid-column: 2/3;
  grid-row: 2/3;
}
body main #galleri-booking-knap {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}
body main #galleri-booking-knap .cta {
  background-color: #364626;
  color: #FEFBF3;
  padding: 10px 30px 10px 30px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 20px;
  transition: all 0.3s;
}
body main #galleri-booking-knap .cta:hover {
  scale: 105%;
}
body main #omgivelser-hero {
  margin-left: 25px;
  margin-right: 25px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 4fr 3fr;
  gap: 15px;
  max-height: 650px;
  min-height: 400px;
}
@media screen and (max-width: 700px) {
  body main #omgivelser-hero {
    margin-left: 10px;
    margin-right: 10px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
body main #omgivelser-hero #omgivelser-img1-container {
  grid-row: 1/2;
  grid-column: 1/2;
  overflow: hidden;
}
body main #omgivelser-hero #omgivelser-img1-container img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
body main #omgivelser-hero #omgivelser-img2-container {
  grid-row: 2/3;
  grid-column: 1/2;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  body main #omgivelser-hero #omgivelser-img2-container {
    display: none;
  }
}
body main #omgivelser-hero #omgivelser-img2-container img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
body main #omgivelser-hero #omgivelser-img3-container {
  grid-row: 1/3;
  grid-column: 2/3;
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  body main #omgivelser-hero #omgivelser-img3-container {
    display: none;
  }
}
body main #omgivelser-hero #omgivelser-img3-container img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
body main #om-området {
  padding-left: 100px;
  padding-right: 100px;
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 100px;
}
@media screen and (max-width: 900px) {
  body main #om-området {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  body main #om-området {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 700px) {
  body main #om-området {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
body main #om-området #omgivelser-tekst1 {
  grid-column: 1/2;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  line-height: 1.3em;
}
body main #om-området #omgivelser-img-container1 {
  grid-column: 2/3;
  height: 500px;
}
@media screen and (max-width: 700px) {
  body main #om-området #omgivelser-img-container1 {
    height: 300px;
  }
}
body main #om-området #omgivelser-img-container1 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main #dyreliv {
  padding-left: 100px;
  padding-right: 100px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 100px;
}
@media screen and (max-width: 900px) {
  body main #dyreliv {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  body main #dyreliv {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 700px) {
  body main #dyreliv {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
body main #dyreliv #omgivelser-img-container2 {
  grid-column: 1/2;
  grid-row: 1/2;
  height: 500px;
}
@media screen and (max-width: 700px) {
  body main #dyreliv #omgivelser-img-container2 {
    height: 300px;
  }
}
body main #dyreliv #omgivelser-img-container2 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main #dyreliv #omgivelser-tekst2 {
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  line-height: 1.3em;
}
body footer {
  grid-row: 3/4;
}
body footer #footer {
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 50px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 50px;
}
@media screen and (max-width: 900px) {
  body footer #footer {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 700px) {
  body footer #footer {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 1000px) {
  body footer #footer {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}
@media screen and (max-width: 700px) {
  body footer #footer {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
body footer #footer h3 {
  color: #364626;
}
body footer #footer .footer-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
body footer #footer #footer-links-container {
  grid-column: 1/2;
  display: flex;
  justify-content: start;
}
body footer #footer #footer-links-container #footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body footer #footer #footer-links-container #footer-links a {
  color: black;
}
body footer #footer #footer-kontakt-container {
  grid-column: 2/3;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  body footer #footer #footer-kontakt-container {
    justify-content: start;
  }
}
body footer #footer #footer-kontakt-container #footer-kontakt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body footer #footer #footer-kontakt-container #footer-kontakt a {
  color: black;
}
body footer #footer #footer-logo-container {
  grid-column: 3/4;
  display: flex;
  justify-content: end;
  align-items: end;
}
@media screen and (max-width: 1000px) {
  body footer #footer #footer-logo-container {
    grid-column: 1/2;
    grid-row: 2/3;
    justify-content: start;
  }
}
body footer #footer #footer-logo-container #logo-footer {
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: end;
  border: 3px solid #364626;
  padding: 10px;
  white-space: nowrap;
}
body footer #footer #footer-logo-container #logo-footer p {
  font-family: "Niagara Engraved", sans-serif;
  font-weight: normal;
  font-size: 2.5rem;
  color: #364626;
}
@media screen and (max-width: 400px) {
  body footer #footer #footer-logo-container #logo-footer p {
    font-size: 2rem;
  }
}
body footer #footer #footer-logo-container #logo-footer img {
  height: 4rem;
}/*# sourceMappingURL=style.css.map */