*, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ECE6DA;
}
body.dark {
  background-color: #525A20;
}
body.dark h1, body.dark h2, body.dark h3, body.dark h4, body.dark h5, body.dark p, body.dark a {
  color: #ECE6DA;
}
body header .menu-icon {
  position: absolute;
  right: 5.15vw;
  top: 4.7vw;
  width: 2.4vw;
  height: 2vw;
  z-index: 15;
  cursor: pointer;
  background-color: blue;
}
@media (max-width: 640px) {
  body header .menu-icon {
    /* width: 30px;
    height: 32px; */
    margin: 0;
    padding: 0 0 0 0;
    margin-top: calc(3.776vw - 9px);
  }
}
@media (max-width: 440px) {
  body header .menu-icon {
    /* width: 30px;
    height: 32px; */
    margin: 0;
    padding: 0 11.198vw 0 0;
    margin-top: calc(5.526vw - 9px);
  }
}
body header .menu-icon article {
  height: 0.469vw;
  position: relative;
  margin-top: -10px;
}
body header .menu-icon span {
  display: block;
  width: 100%;
  height: 0.104vw;
  background-color: #FFFFFF;
  position: absolute;
  transition-duration: 0.6s;
  transition-delay: 0.1s;
}
@media (max-width: 1440px) {
  body header .menu-icon span {
    height: 1.6px;
  }
}
body header .menu-icon span {
  /* @media(max-width: 640px){
      height: 1px;
  } */
}
body header .menu-icon span:first-child {
  top: 9px;
  margin-bottom: 9px;
}
body header .menu-icon span.middle {
  top: 18px;
  margin-bottom: 9px;
}
body header .menu-icon span:last-child {
  top: 27px;
}
body header .menu-icon.open span:first-child {
  transform: rotate(45deg);
  top: 18px;
}
body header .menu-icon.open span.middle {
  opacity: 0;
}
body header .menu-icon.open span:last-child {
  transform: rotate(-45deg);
  top: 18px;
}
body header .menu-icon.no-click {
  pointer-events: none;
}
body header .ham-menu {
  position: absolute;
  right: 6.298vw;
  /* opacity: 1; */
  z-index: 15;
  list-style: none;
  transition-duration: 0.3s;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  margin-top: 4.2vw;
}
@media (max-width: 1439px) {
  body header .ham-menu {
    margin-top: 7vw;
  }
}
@media (max-width: 840px) {
  body header .ham-menu {
    margin-top: 10vw;
  }
}
@media (max-width: 640px) {
  body header .ham-menu {
    right: 0;
    margin: 0;
    /* padding-right: 3.817vw;
    padding-bottom: 25vh; */
    height: 100vh;
    width: 100vw;
    margin-top: -4.896vw;
    justify-content: start;
    align-items: center;
    padding-left: 12.257vw;
    align-items: center;
  }
}
@media (max-width: 640px) and (min-height: 180vw) {
  body header .ham-menu {
    align-items: start;
    padding-top: 30.896vw;
  }
}
body header .ham-menu .ham-text {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
body header .ham-menu .ham-text li a {
  position: relative;
  opacity: 0;
  z-index: 15;
  text-decoration: none;
  color: #000000;
  padding: 0.26vw 0;
  display: block;
  text-align: center;
  /* @media(max-width: 500px){font-size: 7vw;} */
  transition: padding 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
  /* ny css */
}
body header .ham-menu .ham-text li a .menu-arrow {
  opacity: 0;
  transition: opacity 0.3s 0.1s ease, right 0.4s ease;
  margin-left: 0.5vw;
  width: 15px;
  position: absolute;
  right: -25px;
}
body header .ham-menu .ham-text li a:hover {
  /* color: #69756E!important; */
  padding-right: 25px;
  /* &.current{
      margin-right: 0;
  } */
  /* ny css */
}
body header .ham-menu .ham-text li a:hover .menu-arrow {
  opacity: 1;
  right: 0;
}
@media (max-width: 640px) {
  body header .ham-menu .ham-text li a:hover {
    padding-right: 0;
  }
}
body header .ham-menu .ham-text li a {
  font-size: 1.302vw;
  font-weight: 300;
}
@media (max-width: 1280px) {
  body header .ham-menu .ham-text li a {
    font-size: 20px;
  }
}
@media (max-width: 1080px) {
  body header .ham-menu .ham-text li a {
    padding: 5px 0;
    /* font-size: 25px; */
  }
}
@media (max-width: 640px) {
  body header .ham-menu .ham-text li a {
    /* color: #FFFFFF; */
    padding: 10px 0;
    font-size: 30px;
  }
}
@media (max-width: 440px) {
  body header .ham-menu .ham-text li a {
    /* color: #FFFFFF; */
    padding: 2.5vw 0;
    font-size: 6.36vw;
  }
}
body header .ham-menu .ham-text li a.current {
  /* color: #69756E!important; */
}
body header .ham-menu .ham-text li a .current-marker {
  padding-top: 5px;
  margin-right: 2px;
}
body header .ham-menu .ham-text li a {
  /* Underline animation */
  /* display: inline-block;
  position: relative;
  &::after{
      content: '';
      position: absolute;
      width: 100%;
      transform: scaleX(0);
      height: 1px;
      bottom: 0;
      left: 0;
      background-color: #000000;
      transition: transform 0.4s ease-out;
  }
  &:hover::after{
      transform: scaleX(1);
  }
  &::after{
      transform-origin: bottom right;
  }
  &:hover::after{
      transform-origin: bottom left;
  } */
}
@media (max-width: 640px) {
  body header .ham-menu .ham-text {
    align-items: start;
  }
}
body header .ham-menu .ham-text.white li a {
  color: #FFFFFF !important;
}
@media (max-width: 500px) {
  body header .ham-menu {
    font-size: 7vw;
  }
}
body header .show {
  opacity: 1 !important;
  z-index: 10;
  pointer-events: auto;
  /* @media(max-width: 640px){
  background-color: #69756E;
  } */
}
body main .hero-section {
  height: 100vh;
  width: 100vw;
  position: relative;
  border-radius: 0.7292vw;
  padding: 1.5vw;
}
@media (max-width: 1280px) {
  body main .hero-section {
    padding: 3vw;
  }
}
body main .hero-section .hero-video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  position: relative;
  overflow: hidden;
  border-radius: 0.7292vw;
}
body main .hero-section .hero-video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main .hero-section .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 25vw;
  height: auto;
  min-width: 300px;
  fill: #59361B;
}
body main .intro-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8.85vw 12.24vw 7.7vw 4.75vw;
}
@media (max-width: 1280px) {
  body main .intro-section {
    padding: 8.85vw 4.75vw 7.7vw 4.75vw;
  }
}
@media (max-width: 640px) {
  body main .intro-section {
    flex-direction: column;
    padding: 8.85vw 4.75vw 7.7vw 4.75vw;
  }
}
body main .intro-section h1 {
  font-weight: 300;
  margin-bottom: 2vw;
  letter-spacing: 2%;
}
body main .intro-section h1 strong {
  color: #525A20;
  font-weight: 600;
}
body main .intro-section .text-div {
  display: flex;
  flex-direction: column;
  /* width: 35.2vw; */
  /* margin-top: 2vw;
  margin-left: 5vw; */
}
body main .intro-section .text-div article {
  margin-bottom: 5vw;
}
body main .intro-section .text-div article h3 {
  font-size: 2vw;
  margin-bottom: 1vw;
}
body main .intro-section .text-div article h4 {
  font-size: 1.5vw;
  margin-top: 1vw;
  margin-bottom: 0.2vw;
}
body main .intro-section .img-div {
  width: 21.1vw;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  display: flex;
  align-items: end;
}
@media (max-width: 640px) {
  body main .intro-section .img-div {
    width: 100%;
    justify-content: end;
  }
}
body main .intro-section .img-div svg {
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  body main .intro-section .img-div svg {
    width: 45%;
  }
}
body main .pin-div {
  height: -moz-fit-content;
  height: fit-content;
}
body main .pin-div .trad-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100vw;
  height: 20vw;
  margin-left: 10vw;
  position: absolute;
  top: 0;
  left: 0;
}
body main .pin-div .trad-div .trad_1 {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0px;
  left: 100px;
}
body main .pin-div .trad-div .trad_2 {
  width: 150px;
  height: 150px;
  margin-left: 2vw;
  position: absolute;
  top: 170px;
  left: 200px;
  transform: scale(-1, 1);
}
body main .pin-div .trad-div .granar {
  width: 170px;
  height: 170px;
  margin-left: 2vw;
  position: absolute;
  top: 200px;
  left: 10px;
}
body main .pin-div .trad-div #outline {
  stroke: #1a1a1a;
  stroke-width: 2.5px;
  stroke-linecap: round;
}
body main .pin-div .trad-div .lov, body main .pin-div .trad-div .granar {
  fill: #525A20;
}
body main .pin-div .trad-div .stam {
  fill: #59361B;
}
body main .pin-div .text-div {
  padding: 0vw 0vw 20vw 45vw;
  width: 100vw;
}
body main .pin-div #text-div1 {
  padding-top: 10vw;
  padding-bottom: 40vw;
  margin-top: 20vw;
}
body main .pin-div #text-div2 {
  padding-bottom: 30vw;
  padding-top: 10vw;
}
body main .pin-div {
  /* .stam-2, .stam2-2, .lov2, .lov2-2{
      visibility: hidden;
  } */
}
body main .tjanster-section {
  display: flex;
  flex-direction: column;
  background-color: #525A20;
  position: relative;
}
body main .tjanster-section .divider {
  width: 100%;
  height: 10%;
  background-image: url(img/brush-divider.png);
  position: absolute;
  top: 0;
  margin-top: -1px;
  background-size: contain;
  background-repeat: no-repeat;
}
body main .tjanster-section h2, body main .tjanster-section h4, body main .tjanster-section h5, body main .tjanster-section p {
  color: #ECE6DA;
}
body main .tjanster-section {
  /* h4{
      font-family: 'Winky Sans';
  } */
}
body main .tjanster-section .tjanster-content {
  padding: 5.573vw 13.9vw 7.5vw 4.84vw;
}
@media (max-width: 1280px) {
  body main .tjanster-section .tjanster-content {
    padding: 5.573vw 4.84vw 9.5vw 4.84vw;
  }
}
@media (max-width: 640px) {
  body main .tjanster-section .tjanster-content {
    padding: 12vw 4.84vw 9.5vw 4.84vw;
  }
}
body main .tjanster-section .tjanster-content .rows-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
body main .tjanster-section .tjanster-content .rows-div .row-div {
  /* &:nth-child(3){
      margin-right: 10vw;
  } */
}
body main .tjanster-section .tjanster-content .rows-div .row-div article {
  margin-bottom: 3.2vw;
}
@media (max-width: 1280px) {
  body main .tjanster-section .tjanster-content .rows-div .row-div article {
    margin-bottom: 4.2vw;
  }
}
@media (max-width: 640px) {
  body main .tjanster-section .tjanster-content .rows-div .row-div article {
    margin-bottom: 7.2vw;
  }
}
body main .tjanster-section .tjanster-content .tjanster-video {
  width: 25.05vw;
  height: 32.1354vw;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1280px) {
  body main .tjanster-section .tjanster-content .tjanster-video {
    font-size: 1.55vw;
  }
}
@media (max-width: 640px) {
  body main .tjanster-section .tjanster-content .tjanster-video {
    display: none;
  }
}
body main .tjanster-section .tjanster-content .tjanster-video video, body main .tjanster-section .tjanster-content .tjanster-video img {
  width: 100%;
  height: 150%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main .tjanster-section .tjanster-content h2 {
  margin-bottom: 5vw;
}
body main .tjanster-section .tjanster-content h5 {
  /* margin-top: 1vw; */
  margin-bottom: 0.2vw;
}
body main .tjanster-section .tjanster-content p {
  font-size: 1vw;
}
@media (max-width: 1280px) {
  body main .tjanster-section .tjanster-content p {
    font-size: 1.55vw;
  }
}
@media (max-width: 640px) {
  body main .tjanster-section .tjanster-content p {
    font-size: 2.56vw;
  }
}
body main .om-section {
  display: flex;
  flex-direction: column;
  padding: 5.573vw 4.84vw 5.573vw 4.84vw;
}
@media (max-width: 1280px) {
  body main .om-section {
    padding: 5.5vw 4.84vw 5.573vw 4.84vw;
  }
}
@media (max-width: 640px) {
  body main .om-section {
    padding: 12vw 4.84vw 5.573vw 4.84vw;
  }
}
body main .om-section {
  /* background-color: #59361B;
  h2, h4, p{
      color: #ECE6DA;
  } */
}
body main .om-section h2 {
  margin-bottom: 2vw;
}
body main .om-section .om-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
body main .om-section .om-div .img-div {
  width: 25vw;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  margin-top: 3.4vw;
}
@media (max-width: 1280px) {
  body main .om-section .om-div .img-div {
    width: 25vw;
  }
}
@media (max-width: 640px) {
  body main .om-section .om-div .img-div {
    display: none;
  }
}
body main .om-section .om-div .img-div img {
  width: 100%;
  height: 32.1vw;
  -o-object-fit: cover;
     object-fit: cover;
}
body main .om-section .om-div .img-div {
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100vw;
  height: 20vw;
  margin-left: 10vw;
  position: absolute;
  top: 0;
  left: 0; */
}
body main .om-section .om-div .img-div .trad_1 {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0px;
  left: 100px;
}
body main .om-section .om-div .img-div .trad_2 {
  width: 150px;
  height: 150px;
  margin-left: 2vw;
  position: absolute;
  top: 170px;
  left: 200px;
  transform: scale(-1, 1);
}
body main .om-section .om-div .img-div .granar {
  width: 170px;
  height: 170px;
  margin-left: 2vw;
  position: absolute;
  top: 200px;
  left: 10px;
}
body main .om-section .om-div .img-div #outline {
  stroke: #1a1a1a;
  stroke-width: 2.5px;
  stroke-linecap: round;
}
body main .om-section .om-div .img-div .lov, body main .om-section .om-div .img-div .granar {
  fill: #525A20;
}
body main .om-section .om-div .img-div .stam {
  fill: #59361B;
}
body main .om-section .om-div .text-div {
  display: flex;
  flex-direction: column;
  width: 37.9vw;
  /* margin-top: 2vw;
  margin-left: 5vw; */
}
@media (max-width: 1280px) {
  body main .om-section .om-div .text-div {
    width: 56.2vw;
  }
}
@media (max-width: 640px) {
  body main .om-section .om-div .text-div {
    width: 100%;
  }
}
body main .om-section .om-div .text-div article h3 {
  font-size: 2vw;
  margin-bottom: 1vw;
}
body main .om-section .om-div .text-div article h4 {
  font-size: 1.5vw;
  margin-top: 1vw;
  margin-bottom: 0.2vw;
}
body main .kontakt-section {
  display: flex;
  flex-direction: column;
  padding: 5.76vw 4.84vw 7.8vw 4.84vw;
}
@media (max-width: 1280px) {
  body main .kontakt-section {
    padding: 7.76vw 4.84vw 12.8vw 4.84vw;
  }
}
@media (max-width: 640px) {
  body main .kontakt-section {
    padding: 17.76vw 4.84vw 25.8vw 4.84vw;
  }
}
body main .kontakt-section .rows-div {
  display: flex;
  flex-direction: row;
}
@media (max-width: 640px) {
  body main .kontakt-section .rows-div {
    flex-direction: column;
  }
}
body main .kontakt-section .rows-div img {
  width: 23.75vw;
}
@media (max-width: 1280px) {
  body main .kontakt-section .rows-div img {
    width: 32vw;
  }
}
@media (max-width: 640px) {
  body main .kontakt-section .rows-div img {
    width: 80%;
    margin-bottom: 7vw;
  }
}
body main .kontakt-section .rows-div img {
  transform: rotate(2.5deg);
}
body main .kontakt-section .rows-div .row-div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
body main .kontakt-section .rows-div .row-div article {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-left: 4.84vw;
}
@media (max-width: 640px) {
  body main .kontakt-section .rows-div .row-div article {
    margin-left: 0;
  }
}
body main .kontakt-section .rows-div .row-div article h2 {
  margin-bottom: 2.6vw;
}
body main .kontakt-section .rows-div .row-div article p {
  /* font-size: 1.56vw; */
  line-height: 150%;
}
body main .kontakt-section svg {
  width: 20vw;
}
body main .kontakt-section h2.mb {
  margin-bottom: 5vw;
}
body main footer {
  padding: 1.5vw 0 1.5vw 0;
  display: flex;
  justify-content: center;
  /* border-top: #59361B solid 0.5px; */
  background-color: #525A20;
}
body main footer svg {
  width: 100px;
  height: auto;
}
body main footer svg path {
  fill: #ECE6DA;
}

