* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
* a {
  text-decoration: none;
}

:root {
  /* VARIABLES */
  /* Shadow */
  --SHADOWS: 0 4px 8px 0 rgba(21,21,21,.2);
  --MODAL-SHADOW: 0 8px 8px 5px rgba(0, 0, 0, 0.2);
  --BTN-GLOW: 0 8px 24px 0 rgba(255,235,167,.2);
  --BTN-HOVER-ACTIVE: 0 8px 24px 0 rgba(214, 31, 31, 0.446);
  --LI-GLOW: 0px 0px 10px red; /* text-shadow */
  /* Padding */
  --MARGIN: 1.5rem;
  /* Color */
  --BG-COLOR: #302A26;
  --BG-COLOR-MODAL: #535353;
  --MAIN-COLOR: #ffeba7;
  --FONT-COLOR: #ffeba7;
  --P-COLOR: #bebebe;
  --BG-COLOR-CARD: #404040;
  --FORM-COLOR: #232323;
  --ACCENT-COLOR: #8b0000;
  --ACCENT-RED: #fc0000;
  --CELL-LI-ACTIVE: #ffffff;
  --PNG-COLOR: invert(86%) sepia(39%) saturate(404%) hue-rotate(336deg) brightness(104%) contrast(104%);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  max-width: 2000px;
  color: var(--P-COLOR);
  background-color: var(--BG-COLOR);
  margin: auto;
  overflow-x: hidden;
}
body nav {
  background-color: var(--BG-COLOR);
  position: fixed;
  right: 0;
  top: 0;
  height: 18rem;
  width: 37%;
  text-transform: uppercase;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  z-index: 50;
}
body nav .nav-list {
  list-style-type: none;
  margin-top: 8rem;
}
body nav .nav-links {
  color: var(--MAIN-COLOR);
  text-decoration: none;
  padding: 0.75rem 2rem;
  display: block;
  width: 100%;
}
body nav .nav-links:hover {
  color: var(--ACCENT-RED);
  text-shadow: var(--LI-GLOW);
}
body nav .nav-close {
  float: right;
  margin-top: 1.8rem;
  margin-right: 1.92rem;
  width: 1.7rem;
  height: 1.7rem;
  fill: var(--MAIN-COLOR);
}
body nav .nav-close:hover {
  fill: var(--ACCENT-RED);
  text-shadow: var(--LI-GLOW);
}
body header {
  width: 100%;
  height: 5rem;
  max-width: 2020px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 30;
}
body header .logo {
  font-size: 1.2rem;
  margin: 1.5rem 2rem;
  color: var(--MAIN-COLOR);
  text-decoration: none;
  font-weight: 700;
}
body header .logo span {
  color: var(--ACCENT-RED);
}
body header .menu {
  min-width: 1.9rem;
  max-width: 1.9rem;
  margin: 0rem 2.1rem 0 0.5rem;
  z-index: 41;
  fill: var(--MAIN-COLOR);
}
body header .menu:hover {
  fill: var(--ACCENT-RED);
  text-shadow: var(--LI-GLOW);
}
body .open-nav {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
body .back {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}
body .top {
  font-size: small;
  text-align: center;
  margin-top: 8em;
  margin-bottom: 1.4em;
}
body h6 span {
  padding: 0 20px;
  text-transform: uppercase;
  font-weight: 700;
}
body .kontakt {
  margin-left: -1.2rem;
}
body .om {
  padding-left: 1.2rem;
}
body .section {
  position: relative;
  width: 100%;
  display: block;
  z-index: 10;
  margin-bottom: 0.8rem;
}
body .full-height {
  min-height: 100vh;
}
body [type=checkbox]:checked,
body [type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
body label {
  z-index: 50;
}
body .checkbox:checked + label,
body .checkbox:not(:checked) + label {
  position: relative;
  display: block;
  text-align: center;
  width: 100px;
  height: 16px;
  border-radius: 8px;
  padding: 0;
  margin: 10px auto;
  cursor: pointer;
  background-color: var(--MAIN-COLOR);
}
body .checkbox:checked + label:before,
body .checkbox:not(:checked) + label:before {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--MAIN-COLOR);
  background-color: var(--ACCENT-COLOR);
  font-family: "unicons";
  content: "\eb4f";
  top: -10px;
  left: -10px;
  line-height: 36px;
  text-align: center;
  font-size: 24px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
body .checkbox:checked + label:before {
  -webkit-transform: translateX(80px) rotate(-270deg);
          transform: translateX(80px) rotate(-270deg);
}
body .card-3d-wrap {
  position: relative;
  margin: auto;
  width: 500px;
  max-width: 100%;
  height: 520px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 800px;
          perspective: 800px;
  margin-top: 7rem;
}
body .card-3d-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  left: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
}
body .card-front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95%;
  height: 100%;
  background-color: var(--BG-COLOR-CARD);
  background-image: url(../bakgrund/strokes.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 220%;
  position: absolute;
  border-radius: 6px;
  -webkit-box-shadow: var(--MODAL-SHADOW);
          box-shadow: var(--MODAL-SHADOW);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: clip;
}
body .checkbox:checked ~ .card-3d-wrap .card-3d-wrapper {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
body .center-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 95%;
  height: 100vh;
  margin-top: 8.95rem;
  -webkit-transform: translate3d(0, -50%, 35px) perspective(100px);
          transform: translate3d(0, -50%, 35px) perspective(100px);
  z-index: 0;
}
body .input-icon-mail {
  position: relative;
  top: 245px;
  left: 0.5rem;
  height: 33px;
  font-size: 24px;
  line-height: 48px;
  text-align: left;
  z-index: 40;
  -webkit-filter: var(--PNG-COLOR);
          filter: var(--PNG-COLOR);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
body .form-style {
  margin-top: 12.3rem;
  padding: 13px 13px 13px 53px;
  height: 48px;
  width: 100%;
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.5px;
  outline: none;
  color: var(--P-COLOR);
  background-color: var(--FORM-COLOR);
  border: none;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-box-shadow: var(--SHADOWS);
          box-shadow: var(--SHADOWS);
}
body .form-style .form-style:focus,
body .form-style .form-style:active {
  border: none;
  outline: none;
  -webkit-box-shadow: var(--SHADOWS);
          box-shadow: var(--SHADOWS);
}
body .form-group {
  position: relative;
  width: 100%;
  z-index: 20;
}
body .input-icon-write {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  height: 33px;
  font-size: 24px;
  line-height: 48px;
  z-index: 40;
  -webkit-filter: var(--PNG-COLOR);
          filter: var(--PNG-COLOR);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
body .skriv {
  font-family: "poppins", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 13px 13px 13px 53px;
  height: 22.3rem;
  width: 100%;
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.5px;
  outline: none;
  color: var(--P-COLOR);
  background-color: var(--FORM-COLOR);
  border: none;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  -webkit-box-shadow: var(--SHADOWS);
          box-shadow: var(--SHADOWS);
  z-index: 20;
}
body .card-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95%;
  height: 100%;
  background-color: var(--BG-COLOR-CARD);
  background-image: url(../bakgrund/strokes.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 220%;
  border-radius: 6px;
  -webkit-box-shadow: var(--MODAL-SHADOW);
          box-shadow: var(--MODAL-SHADOW);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: clip;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
body .card-back .center-wrap-back {
  display: grid;
  height: 550px;
  margin: 31.4rem auto 0 auto;
  padding: 0;
}
body .card-back .center-wrap-back .section-back {
  position: relative;
}
body .card-back .center-wrap-back .section-back .om-article {
  font-size: 1rem;
  height: 500px;
  width: 100%;
  margin-top: 3rem;
  background-color: var(--FORM-COLOR);
  border-radius: 4px;
  z-index: 20;
}
body .card-back .center-wrap-back .section-back .om-article p {
  padding: 1rem;
  z-index: 40;
}
body .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .form-group input:-ms-input-placeholder {
  color: var(--P-COLOR);
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
body .form-group input::-moz-placeholder {
  color: var(--P-COLOR);
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}
body .form-group input:-moz-placeholder {
  color: var(--P-COLOR);
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}
body .form-group input::-webkit-input-placeholder {
  color: var(--P-COLOR);
  opacity: 0.7;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
body .form-group input:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
body .form-group input:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}
body .form-group input:focus:-moz-placeholder {
  opacity: 0;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  transition: all 200ms linear;
}
body .form-group input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
body .btn-front {
  display: -ms-inline-flexbox;
  width: 120px;
  margin-top: 0.8rem;
  text-decoration: none;
  border-radius: 20px;
  height: 40px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  padding: 0 30px;
  letter-spacing: 1px;
  -moz-align-items: center;
  -ms-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  border: none;
  background-color: var(--MAIN-COLOR);
  color: var(--ACCENT-COLOR);
  -webkit-box-shadow: var(--BTN-GLOW);
          box-shadow: var(--BTN-GLOW);
}
body .btn-front:active,
body .btn-front:focus {
  background-color: var(--ACCENT-COLOR);
  color: var(--MAIN-COLOR);
  -webkit-box-shadow: var(--BTN-HOVER-ACTIVE);
          box-shadow: var(--BTN-HOVER-ACTIVE);
}
body .btn-front:hover {
  background-color: var(--ACCENT-COLOR);
  color: var(--MAIN-COLOR);
  -webkit-box-shadow: var(--BTN-HOVER-ACTIVE);
          box-shadow: var(--BTN-HOVER-ACTIVE);
}
body footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: sticky;
  bottom: 0.1px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 3rem;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1rem;
  margin-right: -2rem;
  background-color: var(--BG-COLOR);
  -webkit-box-shadow: 0px 0 15px 12px var(--BG-COLOR);
          box-shadow: 0px 0 15px 12px var(--BG-COLOR);
  z-index: 30;
}
body footer .gk-link {
  cursor: pointer;
  text-decoration: none;
  color: var(--MAIN-COLOR);
  z-index: 30;
}
body footer .gk-link:hover {
  text-shadow: var(--BTN-GLOW);
}
body dialog::-webkit-backdrop {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-animation: fade-in 200ms forwards;
          animation: fade-in 200ms forwards;
}
body dialog::backdrop {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-animation: fade-in 200ms forwards;
          animation: fade-in 200ms forwards;
}
body dialog[open] {
  -webkit-animation: fade-in 500ms forwards;
          animation: fade-in 500ms forwards;
}
body dialog:not([open]) {
  display: none;
  -webkit-animation: fade-out 500ms forwards;
          animation: fade-out 500ms forwards;
}
body dialog {
  display: none;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--BG-COLOR-MODAL);
  background-image: url(../bakgrund/strokes.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
  height: 550px;
  width: 90vw;
  max-width: 510px;
  margin: 16.5rem auto 0 auto;
  top: 80px;
  padding: 12px;
  border-radius: 5px;
  -webkit-box-shadow: var(--MODAL-SHADOW);
          box-shadow: var(--MODAL-SHADOW);
  z-index: 45;
  overflow: hidden;
}
body dialog dialog::-webkit-backdrop {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-animation: fade-in 200ms forwards;
          animation: fade-in 200ms forwards;
}
body dialog dialog::backdrop {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-animation: fade-in 200ms forwards;
          animation: fade-in 200ms forwards;
}
body dialog .success-message {
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 12rem;
  color: var(--MAIN-COLOR);
  font-size: 5rem;
}
body dialog .modal-footer {
  display: grid;
  grid-template-columns: auto;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-top: 1rem;
}
body dialog .modal-footer .modal-footer-close {
  cursor: pointer;
  border: none;
  fill: var(--MAIN-COLOR);
  background-color: var(--BG-COLOR-MODAL);
}
body dialog .modal-footer .modal-footer-close svg {
  width: 30px;
  height: 30px;
}
body .error-modal {
  display: none;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--BG-COLOR-MODAL);
  background-image: url(../bakgrund/strokes.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
  height: 550px;
  width: 90vw;
  max-width: 510px;
  margin: 16.5rem auto 0 auto;
  top: 80px;
  padding: 12px;
  border-radius: 5px;
  -webkit-box-shadow: var(--MODAL-SHADOW);
          box-shadow: var(--MODAL-SHADOW);
  z-index: 45;
  overflow: hidden;
}
body .error-modal .error-message {
  display: grid;
  justify-items: center;
  padding: 3rem auto;
  margin-top: 4rem;
  color: var(--MAIN-COLOR);
  font-size: 2rem;
}
body .error-modal .error-message .em-head {
  font-size: 2.5rem;
}
body .error-modal .error-message .em-p {
  text-align: center;
  margin-top: 4rem;
}

@media only screen and (min-width: 500px) {
  footer {
    height: -30rem;
  }
}
@media only screen and (min-width: 920px) {
  body {
    padding: 0;
  }
  body nav {
    width: 25%;
  }
  body nav .nav-close {
    margin-top: 1.7rem;
    margin-right: 5rem;
  }
  body header {
    height: 6rem;
    margin: auto;
  }
  body header .logo {
    margin-left: 5.9rem;
  }
  body header .menu {
    margin-top: -0.98rem;
    margin-right: 4.9rem;
  }
  @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes fade-out {
    100% {
      opacity: 1;
    }
    0% {
      opacity: 0;
    }
  }
  @keyframes fade-out {
    100% {
      opacity: 1;
    }
    0% {
      opacity: 0;
    }
  }
}/*# sourceMappingURL=om_kontakt.css.map */