.bc-hero {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.video-container {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  overflow: hidden;
}
.iframe-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 200%;
}

.bc-hero-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-inner {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.hero-inner h1 {
  font-size: 55px;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--black);
}

.hero-inner img {
  width: 350px;
}




.center-text {
  max-width: 1100px;
  margin: 110px auto;
}

.center-text h1 {
  max-width: 700px;
  margin: auto;
  font-size: 45px;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--black);
  font-family: aw-conqueror-didot;
}

.center-text p {
  max-width: 800px;
  font-family: "Helvetica Neue";
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--black);
  margin: 25px auto 0 auto;
}

.center-text a {
  font-family: "Helvetica Neue";
  font-size: 17px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  color: var(--black);
  margin: 25px auto 0 auto;
  display: table;
  border: solid 2px var(--black);
  padding: 8px 30px;
}





.project-section {
  max-width: 1000px;
  margin: 80px auto;
  display: block;
}

.project-section .project-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.project-section .project-list li {
  width: 48%;
  margin: 15px 0;
}

.project-section .project-list a {
  color: var(--black);
  text-decoration: none;
  font-family: aw-conqueror-didot;
}

.project-section .project-list div {
  color: var(--black);
  font-family: aw-conqueror-didot;
}


.project-section .project-list .project-img-container {
  width: 100%;
  padding-top: 77%;
  position: relative;
  overflow: hidden;
}
.project-section .project-list .project-img-container .project-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .4s;
}
.project-section .project-list li:hover .project-img-container .project-img {
  transform: translate(-50%, -50%) scale(1.05);
}

.project-section .project-list .project-img-container .project-arrow-svg {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--blue);
  font-size: 0;
  padding: 8px 8px 8px 8px;
  transition: .2s;
}

.project-section .project-list a h3, .project-section .project-list div h3 {
  font-family: aw-conqueror-didot;
  font-size: 25px;
  margin: 12px 0 0 0;
  color: var(--black);
  font-weight: 500;
}






.attributes-container {
  width: 100%;
  font-family: "Helvetica Neue";
  background-color: var(--blue);
  color: var(--white);
  padding: 40px 0;
}
.attributes-container-inner {
  max-width: 1100px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto;
  justify-content: center;
}
.attribute {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}
.attribute-heading {
  padding-right: 10px;
  font-weight: bold;
}












@media only screen and (max-width: 798px) {

  .iframe-video {
    width: unset;
    height: 100%;
  }


  .center-text {
    max-width: 90%;
    margin: 65px auto;
  }

  .center-text h1 {
    font-size: 30px;
  }

  .center-text p {
    font-size: 16px;
  }




  .hero-inner h1 {
    font-size: 35px;
  }




  .project-section {
    max-width: 90%;
  }

  .project-section .project-list li {
    width: 100%;
    margin: 15px 0;
  }




  .attributes-container {
    width: 100%;
    padding: 40px 30px;
    box-sizing: border-box;
  }
  .attributes-container-inner {
    flex-direction: column;
    margin: 0;

  }
  .attribute {
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
  }
  .attribute-heading {
    padding-right: 0;
    margin: 0;
  }
  .attribute-text {
    padding-top: 5px;
    margin: 0;
  }





}
