/*@mixin screen-rwd($screen) {
    @media (min-width: $screen+'px') {
        @content;
    }
}*/
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,300;0,700;0,800;1,300;1,700&display=swap");
html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgb(34, 34, 34);
}

::-moz-selection {
  background-color: rgb(31, 138, 255);
  color: rgb(254, 254, 254);
}

::selection {
  background-color: rgb(31, 138, 255);
  color: rgb(254, 254, 254);
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 64px auto;
}
.flex-container .col-4,
.flex-container .col-5,
.flex-container .col-6,
.flex-container .col-7,
.flex-container .col-8,
.flex-container .col-9,
.flex-container .col-10,
.flex-container .col-11,
.flex-container .col-12, .flex-container .col-1,
.flex-container .col-2,
.flex-container .col-3 {
  padding: 4% 8%;
}
.flex-container .col-1,
.flex-container .col-2,
.flex-container .col-3 {
  width: 50%;
}
.flex-container .col-4,
.flex-container .col-5,
.flex-container .col-6,
.flex-container .col-7,
.flex-container .col-8,
.flex-container .col-9,
.flex-container .col-10,
.flex-container .col-11,
.flex-container .col-12 {
  width: 100%;
}

@media (min-width: 960px) {
  .row-reverse {
    flex-direction: row-reverse;
  }
  .flex-container .col-1,
  .flex-container .col-2,
  .flex-container .col-3, .flex-container .col-4,
  .flex-container .col-5,
  .flex-container .col-6,
  .flex-container .col-7,
  .flex-container .col-8,
  .flex-container .col-9,
  .flex-container .col-10,
  .flex-container .col-11,
  .flex-container .col-12 {
    padding: 0 4% 8% 4%;
  }
  .flex-container .col-1 {
    max-width: calc(100% / 12 * 1);
  }
  .flex-container .col-2 {
    max-width: calc(100% / 12 * 2);
  }
  .flex-container .col-3 {
    max-width: calc(100% / 12 * 3);
  }
  .flex-container .col-4 {
    max-width: calc(100% / 12 * 4);
  }
  .flex-container .col-5 {
    max-width: calc(100% / 12 * 5);
  }
  .flex-container .col-6 {
    max-width: calc(100% / 12 * 6);
  }
  .flex-container .col-7 {
    max-width: calc(100% / 12 * 7);
  }
  .flex-container .col-8 {
    max-width: calc(100% / 12 * 8);
  }
  .flex-container .col-9 {
    max-width: calc(100% / 12 * 9);
  }
  .flex-container .col-10 {
    max-width: calc(100% / 12 * 10);
  }
  .flex-container .col-11 {
    max-width: calc(100% / 12 * 11);
  }
  .flex-container .col-12 {
    max-width: calc(100% / 12 * 12);
  }
  .flex-container .push-1 {
    margin-left: calc(100% / 12 * 1);
  }
  .flex-container .push-2 {
    margin-left: calc(100% / 12 * 2);
  }
  .flex-container .push-3 {
    margin-left: calc(100% / 12 * 3);
  }
  .flex-container .push-4 {
    margin-left: calc(100% / 12 * 4);
  }
  .flex-container .push-5 {
    margin-left: calc(100% / 12 * 5);
  }
  .flex-container .push-6 {
    margin-left: calc(100% / 12 * 6);
  }
  .flex-container .push-7 {
    margin-left: calc(100% / 12 * 7);
  }
  .flex-container .push-8 {
    margin-left: calc(100% / 12 * 8);
  }
  .flex-container .push-9 {
    margin-left: calc(100% / 12 * 9);
  }
  .flex-container .push-10 {
    margin-left: calc(100% / 12 * 10);
  }
  .flex-container .push-11 {
    margin-left: calc(100% / 12 * 11);
  }
  .flex-container .push-12 {
    margin-left: calc(100% / 12 * 12);
  }
  .flex-container .pull-1 {
    margin-right: calc(100% / 12 * 1);
  }
  .flex-container .pull-2 {
    margin-right: calc(100% / 12 * 2);
  }
  .flex-container .pull-3 {
    margin-right: calc(100% / 12 * 3);
  }
  .flex-container .pull-4 {
    margin-right: calc(100% / 12 * 4);
  }
  .flex-container .pull-5 {
    margin-right: calc(100% / 12 * 5);
  }
  .flex-container .pull-6 {
    margin-right: calc(100% / 12 * 6);
  }
  .flex-container .pull-7 {
    margin-right: calc(100% / 12 * 7);
  }
  .flex-container .pull-8 {
    margin-right: calc(100% / 12 * 8);
  }
  .flex-container .pull-9 {
    margin-right: calc(100% / 12 * 9);
  }
  .flex-container .pull-10 {
    margin-right: calc(100% / 12 * 10);
  }
  .flex-container .pull-11 {
    margin-right: calc(100% / 12 * 11);
  }
  .flex-container .pull-12 {
    margin-right: calc(100% / 12 * 12);
  }
}
@media (min-width: 1280px) {
  .flex-container .col-1,
  .flex-container .col-2,
  .flex-container .col-3, .flex-container .col-4,
  .flex-container .col-5,
  .flex-container .col-6,
  .flex-container .col-7,
  .flex-container .col-8,
  .flex-container .col-9,
  .flex-container .col-10,
  .flex-container .col-11,
  .flex-container .col-12 {
    padding: 0 2% 4% 2%;
  }
}
header {
  position: relative;
  top: 0;
  width: 100%;
  height: 160px;
  background-color: rgb(254, 254, 254);
  z-index: 1;
}
header .logo {
  position: relative;
  top: 12px;
  margin: 0 auto;
  width: 112px;
  height: 112px;
}
header .logo a {
  text-decoration: none;
  border-bottom: 0;
  color: rgb(34, 34, 34);
}

