*, *:before, *:after {
  box-sizing: border-box;
}

html body {
  background-color: #fff;
  background-image: url("/assets/images/branding-bg.png"), url("/assets/images/databases-area.jpg");
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 550px) {
  html body {
    background-image: url("/assets/images/branding-bg-mob.png"), url("/assets/images/databases-area-mob.jpg");
  }
}

img.logo-overlay {
  width: 150px;
  margin-top: 45px;
}
@media (max-height: 600px), (max-width: 994px) {
  img.logo-overlay {
    display: none;
  }
}

.landing-page-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing-page {
  background-color: #fff;
  width: 90vw;
  min-width: 640px;
  max-width: 1035px;
  height: 550px;
  border: 1px solid #d9dce1;
  border-radius: 14px;
  padding: 40px 40px 40px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  font-size: 14px;
}
.landing-page h1 {
  text-align: left;
  font-size: 24px;
}
.landing-page .lp-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.landing-page .lp-inner .lp-text {
  width: 50%;
}
.landing-page .lp-inner .lp-hint {
  border: 1px solid #c4c7cb;
  border-radius: 10px;
  padding: 1em;
  width: 40%;
}
.landing-page .lp-inner .lp-publications {
  width: 50%;
  height: 380px;
  overflow: hidden;
}
.landing-page .lp-inner .lp-publications .publications {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  cursor: pointer;
}
.landing-page .lp-inner .lp-publications .publications figure {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 90px;
  margin-right: 10px;
}
.landing-page .lp-inner .lp-publications .publications figure figcaption {
  font-size: 10px;
}
.landing-page .lp-inner p.hint {
  border: 1px solid #36393e;
}
.landing-page .lp-inner .btn.btn-primary {
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  background-color: #0089ff;
  border-radius: 24px;
  border: none;
}
.landing-page .lp-inner .btn.btn-primary:hover, .landing-page .lp-inner .btn.btn-primary:active, .landing-page .lp-inner .btn.btn-primary:focus {
  background-color: #0089ff !important;
}
.landing-page .lp-feed {
  position: relative;
}
.landing-page .lp-feed > .media-feed {
  width: 100%;
  margin: 50px 0 0 0;
  overflow: hidden;
}
.landing-page .lp-feed > .media-feed ul {
  padding: 0;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-content: space-around;
}
.landing-page .lp-feed > .media-feed .entry {
  height: 175px;
  width: 175px;
  min-width: 175px;
  padding: 0;
}
.landing-page .lp-feed > .media-feed .entry .entry-inner {
  margin: 0;
  height: 100%;
}
.landing-page .lp-feed > .media-feed .entry .entry-inner img {
  height: 100%;
}
.landing-page .lp-feed > .media-feed .entry .entry-inner video {
  height: 100%;
  max-height: 175px;
  max-width: 175px;
}
.landing-page .lp-feed .btn.btn-primary.scroll-posts {
  position: absolute;
  top: 114px;
  left: -25px;
  padding: 10px 15px;
  font-size: 25px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 5px 9px -5px rgba(0, 0, 0, 0.5);
  background-color: #d9dce1;
  color: #7c8187;
  border: 1px solid #c4c7cb;
  border-radius: 30px;
}
.landing-page .lp-feed .btn.btn-primary.scroll-posts.scroll-right {
  right: -25px;
  left: auto;
}
.landing-page .lp-feed .btn.btn-primary.scroll-posts:hover {
  background-color: #0089ff !important;
  color: white;
}

@media (max-width: 930px) {
  .landing-page .lp-feed > .media-feed {
    margin: 20px 0 0;
  }
}
@media (max-width: 550px) {
  .landing-page-wrapper {
    background-color: #f1f2f4;
  }
}
@media (max-width: 550px), (max-width: 994px) and (orientation: portrait) {
  .landing-page {
    width: 90vw;
    min-width: 340px;
    max-width: 621px;
    height: 90vh;
    min-height: 670px;
    padding: 2em;
  }
  .landing-page h1 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .landing-page h2 {
    font-size: 16px;
  }
  .landing-page .lp-inner {
    flex-direction: column;
  }
  .landing-page .lp-inner .lp-text {
    width: 100%;
  }
  .landing-page .lp-inner .lp-text.portal {
    width: 100%;
  }
  .landing-page .lp-inner .lp-hint {
    width: 100%;
  }
  .landing-page .lp-inner .lp-publications {
    width: 100%;
    height: 280px;
  }
  .landing-page .lp-inner .btn.btn-primary {
    font-size: 14px;
    width: 100%;
    margin: 30px 0;
    height: 30px;
  }
  .landing-page p {
    font-size: 12px;
    letter-spacing: 0.27px;
  }
  .landing-page .lp-feed > .media-feed {
    width: 100%;
    margin: 30px 0 0;
  }
  .landing-page .lp-feed .btn.btn-primary.scroll-posts {
    top: 94px;
  }
}

/*# sourceMappingURL=app.css.map */
