body {
  background-color: rgb(238, 50, 56);
}
#site-logo-container {
  box-shadow: none;
}
h1 {
  font-family: "League Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth"87.5;
  text-align: left;
  text-transform: uppercase;
  font-size: 9rem;
  font-size: calc(5rem + 20vw);
  line-height: 85%;
  margin-bottom: 1rem;
  opacity: 0.1;
  max-width: 100%;
  overflow: hidden;
}
@media all and (min-width : 700px) {
  h1 {
    font-size: 21rem;
  }
}
@media all and (min-width: 1200px) {
  h1 {
    font-size: 23rem;
  }
}
.project-title {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  overflow: hidden;
}
.project-title h1 ~ img {
  position: absolute;
  display: block;
  object-fit: contain;
  height: 6rem;
  max-width: 16rem;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  pointer-events: none;
}
h2.project-subsection {
	margin-top: 0.6em;
	margin-bottom: 0;
	font-variant-numeric: lining-nums;
}
h2.project-subsection + a.sub-link {
	text-align: center;
	display: block;
	margin: auto;
	padding: 0;
	margin-top: 0.6em;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
h2.project-subsection + a.sub-link:hover {
	text-decoration: underline;
}
.project-overview {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* flex-direction: row; */
  /* justify-content: space-between; */
  /* align-items: center; */
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 8rem; /* room for menu */
  max-width: 72rem;
  /*overflow: hidden;*/
}
.project-overview .container-fluid {
  margin-top: 2rem;
  padding-left: 0;
  padding-right: 0;
}
.project-overview .container-fluid .row {
  -o-align-items: center;
  -ms-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}

.flex-item > img, .flex-item > video {
  max-width: 100%;
}
/* ---------------------------------------------*/
/* Carousel Edits and Adjustments */
.carousel {}
.carousel-inner {
  background: #15101f;
  border: 0.5rem solid #15101f;
  padding: 0rem;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 992px) {
  .carousel-inner {
    border: 0.75rem solid #15101f;
  }
}
.carousel-item img {
  max-width: 100%;
  transform: translateX(-50%);
}
/* ---------------------------------------------*/
/* Background Pattern */
.project-overview .container-fluid {
  position: relative;
}
.project-overview .container-fluid::after {
  content: '';
  display: block;
  position: absolute;
  background-image: url("../_assets/_site-wide-graphics/stipple-pattern.png");
  background-repeat: repeat;
  background-size: 3.2rem;
  background-position: top left;
  border-image: url("../_assets/_site-wide-graphics/wavy-stipple-border.png");
  border-style: solid;
  border-image-width: 1.1rem;
  /* top | right | bottom | left */
  border-image-slice: 50% 0% 50% 0%;
  border-image-repeat: repeat;
  border-thickness-top: 1.1rem;
  border-image-outset: 1.125rem;
  width: 100vw;
  height: 100%;
  height: calc(100% - 6rem);
  top: 3rem;
  left: calc(-50vw + 50%);
  right: 0;
  bottom: 0rem;
  opacity: 0.85;
  z-index: -1;
}
@media all and (max-width: 700px) {
  .project-overview .container-fluid::after {
    opacity: 0.5;
  }
}
/* ---------------------------------------------*/