:root {
  --black: #212130;
  --white: white;
  --light-grey: #dbd0cf;
}

body {
  color: #353543;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5em;
  display: flex;
}

h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 52px;
  font-weight: 100;
  line-height: 36px;
}

h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

a {
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #aa908f;
}

.main {
  width: 100%;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  display: flex;
}

.row {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  display: flex;
}

.row.black {
  background-color: #212130;
}

.modal {
  max-height: 800px;
  max-width: 900px;
  background-color: rgba(255, 255, 255, .9);
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 0;
  display: none;
  position: fixed;
  top: 50%;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: visible;
  transform: translate(0, -50%);
}

.black {
  color: #fff;
  background-color: #191924;
}

.footer {
  width: 100%;
  background-color: #191924;
  border-top: 1px solid rgba(0, 0, 0, .15);
  font-size: 14px;
}

.section {
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 20px;
}

.section.footer {
  padding-top: 20px;
  padding-bottom: 20px;
}

.color-white {
  color: #fff;
}

.imprint {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  display: grid;
}

.imprint-content {
  overflow: auto;
}

.heading {
  color: var(--black);
  font-weight: 500;
}

.heading-2 {
  font-size: 52px;
  font-weight: 100;
}

.text-block {
  color: #353543;
}

.text-block.gap-bottom {
  margin-bottom: 40px;
}

.modal-wrapper {
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  overflow: auto;
}

.close {
  z-index: 5;
  width: 42px;
  height: 42px;
  background-color: var(--white);
  color: var(--black);
  cursor: pointer;
  border: 1px solid rgba(33, 33, 48, .35);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: "Fa 100", sans-serif;
  font-size: 28px;
  transition: transform .2s;
  display: flex;
  position: fixed;
  top: -15px;
  bottom: auto;
  left: auto;
  right: -15px;
}

.close:hover {
  transform: rotate(90deg);
}

.heading-3 {
  color: var(--light-grey);
  text-align: center;
  letter-spacing: 5px;
  margin-top: 40px;
  font-size: 24px;
  font-weight: 100;
  line-height: 1.2em;
}

@media screen and (max-width: 991px) {
  .modal.backdrop-blur {
    width: 90%;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    line-height: 1.2em;
  }

  .row {
    padding-left: 40px;
    padding-right: 40px;
  }

  .imprint {
    justify-content: center;
    justify-items: stretch;
    display: flex;
  }

  .text-block-2 {
    text-align: center;
  }

  .modal-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}


@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 300';
  src: url('../fonts/fa-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 100';
  src: url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}