h1, h2 {
  color: #59361B;
}

h3, h4, h5, a, p {
  font-family: "DM Sans";
  color: #59361B;
}

h1, h2, h3, h4, h5 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 2vw;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
}
@media (max-width: 1280px) {
  h1 {
    font-size: 3.125vw;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 4.35vw;
  }
}

h2 {
  font-family: "Winky Sans";
  font-size: 3.23vw;
  line-height: 120%;
}
@media (max-width: 1280px) {
  h2 {
    font-size: 4vw;
  }
}
@media (max-width: 640px) {
  h2 {
    font-size: 7.95vw;
  }
}

h4 {
  font-size: 1.35vw;
}
@media (max-width: 1280px) {
  h4 {
    font-size: 1.55vw;
  }
}
@media (max-width: 640px) {
  h4 {
    font-size: 3.1vw;
  }
}
h4.over-rubrik {
  margin-bottom: 1.1vw;
}

h5 {
  font-size: 1.5vw;
}
@media (max-width: 1280px) {
  h5 {
    font-size: 2.1vw;
  }
}
@media (max-width: 640px) {
  h5 {
    font-size: 3.3vw;
  }
}

p {
  font-family: "DM Sans";
  color: #59361B;
  font-size: 1.07vw;
  line-height: 175%;
}
@media (max-width: 1280px) {
  p {
    font-size: 1.8vw;
  }
}
@media (max-width: 640px) {
  p {
    font-size: 15px;
  }
}

img {
  border-radius: 0.4vw;
}/*# sourceMappingURL=style.css.map */