.main .content {
  width: var(--fullWidth);
  min-height: var(--mapHeight);
  overflow: visible;
  color: white;
}
.main .content .topContent {
  text-align: center;
}
.main .content .topContent h1 {
  margin-top: 8rem;
  font-weight: normal;
  font-size: 6rem;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.15rem;
}
.main .content .topContent h4 {
  font-weight: normal;
  font-size: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 4rem;
}
.main .content .topContent .buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 8rem;
}
.main .content .topContent .buttons a {
  border-radius: var(--borderRadius);
  padding: 1rem 4rem;
  border: 2px solid white;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-decoration: none;
  color: white;
  transition-duration: 0.5s;
  position: relative;
}
.main .content .topContent .buttons a .buttonBackground {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(45deg, rgba(210, 61, 255, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
  transition-duration: 0.2s;
}
.main .content .topContent .buttons a:hover .buttonBackground {
  opacity: 1;
}
.main .content .topContent .buttons a:first-child {
  margin-right: 2rem;
}
.main .content .blogPosts {
  overflow: visible;
  background-color: rgba(0, 0, 0, 0.5);
  border-top: solid 2px white;
  border-bottom: solid 2px white;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100vw;
  box-sizing: border-box;
  padding: 6rem calc(100vw - var(--fullWidth));
  margin-left: calc(-1 * (100vw - var(--fullWidth)) / 2);
  margin-bottom: 6rem;
  position: relative;
}
.main .content .blogPosts:hover .postsBackground .postsBackgroundOverlay {
  width: 100%;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.main .content .blogPosts .postsBackground {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.main .content .blogPosts .postsBackground .postsBackgroundOverlay {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: linear-gradient(45deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 70%);
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  transition-duration: 0.5s;
}
.main .content .blogPosts .posts {
  margin: auto;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.main .content .blogPosts .posts .pages {
  flex-grow: 1;
}
.main .content .blogPosts .posts .pages .page h2 {
  font-size: 3rem;
}
.main .content .blogPosts .posts .pages .page h3 {
  font-weight: normal;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.main .content .blogPosts .posts .pages .page a {
  color: white;
}
.main .content .blogPosts .navLeft, .main .content .blogPosts .navRight {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background-image: url("/media/icons/expand_down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(1);
}
.main .content .blogPosts .navLeft {
  margin-right: 6rem;
  transform: rotate(90deg);
}
.main .content .blogPosts .navRight {
  margin-left: 6rem;
  transform: rotate(-90deg);
}
.main .bottomSection {
  margin-bottom: 6rem;
}
.main .bottomSection h1 {
  text-align: center;
  font-size: 4rem;
  font-weight: normal;
  font-family: "Anton", sans-serif;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}
.main .bottomSection .aboutPV {
  width: 60%;
  margin: auto;
  display: flex;
  align-items: center;
}
.main .bottomSection .aboutPV .pvIcon {
  flex-shrink: 0;
  margin-right: 2rem;
  width: 12rem;
  height: 12rem;
  background-image: url("/media/logo/PropViewer logo white.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.main .bottomSection .aboutPV p {
  font-size: 1.8rem;
}

.socialLinks {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.socialLinks a {
  display: flex;
  flex-direction: column;
  border-radius: var(--borderRadius);
  padding: 2rem 4rem;
  border: 2px solid transparent;
  text-decoration: none;
  color: white;
  transition-duration: 0.5s;
  position: relative;
  align-items: center;
}
.socialLinks a img {
  margin-bottom: 1rem;
  max-width: 3rem;
}
.socialLinks a:not(:last-child) {
  margin-right: 2rem;
}
.socialLinks a:hover {
  border: 2px solid white;
}

.noBreak {
  white-space: nowrap;
}

@media screen and (orientation: portrait) {
  .main .content h4 {
    font-size: 1.2rem;
  }
  .main .content .topContent h1 {
    margin-top: 4rem;
    font-size: 3rem;
  }
  .main .content .topContent h4 {
    width: 90%;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 4rem;
  }
  .main .content .topContent .buttons {
    flex-direction: column;
  }
  .main .content .topContent .buttons a:first-child {
    margin-bottom: 2rem;
    margin-right: 0;
  }
  .main .content .blogPosts .navLeft, .main .content .blogPosts .navRight {
    width: 10rem;
    height: 10rem;
  }
  .main .content .blogPosts .navLeft {
    margin-right: 4rem;
  }
  .main .content .blogPosts .navRight {
    margin-left: 4rem;
  }
  .main .content .blogPosts .postsBackground .postsBackgroundOverlay {
    background: linear-gradient(45deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%);
  }
  .main .content .blogPosts .posts .pages .page h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .main .content .blogPosts .posts .pages .page h3 {
    font-size: 1.4rem;
  }
  .main .bottomSection {
    margin-bottom: 6rem;
  }
  .main .bottomSection h1 {
    font-size: 3rem;
  }
  .main .bottomSection .aboutPV {
    width: 90%;
  }
  .main .bottomSection .aboutPV p {
    font-size: 1.2rem;
  }
  .main .bottomSection .aboutPV .pvIcon {
    display: none;
    margin-right: 0;
  }
}/*# sourceMappingURL=home.css.map */