nav {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 32px;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 24px;
  background-color: rgb(254, 254, 254);
  z-index: 6;
  filter: drop-shadow(0px 0px 8px rgba(30, 30, 30, 0.1));
}
nav ul {
  list-style-type: none;
}
nav ul li {
  display: inline-block;
  font-size: 1.8rem;
  text-align: center;
  padding: 12px 0;
  margin: 0 6px;
}
nav ul li a {
  font-weight: 300;
  text-decoration: none;
  border-bottom: 0;
  color: rgb(34, 34, 34);
}
nav ul li:first-child {
  margin-left: 0;
}
nav ul li:last-child {
  margin-right: 0;
}

@media (min-width: 960px) {
  header {
    height: 160px;
  }
  header .logo {
    position: absolute;
    left: 2%;
    top: 4%;
    width: 120px;
    height: 120px;
  }
  nav {
    position: fixed;
    top: 5%;
    right: 3%;
    max-width: 9000px;
    height: 56px;
    margin: 0 auto;
    border-radius: 28px;
  }
  nav ul li {
    font-size: 2.2rem;
    padding: 14px 0;
    margin: 0 12px;
  }
  nav ul li:first-child {
    margin-left: 24px;
  }
  nav ul li:last-child {
    margin-right: 24px;
  }
}
a {
  font-weight: 700;
  color: rgb(34, 34, 34);
  text-decoration: none;
  border-bottom: 2px solid rgb(34, 34, 34);
  transition: all 400ms;
}

p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 32px;
}

h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgb(31, 138, 255);
}

h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: rgb(34, 34, 34);
}

img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

strong {
  font-weight: 700;
}

button {
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  color: rgb(254, 254, 254);
  background-color: rgb(31, 138, 255);
  padding: 16px 24px;
  margin: 4px 24px 32px 0;
  border-radius: 36px;
  transition: all 400ms;
}

