.announcement-banner {
  display: block;
  background-color: #A5C6B2;
  padding: 20px 0;
}
.announcement-banner .title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.announcement-banner ul {
  margin-bottom: 0;
}
.announcement-banner ul li {
  margin-bottom: 2px;
}

footer * {
  color: #FFF;
}
footer .footer-main {
  padding: 40px 0;
  background-color: #445C75;
}
@media (min-width: 992px) {
  footer .footer-main {
    padding: 80px 0;
  }
}
footer h3 {
  font-size: 1.313rem;
  font-weight: 700;
  margin-bottom: 5px;
}
footer .footer-link {
  color: #EDEECB;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
footer .footer-link:hover {
  color: #A5C6B2;
  text-decoration: underline;
}
footer .social-row .icon {
  width: 36px;
  height: auto;
  margin-right: 15px;
  transition: filter 150ms ease-in-out;
}
footer .social-row a {
  text-decoration: none;
}
footer .social-row a:hover .icon {
  filter: brightness(80%);
}
footer .site-map {
  list-style: none;
  padding-left: 0;
  width: 100%;
}
footer .site-map li {
  padding: 8px 0;
  border-top: 1px solid #FFF;
  margin-bottom: 0;
}
footer .site-map li:last-child {
  border-bottom: 1px solid #FFF;
}
footer .site-map li a {
  display: block;
  text-decoration: none;
  width: 100%;
}
footer .site-map li a:hover {
  text-decoration: underline;
}
footer .sub-footer {
  background-color: #2A3C50;
  padding: 15px 0;
}
footer .back-to-top-btn {
  display: inline-block;
  background-color: #445C75;
  color: #EDEECB;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 0;
  border-radius: 5px;
  transition: background-color 150ms ease-in-out;
}
footer .back-to-top-btn:hover {
  cursor: pointer;
  background-color: #6b4048;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FAFAFA;
  padding: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  overflow: hidden;
  transform: translateY(-100%);
  animation-delay: 0.5s;
  animation-name: slideDown;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
header .navbar {
  padding: 0;
}
header .navbar .navbar-toggler {
  margin-left: auto;
}
header .navbar .navbar-nav {
  padding: 10px 5px;
  width: 100%;
}
header .navbar .nav-item {
  flex: 1;
  margin-bottom: 0;
}
header .navbar .nav-item:last-child .nav-link {
  border-right: 0;
}
header .navbar .nav-item .nav-link {
  width: 100%;
  height: 100%;
  padding: 0;
  align-items: center;
  color: #333333;
  text-decoration: none;
  padding: 10px 5px;
  text-transform: uppercase;
  transition: background-color 150ms ease-in-out;
  font-size: 1rem;
  font-weight: 600;
}
header .navbar .nav-item .nav-link:hover {
  background-color: #ddd;
}
@media (min-width: 992px) {
  header .navbar .nav-item .nav-link {
    text-align: center;
    border-right: 1px solid #333333;
    padding: 2px 5px;
    font-size: 1.15rem;
  }
}

.hero {
  padding-top: 45px;
  background-image: url("../assets/images/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero * {
  color: #FFF;
}
@media (min-width: 992px) {
  .hero {
    padding-top: 90px;
  }
}
.hero h1 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .hero p {
    font-size: 1.625rem;
  }
}
.hero .project-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .hero .project-logo {
    max-width: 224px;
  }
}
.hero .hero-content {
  margin-bottom: 40px;
  opacity: 0;
  animation-delay: 1.25s;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 100%;
  }
}
.hero .bottom-img {
  transform: translateY(100%);
  animation-delay: 0.5s;
  animation-name: slideUp;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(1%);
  }
}

.img-carousel {
  padding: 0 40px;
}
@media (min-width: 992px) {
  .img-carousel {
    padding: 0 20px;
  }
}
.img-carousel .carousel-img {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: padding 150ms ease-in-out;
  padding: 10%;
}
@media (min-width: 992px) {
  .img-carousel .carousel-img {
    height: 378px;
    min-width: 310px;
  }
}
.img-carousel .owl-stage-outer {
  z-index: 2;
}
.img-carousel .owl-item.center .carousel-img {
  padding: 0;
}
.img-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  z-index: 1;
}
.img-carousel .owl-nav button:hover {
  background: none !important;
}
.img-carousel .owl-nav .owl-prev,
.img-carousel .owl-nav .owl-next {
  font-size: 4.5rem !important;
  font-weight: 300 !important;
  transition: color 150ms ease-in-out;
  color: #2A3C50 !important;
}
.img-carousel .owl-nav .owl-prev:hover,
.img-carousel .owl-nav .owl-next:hover {
  color: #6b4048 !important;
}

.intro-modal .modal-header {
  align-items: flex-start;
  background-color: #445C75;
  color: #FFF;
}
.intro-modal .modal-header .btn-close {
  filter: invert(100%);
}
.intro-modal p {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .intro-modal p {
    font-size: 1.15rem;
  }
}

