/* playfair-display-regular - latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/playfair-display-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('assets/fonts/playfair-display-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('assets/fonts/playfair-display-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('assets/fonts/playfair-display-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('assets/fonts/playfair-display-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('assets/fonts/playfair-display-v20-latin-regular.svg#PlayfairDisplay') format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'Circular ProTT';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('assets/fonts/CircularProTT-Medium.ttf') format('truetype'), /* Safari, Android, iOS */
}

html,
body {
  height: 100%;
  min-height: 480px;
  padding: 0px;
  margin: 0px;
  font-family: Helvetica, sans-serif;
}
p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
footer,
section {
  display: block;
}
.root {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
  padding: 0px;
  margin: 0px;
  font-family: Helvetica, sans-serif;
}
.header {
  position: static;
  left: 0;
  top: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  padding-left: 24px;
}
.header__logo {
  height: 25px;
}
.main {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.main__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  filter: brightness(.8);
}
.background-image {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
}
img {
  border: 0;
}
.main__splash {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: 0;
  width: 100%;
  height: 100%;
}
.main__splash--inner {
  display: flex;
  flex-direction: column;
  width: 90%;
}
.main__splash-headline--line {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  margin-top: 1em;

  font-family: Playfair Display;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 1.29;
}

.main__splash-headline2--line {
  letter-spacing: 0.2px;
  line-height: 1.23;
  font-family: Circular ProTT;
  margin-bottom: 0;
  margin-top: 1em;

  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #FFFFFF;
}

.main__splash-headline3--line {
  letter-spacing: 0.2px;
  font-family: Playfair Display;
  margin-bottom: 0;
  margin-top: 1.4em;

  font-style: italic;
  font-weight: normal;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #FFFFFF;
}
.main__splash-buttons {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  margin-top: 0.8rem;
  padding-top: 1rem;
  width: 100%;
  align-items: center;
  max-width: 90%;
  width: 100%;
}
.main__splash-buttons--arrow {
  animation: bounce 2s infinite;
  flex: 1 0 100%;
  height: 30px;
  left: 50%;
  margin-top: 10px;
  -webkit-animation: bounce 2s infinite;
  width: 30px;
}
.main__splash-buttons--button {
  flex: 1 1 50%;
  margin-top: 1em;
}
.main__splash-buttons--button.weight {
  text-align: right;
}
.main__splash-buttons--button--image {
  height: 70%;
  margin: auto;
  width: 70%;
  max-width: 150px;
  cursor: pointer;
}
.main__splash-buttons--button--image:hover {
  opacity: 0.7;
  outline: 0;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
/* #footer-wrapper and .row are defined in sheets from cdn, this is just a dirty fix */
#footer-wrapper {
  padding: 40px 20px 20px 30px;
}
.row {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  html,
  body,
  .root {
    height: 100%;
    min-height: 600px;
  }
  .header__logo {
    height: 30px;
  }
  .main {
    justify-content: space-between;
  }
  .main__splash {
    flex-direction: column;
    margin-left: 15%;
    width: 70%;
  }
  .main__splash-headline--line {
    font-size: 45px;
  }
  .main__splash-headline2--line {
    font-size: 30px;
  }

  .main__splash-buttons {
    margin-top: 1rem;
    width: 50%;
  }
  .main__splash-buttons--arrow {
    margin-top: 30px;
  }
  .main__splash-buttons--button--image {
    margin: 5% 0 0 0;
  }
  .row {
    flex-direction: row;
  }
}