mark {
  all: unset;
  background: linear-gradient(90deg, rgb(207, 255, 113) 0%, rgb(207, 255, 113) 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 1600ms ease-out;
}

.mark-text {
  background-size: 100% 100%;
}

.white {
  color: rgb(254, 254, 254);
}

.interferer {
  z-index: 2;
  position: absolute;
  top: 232px;
  right: 24px;
  width: 96px;
  height: 96px;
  background-image: url("/img/interferer-red.svg");
  /*background-image: url("/img/interferer-blue.svg");*/
  animation: rotation 18s linear infinite;
}

.open {
  z-index: 3;
  position: absolute;
  top: 254px;
  right: 45px;
  transform: rotate(-9deg);
  color: rgb(254, 254, 254);
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.booked {
  z-index: 3;
  position: absolute;
  top: 260px;
  right: 48px;
  transform: rotate(-9deg);
  color: rgb(254, 254, 254);
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 700;
  text-align: center;
}

main {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 368px;
  background-color: rgb(254, 254, 254);
  z-index: 1;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0px 15px 16px -8px rgba(0, 0, 0, 0.25);
}
main .hero {
  margin-top: 8%;
  padding: 4% 8% 0 8%;
}
main .hero .headline {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 4.4rem;
  letter-spacing: -0.1rem;
  margin-bottom: 0;
  color: rgb(34, 34, 34);
}
main ul,
main ol {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 32px;
}
main ul li,
main ol li {
  padding: 4px 0 4px 0;
  margin-left: 32px;
}
main article img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 48px;
}
main article a {
  color: rgb(34, 34, 34);
  font-weight: 600;
}
main article h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: rgb(34, 34, 34);
}
main article ul,
main article ol {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 32px;
  padding: 0 6%;
}
main article ul li,
main article ol li {
  margin: 8px 0;
}
main article .lead {
  margin-top: 16px;
  font-weight: 700;
}
main article .nm_post_title {
  color: rgb(34, 34, 34);
  font-size: 1.4rem;
  padding: 24% 8% 0 8%;
}
main article .nm_post_date {
  color: rgb(189, 189, 189);
  font-size: 1.4rem;
  padding: 1% 0 0 8%;
}
main article .quote {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 4.4rem;
  color: rgb(31, 138, 255);
  margin: 64px 0;
}
main article .infobox {
  background-color: rgb(243, 243, 243);
  color: rgb(34, 34, 34);
  border-radius: 12px;
  padding: 32px 32px 16px 32px;
  margin: 48px 0;
}
main article .infobox h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 16px;
}
main article .infobox img {
  width: 120px;
  float: left;
  margin-bottom: 0;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 640px) {
  p {
    font-size: 2rem;
    line-height: 3rem;
  }
  h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  button {
    font-size: 2rem;
  }
  .interferer {
    top: 180px;
    right: 72px;
    width: 120px;
    height: 120px;
    padding: 27px;
  }
  .booked {
    font-size: 1.6rem;
    line-height: 1.8rem;
    top: 220px;
    right: 104px;
  }
  .open {
    font-size: 1.6rem;
    line-height: 1.8rem;
    top: 211px;
    right: 101px;
  }
  main {
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    margin-bottom: 428px;
  }
  main .large {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  main .hero {
    margin: 2% 0 0 0;
  }
  main .hero .headline {
    font-size: 5.6rem;
    line-height: 5.6rem;
  }
  main article .quote {
    font-size: 4.4rem;
    line-height: 5.2rem;
  }
}
@media (min-width: 960px) {
  button {
    font-size: 2.2rem;
  }
  main {
    border-bottom-left-radius: 64px;
    border-bottom-right-radius: 64px;
    margin-bottom: 508px;
  }
  main .hero {
    margin: 4% 0;
    padding: 4%;
  }
  main .hero .headline {
    font-size: 7.2rem;
    line-height: 7.2rem;
  }
  main article .nm_post_title {
  font-size: 1.4rem;
  padding: 1% 4% 0 4%;
  margin-top: 72px;
}
main article .nm_post_date {
  font-size: 1.4rem;
  padding: 0 4%;
}
  main article .quote {
    font-size: 4.8rem;
    line-height: 5.6rem;
  }
  main article .lead {
    margin-top: 32px;
    margin-left: -4%;
    margin-bottom: -64px;
  }
}
@media (min-width: 1280px) {
  .interferer {
    top: 144px;
    right: 120px;
    width: 144px;
    height: 144px;
    font-size: 2rem;
    padding: 32px;
  }
  .booked {
    font-size: 2rem;
    line-height: 2.4rem;
    top: 189px;
    right: 157px;
  }
  .open {
    font-size: 2.2rem;
    line-height: 2.4rem;
    top: 180px;
    right: 149px;
  }
  main {
    margin-bottom: 576px;
    padding-bottom: 96px;
  }
  main .hero .headline {
    font-size: 8.8rem;
    line-height: 8.8rem;
  }
  main article .quote {
    font-size: 5.6rem;
    line-height: 6.4rem;
  }
  main article .lead {
    margin-left: -2%;
    margin-bottom: -96px;
  }
}
@media (min-width: 1600px) {
  .interferer {
    top: 220px;
    right: 340px;
    width: 152px;
    height: 152px;
  }
  .booked {
    top: 272px;
    right: 381px;
  }
  .open {
    top: 256px;
    right: 373px;
  }
  main .hero {
    margin: 8% 0 8% 0;
    padding: 2.4%;
  }
  main .hero .headline {
    font-size: 9.6rem;
    line-height: 9.2rem;
  }
}
@media (hover: hover) {
  main a:hover {
    color: rgb(31, 138, 255);
    border-bottom: 2px solid rgb(31, 138, 255);
    cursor: pointer;
  }
  button:hover {
    cursor: pointer;
    background-color: rgb(243, 243, 243);
    color: rgb(34, 34, 34);
  }
}
footer {
  position: fixed;
  width: 100%;
  height: 400px;
  background-color: rgb(34, 34, 34);
  bottom: 0;
  padding: 20% 8% 4% 8%;
  z-index: -99;
}
footer .footer-content {
  color: rgb(254, 254, 254);
}
footer .legal-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: rgb(254, 254, 254);
  text-align: center;
  margin: 0 auto;
  padding: 4% 2%;
}
footer .legal-bar p {
  font-weight: 300;
  font-size: 1.4rem;
  margin: 0;
}

@media (min-width: 640px) {
  footer {
    height: 480px;
  }
}
@media (min-width: 960px) {
  footer {
    height: 560px;
    padding: 192px 8% 4% 8%;
  }
  footer .footer-content {
    margin: 0 auto;
    max-width: 600px;
  }
  footer .footer-content .contact-btn {
    font-size: 2.2rem;
  }
}
@media (min-width: 1280px) {
  footer {
    height: 640px;
    padding: 232px 8% 4% 8%;
  }
  footer .legal-bar {
    padding: 1%;
  }
}
@media (hover: hover) {
  footer .footer-content .contact-btn:hover {
    cursor: pointer;
    color: rgb(34, 34, 34);
    background-color: rgb(254, 254, 254);
  }
}/*# sourceMappingURL=style.css.map */