/* LIGHTBOX */
#lightbox {
  height: 0%;
  position: fixed;
  top: -100%;
  transition: top 0.85s, height 0.5s;
  width: 100%;
  z-index: 500;
}

#lightbox > span {
  background-color: rgba(35, 35, 35, 0.8);
  cursor: pointer;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

#lightbox > span span {
  color: #fff;
  font-size: 3.6em;
  line-height: 0.4em;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

#lightbox div {
  box-shadow: 0 8px 15px 0 #000;
  margin: -120px auto 0;
  max-height: 80%;
  overflow: auto;
  position: relative;
  transform: rotateX(90deg) translateY(-160px);
  transition: 0.24s;
  width: 88%;
}

#lightbox img {
  display: block;
  width: 250%;
  padding: 20px;
  background-color: #aaa;
}
@media (min-width: 992px) {
  #lightbox img {
    width: 100%;
  }
}

#lightbox.on {
  top: 0;
  height: 100%;
}

#lightbox.on div {
  margin-top: 50px;
  transition: 0.8s ease-out 0.32s;
  transform: rotateX(0deg) translateY(0px);
}

img.lightbox {
  cursor: pointer;
}

.phase-schedule .title {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  color: #FFF;
  background-color: #000000;
  text-align: center;
  margin-bottom: 50px !important;
  font-size: 1.25rem;
  height: 95px;
}
@media (min-width: 992px) {
  .phase-schedule .title {
    margin-bottom: 30px !important;
    margin-right: 60px;
  }
}
.phase-schedule .title::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 110%;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #000000;
}
@media (min-width: 992px) {
  .phase-schedule .title::after {
    top: 0;
    bottom: auto;
    left: auto;
    right: -50px;
    transform: translateY(-10%);
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 60px solid #000000;
    border-right: 0;
  }
}
.phase-schedule .title.b {
  background-color: #705358;
}
.phase-schedule .title.b::after {
  border-top-color: #705358;
}
@media (min-width: 992px) {
  .phase-schedule .title.b::after {
    border-top-color: transparent;
    border-left-color: #705358;
  }
}
.phase-schedule .title.c {
  background-color: #876e72;
  margin-right: 0;
}
.phase-schedule .title.c::after {
  display: none;
}
.phase-schedule .title.here {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .phase-schedule .title.here {
    margin-top: 0;
  }
}
.phase-schedule .title.here::before {
  content: "";
  width: 60px;
  height: 76px;
  background-image: url("../assets/images/icons/we-are-here-pin.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
  color: #FFF;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 8px;
}

.standard-section {
  padding-top: 30px;
  padding-bottom: 30px;
}
.standard-section h2 {
  color: #445C75;
}
.standard-section h3 {
  font-weight: 700;
}
.standard-section.blue-bg {
  background-color: #445C75;
}
.standard-section.blue-bg * {
  color: #FFF;
}
.standard-section.green-bg {
  background-color: #A5C6B2;
}
.standard-section.mauve-bg {
  background-color: #6b4048;
}
.standard-section.mauve-bg * {
  color: #FFF;
}
.standard-section.mauve-bg .inner-card {
  background-color: #56333a;
}
.standard-section.mauve-bg .inner-card * {
  color: #FFF;
}
.standard-section .inner-card {
  background-color: #FFF;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
}
.standard-section .inner-card * {
  color: #333333;
}
.standard-section .inner-card h4 {
  margin-bottom: 15px;
}
.standard-section .inner-card .icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: 100%;
  height: auto;
  max-width: 175px;
}
@media (min-width: 992px) {
  .standard-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .standard-section.green-bg .row {
    margin-bottom: 24px;
  }
}

.video-embed {
  position: relative;
  padding-bottom: 50%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.video-embed iframe, .video-embed object, .video-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-size: 16px;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

body {
  background-color: #FAFAFA;
  color: #333333;
}

h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
}
@media (min-width: 992px) {
  h1 {
    font-size: 3.313rem;
  }
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 25px;
  font-weight: 700;
}
@media (min-width: 992px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: 1.35rem;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  h4 {
    font-size: 1.5rem;
  }
}

p,
li {
  font-size: 1rem;
}
p.large,
li.large {
  font-size: 1.15rem;
}

ul,
ol {
  padding-left: 2rem;
}

li {
  margin-bottom: 15px;
}

a img {
  transition: filter 300ms ease-in-out;
}
a:hover img {
  filter: brightness(80%);
}

.container {
  width: 100%;
  margin: auto;
  max-width: 1200px;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .container {
    padding: 0 30px;
  }
}

.img-full {
  width: 100%;
  height: auto;
}

.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

img.cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
img.rounded {
  border-radius: 10px;
}

