.renaissance .top-hero {
  --flash-banner-above-top-hero-height: var(--flash-banner-height, 0px);
  --navbar-above-top-hero-height: var(--navbar-height, 0px);
  --navbar-inside-top-hero-height: 0px;
  --top-hero-desktop-min-height: 650px;
  --top-hero-min-height: calc(var(--top-hero-desktop-min-height) - var(--flash-banner-above-top-hero-height) - var(--navbar-above-top-hero-height));
  --top-hero-height: calc(100svh - var(--flash-banner-above-top-hero-height) - var(--navbar-above-top-hero-height));
  --top-hero-preheading-height: 0;
  position: relative;
  height: var(--top-hero-height);
  min-height: var(--top-hero-min-height);
}
.renaissance .top-hero .top-hero-image-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.renaissance .top-hero .top-hero-image-container .top-hero-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.renaissance .top-hero .top-hero-image-effect-container {
  display: none;
}
.renaissance .top-hero .top-hero-image-effect-container .top-hero-image-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.renaissance .top-hero .top-hero-image-effect-container #top-hero-navbar-dark-gradient {
  height: 150px;
  background-image: linear-gradient(180deg, rgba(51, 51, 51, var(--top-hero-navbar-dark-gradient-opacity, 0)) 0px, transparent 122px);
}
.renaissance .top-hero .top-hero-image-effect-container #top-hero-dark-overlay {
  background-color: var(--dec-black);
  opacity: var(--top-hero-dark-overlay-opacity, 0);
}
.renaissance .top-hero .top-hero-image-effect-container #top-hero-dark-overlay-mobile {
  background-color: var(--dec-black);
  opacity: var(--top-hero-mobile-dark-overlay-opacity, 0);
}
.renaissance .top-hero .top-hero-image-effect-container #top-hero-headings-dark-gradient .svg-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.renaissance .top-hero .top-hero-image-effect-container #top-hero-headings-dark-gradient .svg-container svg {
  width: 1444px;
  min-width: 1444px;
  height: 580px;
  min-height: 580px;
  opacity: var(--top-hero-headings-dark-gradient-opacity, 0);
  -webkit-filter: blur(15px);
  filter: blur(15px);
}
.renaissance .top-hero .top-hero-content {
  position: absolute;
  top: var(--navbar-inside-top-hero-height);
  width: 100%;
  height: calc(100% - var(--navbar-inside-top-hero-height));
  text-align: center;
  color: var(--dec-white);
}
.renaissance .top-hero .top-hero-content .container .headings-container .hero-preheading,
.renaissance .top-hero .top-hero-content .container .headings-container .hero-heading,
.renaissance .top-hero .top-hero-content .container .headings-container .hero-subheading {
  color: var(--dec-white);
}
.renaissance .top-hero .top-hero-content .container .headings-container .hero-preheading .editable,
.renaissance .top-hero .top-hero-content .container .headings-container .hero-heading .editable,
.renaissance .top-hero .top-hero-content .container .headings-container .hero-subheading .editable {
  font-size: inherit;
  font-weight: inherit;
}
.renaissance .top-hero .top-hero-content .container .headings-container .hero-preheading-container {
  height: var(--top-hero-preheading-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 22px 0;
}
.renaissance .top-hero .top-hero-content .container .headings-container .hero-preheading-container .hero-preheading {
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 14px;
  text-decoration-thickness: 1px;
  letter-spacing: 1.2px;
  font-size: min(calc(var(--container-max-width) * 0.03), 24px);
  font-weight: 400;
  text-shadow: 0px 1px 16.7px var(--dec-black-shadow-60);
}
.renaissance .top-hero .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
  --top-hero-heading-line-height: 86px;
  --top-hero-heading-min-lines: 1;
  line-height: var(--top-hero-heading-line-height);
  min-height: calc(var(--top-hero-heading-line-height) * var(--top-hero-heading-min-lines));
}
.renaissance .top-hero .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
  --top-hero-subheading-line-height: 30px;
  --top-hero-subheading-min-lines: 1;
  line-height: var(--top-hero-subheading-line-height);
  min-height: calc(var(--top-hero-subheading-line-height) * var(--top-hero-subheading-min-lines));
}
.renaissance .top-hero .top-hero-content .container .top-hero-additional-info {
  line-height: 18px;
  font-size: 16px;
}
.renaissance .top-hero .top-hero-content .container .top-hero-additional-info b {
  font-weight: 600;
}
.renaissance .top-hero .top-hero-content .btn {
  box-shadow: 0px 4px 4px var(--dec-black-shadow-25);
}
.renaissance .top-hero .top-rated {
  position: absolute;
  bottom: -10px;
  text-align: left;
}
@media (min-width: 1200px) {
  .renaissance .top-hero .top-rated {
    left: calc((100% - var(--container-max-width))/2);
  }
}
.renaissance .top-hero .top-rated img {
  width: 93px;
  aspect-ratio: 93 / 120.75;
}
@media (min-width: 1200px) {
  .renaissance .top-hero .top-rated {
    bottom: -22px;
  }
  .renaissance .top-hero .top-rated img {
    width: 124px;
  }
}
.renaissance .top-hero.top-hero-image-loaded .top-hero-image-effect-container {
  display: initial;
}
.renaissance .top-hero.has-top-rated-banner {
  --top-rated-banner-height-adjustment: 5dvh;
  height: calc(var(--top-hero-height) - var(--top-rated-banner-height-adjustment));
  min-height: calc(var(--top-hero-min-height) - var(--top-rated-banner-height-adjustment));
}
@media (max-width: 768px) {
  .renaissance .top-hero .top-hero-content .container .headings-container .hero-preheading-container .hero-preheading {
    font-size: min(calc(var(--container-max-width) * 0.057), 15px);
  }
  .renaissance .top-hero .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    --top-hero-heading-line-height: 70px;
  }
  .renaissance .top-hero .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
    --top-hero-subheading-line-height: 28px;
  }
  .renaissance .top-hero.has-top-rated-banner {
    --top-rated-banner-height-adjustment: 1.5dvh;
  }
}
.renaissance .top-hero.top-hero-layout-default {
  --top-hero-preheading-height: 110px;
}
.renaissance .top-hero.top-hero-layout-default .top-hero-image-effect-container #top-hero-headings-dark-gradient .svg-container {
  padding-top: 48px;
}
.renaissance .top-hero.top-hero-layout-default .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
  --top-hero-heading-min-lines: 2;
  margin-bottom: 28px;
}
.renaissance .top-hero.top-hero-layout-default .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
  --top-hero-subheading-min-lines: 2;
  margin-bottom: 19px;
}
.renaissance .top-hero.top-hero-layout-default .top-hero-content .container .buttons-container .btn {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .renaissance .top-hero.top-hero-layout-default {
    --top-hero-preheading-height: 57px;
  }
  .renaissance .top-hero.top-hero-layout-default .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    --top-hero-heading-min-lines: 4;
    margin-bottom: 20px;
  }
  .renaissance .top-hero.top-hero-layout-default .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
    --top-hero-subheading-min-lines: 4;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199.8px) {
  .renaissance .top-hero.top-hero-layout-default .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    --top-hero-heading-line-height: 75px;
  }
}
@media (max-width: 991.8px) {
  .renaissance .top-hero.top-hero-layout-default .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    --top-hero-heading-line-height: 66px;
  }
}
@media (max-width: 767.8px) {
  .renaissance .top-hero.top-hero-layout-default .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    --top-hero-heading-line-height: 58px;
  }
}
@media (max-width: 575.8px) {
  .renaissance .top-hero.top-hero-layout-default .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    --top-hero-heading-line-height: 52px;
  }
}
@media (max-width: 399.8px) {
  .renaissance .top-hero.top-hero-layout-default .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    --top-hero-heading-line-height: 48px;
  }
}
.renaissance .top-hero.top-hero-layout-large-content-1 {
  --top-hero-preheading-height: 105px;
}
.renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-image-effect-container #top-hero-headings-dark-gradient .svg-container {
  padding-top: 46px;
}
.renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
  --top-hero-heading-min-lines: 2;
  margin-bottom: 38px;
}
.renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
  --top-hero-subheading-min-lines: 3;
  margin-bottom: 51px;
}
.renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .buttons-container .btn {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .renaissance .top-hero.top-hero-layout-large-content-1 {
    --top-hero-preheading-height: 51px;
  }
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    --top-hero-heading-min-lines: 4;
    margin-bottom: 13px;
  }
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
    --top-hero-subheading-min-lines: 3;
    margin-bottom: 25px;
  }
}
@media (min-width: 1400px) {
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    line-height: 86px;
    font-size: 70px;
    margin-bottom: 30px;
  }
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
    line-height: 33px;
    font-size: 26px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399.8px) {
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    line-height: 75px;
    font-size: 60px;
    min-height: unset;
    margin-bottom: 25px;
  }
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
    line-height: 30px;
    font-size: 22px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1199.8px) {
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    line-height: 66px;
    font-size: 55px;
    min-height: unset;
    margin-bottom: 25px;
  }
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
    line-height: 26px;
    font-size: 19px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991.8px) {
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    line-height: 50px;
    font-size: 46px;
  }
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
    line-height: 26px;
    font-size: 19px;
  }
}
@media (max-width: 767.8px) {
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    line-height: 58px;
    font-size: 54px;
    min-height: unset;
    margin-bottom: 25px;
  }
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
    line-height: 26px;
    font-size: 19px;
    margin-bottom: 25px;
  }
}
@media (max-width: 399.8px) {
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    line-height: 50px;
    font-size: 45px;
    min-height: unset;
  }
  .renaissance .top-hero.top-hero-layout-large-content-1 .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
    line-height: 25px;
    font-size: 19px;
  }
}
.renaissance .top-hero.top-hero-layout-small-content-1 {
  --top-hero-min-height: 449px;
  --top-hero-height: 449px;
  --top-hero-preheading-height: 105px;
}
.renaissance .top-hero.top-hero-layout-small-content-1 .top-hero-image-effect-container #top-hero-headings-dark-gradient .svg-container {
  padding-top: 46px;
}
.renaissance .top-hero.top-hero-layout-small-content-1 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
  --top-hero-heading-min-lines: 1;
  margin-bottom: 38px;
}
.renaissance .top-hero.top-hero-layout-small-content-1 .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
  --top-hero-subheading-min-lines: 1;
  margin-bottom: 81px;
}
.renaissance .top-hero.top-hero-layout-small-content-1 .top-hero-content .container .buttons-container .btn {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .renaissance .top-hero.top-hero-layout-small-content-1 {
    --top-hero-min-height: 467px;
    --top-hero-height: 467px;
    --top-hero-preheading-height: 51px;
  }
  .renaissance .top-hero.top-hero-layout-small-content-1 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    --top-hero-heading-min-lines: 3;
    margin-bottom: 13px;
  }
  .renaissance .top-hero.top-hero-layout-small-content-1 .top-hero-content .container .headings-container .hero-subheading-container .hero-subheading {
    --top-hero-subheading-min-lines: 2;
    margin-bottom: 25px;
  }
}
.renaissance .top-hero.top-hero-layout-small-content-2 {
  --top-hero-desktop-min-height: 630px;
  --top-hero-preheading-height: 159px;
}
.renaissance .top-hero.top-hero-layout-small-content-2 .top-hero-image-effect-container #top-hero-headings-dark-gradient .svg-container {
  padding-top: 40px;
}
.renaissance .top-hero.top-hero-layout-small-content-2 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
  --top-hero-heading-min-lines: 2;
  margin-bottom: 54px;
}
.renaissance .top-hero.top-hero-layout-small-content-2 .top-hero-content .container .buttons-container .btn {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .renaissance .top-hero.top-hero-layout-small-content-2 {
    --top-hero-preheading-height: 61px;
  }
  .renaissance .top-hero.top-hero-layout-small-content-2 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    --top-hero-heading-min-lines: 4;
    margin-bottom: 0px;
  }
}
@media (min-width: 1400px) {
  .renaissance .top-hero.top-hero-layout-small-content-2 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    line-height: 102px;
    font-size: 80px;
  }
}
@media (max-width: 1399.8px) {
  .renaissance .top-hero.top-hero-layout-small-content-2 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    line-height: 86px;
    font-size: 70px;
  }
}
@media (max-width: 1199.8px) {
  .renaissance .top-hero.top-hero-layout-small-content-2 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    line-height: 75px;
    font-size: 60px;
  }
}
@media (max-width: 767.8px) {
  .renaissance .top-hero.top-hero-layout-small-content-2 .top-hero-content .container .headings-container .hero-heading-container .hero-heading {
    line-height: 65px;
    font-size: 52px;
  }
}
.renaissance.transparent-navbar .top-hero {
  --navbar-above-top-hero-height: 0px;
  --navbar-inside-top-hero-height: var(--navbar-height, 0px);
}
.renaissance .project-banner {
  --backgroundColor: #8A7C56;
  --foregroundColor: #FFFFFF;
  --contentRight: -20px;
  z-index: 101;
  position: absolute;
  right: 0;
  top: 82px;
  transition: top 0.2s linear;
}
.renaissance .project-banner .bunting {
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}
.renaissance .project-banner .bunting .content {
  position: relative;
  height: 30px;
  line-height: 30px;
  color: var(--foregroundColor);
  margin: 0 auto;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 40px;
  left: 20px;
  display: flex;
  align-items: center;
  background-color: var(--backgroundColor);
  transition: left 0.2s ease-in-out;
}
.renaissance .project-banner .bunting .content .project-banner-close-btn svg {
  margin-right: 11px;
  margin-bottom: 3px;
  width: 16px;
  transition: transform 0.2s ease-in-out;
}
.renaissance .project-banner .bunting .content .project-banner-close-btn svg > * {
  fill: var(--foregroundColor);
}
.renaissance .project-banner .bunting .content .back-to-my-projects-link {
  color: var(--foregroundColor);
  display: block;
  text-decoration: none;
  text-transform: none;
  font-weight: 400;
  font-size: 18px;
  overflow: hidden;
}
.renaissance .project-banner .bunting .content .back-to-my-projects-link span {
  text-wrap: nowrap;
}
.renaissance .project-banner:has(.project-banner-close-btn.close) .bunting .content {
  left: calc(100% - 47px);
}
.renaissance .project-banner:has(.project-banner-close-btn.close) .bunting .content .project-banner-close-btn.close svg {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .renaissance .project-banner .bunting .content .back-to-my-projects-link {
    font-weight: 500;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .renaissance .project-banner {
    top: calc(var(--navbar-height) + 20px);
    z-index: 1;
  }
  .renaissance .project-banner .bunting .content {
    height: 34px;
    line-height: 34px;
  }
}
body:has(.flash-row-container:not(.flash-closed)) .project-banner {
  top: 107px;
}
@media (max-width: 1300px) {
  body:has(.flash-row-container:not(.flash-closed)) .project-banner {
    top: 94px;
  }
}