.btn-link {
  display: inline-block;
  padding: 10px 15px;
  background-color: #445C75;
  color: #FFF !important;
  border-radius: 5px;
  font-size: 1.15rem;
  font-weight: 500;
  transition: background-color 150ms ease-in-out;
  text-decoration: none;
}
.btn-link:hover {
  cursor: pointer;
  background-color: #2A3C50;
  color: #FFF;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22sass/blocks/announcement-banner.scss%22,%22sass/_variables.scss%22,%22sass/blocks/footer.scss%22,%22sass/blocks/header.scss%22,%22sass/blocks/hero.scss%22,%22sass/blocks/img-carousel.scss%22,%22sass/blocks/intro-modal.scss%22,%22sass/blocks/lightbox.scss%22,%22sass/blocks/phase-schedule.scss%22,%22sass/blocks/standard-section.scss%22,%22sass/blocks/video-embed.scss%22,%22sass/_global.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;EACI;EACA,kBCaI;EDZJ;;AAEA;EACI;EACA;;AAGJ;EACI;;AAEA;EACI;;;AEbR;EACI,ODSA;;ACNJ;EACI;EACA,kBDMD;;ACJC;EAJJ;IAKQ;;;AAIR;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI,ODZJ;ECaI;;AAMJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAGI;EACI;;AAMhB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAMhB;EACI,kBDjEI;ECkEJ;;AAGJ;EACI;EACA,kBDxED;ECyEC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACI;EACA,kBDhFJ;;;AEhBR;EACI;EACA;EACA;EACA;EACA,kBFOQ;EENR;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;;AAIA;EACI;IACI;;EAGJ;IACI;;;AAIR;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;;AAGI;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA,OF/CL;EEgDK;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EAjBJ;IAkBQ;IACA;IACA;IACA;;;;ACzEpB;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OHEA;;AGCJ;EAZJ;IAaQ;;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAEA;EAHJ;IAIQ;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;IACI;;EAGJ;IACI;;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;IACI;;EAGJ;IACI;;;;AC7EhB;EACI;;AAEA;EAHJ;IAIQ;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AACA;EAPJ;IAQQ;IACA;;;AAIR;EACI;;AAIA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAII;EACI;;AAIR;AAAA;EAEI;EACA;EACA;EACA;;AAEA;AAAA;EACI;;;ACvDZ;EACI;EACA,kBLUD;EKTC,OLOA;;AKLA;EACI;;AAIR;EACI;;AACA;EAFJ;IAGQ;;;;ACdZ;AACA;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;AACA;EALJ;IAMQ;;;;AAIR;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;;;AC9DH;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OPEM;EODN,kBPDM;EOEN;EACA;EACA;EACA;;AAEA;EAfD;IAgBE;IACA;;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAZD;IAaE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;AAIF;EACC;;AACA;EACC;;AACA;EAFD;IAGE;IACA;;;AAIH;EACC;EACA;;AACA;EACC;;AAIF;EACC;;AAEA;EAHD;IAIE;;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OPxEI;EOyEJ;EACA;EACA;;;ACtFJ;EACI,aRqBkB;EQpBlB,gBRoBkB;;AQlBlB;EACI,ORQD;;AQLH;EACI;;AAGJ;EACI;;AAEA;EACI,ORLJ;;AQSJ;EACI,kBRNA;;AQSJ;EACI,kBRTA;;AQWA;EACI,ORjBJ;;AQoBA;EACI,kBRfC;;AQiBD;EACI;;AAKZ;EACI,kBR9BA;EQ+BA;EACA;EACA;EACA;;AAEA;EACI,ORtCD;;AQyCH;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EAlEJ;IAmEQ,aR9Ce;IQ+Cf,gBR/Ce;;EQiDf;IACI;;;;ACvEZ;EACI;EACH;EACA;EACA;EACA;;AAEG;EACI;EACA;EACA;EACA;EACA;;;ACZR;EACC;;;AAGD;AAAA;EAEC;EACA;EACA;EACA,aV+CkB;;;AU5CnB;EACC,kBVDW;EUEX,OVJU;;;AUOX;EACC;EACA;EACA;;AACA;EAJD;IAKE;;;;AAIF;EACC;EACA;EACA;;AACA;EAJD;IAKE;;;;AAIF;EACC;EACA;;AACA;EAHD;IAIE;;;;AAIF;EACC;EACA;;AAEA;EAJD;IAKE;;;;AAIF;AAAA;EAEC;;AACA;AAAA;EACC;;;AAIF;AAAA;EAEC;;;AAGD;EACC;;;AAIA;EACC;;AAIA;EACC;;;AAKH;EACC;EACA;EACA;EACA;;AACA;EALD;IAME;;;;AAIF;EACC;EACA;;;AAGD;EACC;EACA;EACG;EACA;;;AAKH;EACC;EACA;EACA;;AAED;EACC;;;AAIF;EACC;EACA;EACA,kBVzGM;EU0GN;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA,kBVlHU;EUmHV,OVtHM%22,%22file%22:%22main.css%22%7D */
