@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: Lato, sans-serif;
  line-height: 1.5;
  background: #eeeff1;
  background-size: 100% 100%;
  height: 100%;
  margin: 0;
}

figure {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

img {
  display: flex;
  align-self: flex-end;
  max-width: 100%;
  user-select: none;
}

#container {
  position: relative;
  max-width: 100%;
  min-height: auto;
  overflow: hidden;
  z-index: 1;
}

.media {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.vid {
  display: flex;
  
}


@media screen and (max-width: 500px) {
#container {
    min-height: 600px;
  }
  #container img {
    width: 100%;
  }
  .media {
    display: block;
  }
}

@media screen and (min-width: 900px) {
  .mob-hide {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .desktop-hide {
    display: none;
  }
}

.hotspots {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.hotspots .hotspot {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.hotspots .hotspot:nth-child(1) .trigger {
  top: 55%;
  left: 74%;
}

@media screen and (max-width: 900px) {
  .hotspots .hotspot:nth-child(1) .trigger {
    top: 53%;
    left: 74%;
  }
}

.hotspots .hotspot:nth-child(2) .trigger {
  top: 58%;
  left: 51%;
}

@media screen and (max-width: 900px) {
  .hotspots .hotspot:nth-child(2) .trigger {
    top: 56%;
    left: 35%;
  }
}

.hotspots .hotspot:nth-child(3) .trigger {
  top: 29%;
  left: 36%;
}

@media screen and (max-width: 900px) {
  .hotspots .hotspot:nth-child(3) .trigger {
    top: 18%;
    left: 32%;
  }
}

.hotspots .hotspot:nth-child(4) .trigger {
  top: 39%;
  left: 55%;
}

@media screen and (max-width: 900px) {
  .hotspots .hotspot:nth-child(4) .trigger {
    top: 24%;
    left: 73%;
  }
}

.hotspots .hotspot:nth-child(5) .trigger {
  top: 57%;
  left: 38%;
}

@media screen and (max-width: 900px) {
  .hotspots .hotspot:nth-child(5) .trigger {
    top: 70%;
    left: 33%;
  }
}

.hotspots .hotspot:nth-child(6) .trigger {
  top: 31%;
  left: 72%;
}

@media screen and (max-width: 900px) {
  .hotspots .hotspot:nth-child(6) .trigger {
    top: 36%;
    left: 63%;
  }
}

.hotspots .hotspot:nth-child(7) .trigger {
  top: 80%;
  left: 52%;
}

@media screen and (max-width: 900px) {
  .hotspots .hotspot:nth-child(7) .trigger {
    top: 88%;
    left: 74%;
  }
}

.hotspots .hotspot:nth-child(8) .trigger {
  top: 83%;
  left: 24%;
}

@media screen and (max-width: 900px) {
  .hotspots .hotspot:nth-child(8) .trigger {
    top: 87%;
    left: 25%;
  }
}

.hotspots .hotspot:nth-child(9) .trigger {
  top: 88%;
  left: 67%;
}

@media screen and (max-width: 900px) {
  .hotspots .hotspot:nth-child(9) .trigger {
    top: 77%;
    left: 60%;
  }
}

.hotspots .hotspot .trigger {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #f3c104;
  color: #eee6f0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 0 0 0 #f3c104;
  transition: box-shadow 0.4s;
  user-select: none;
  animation: pulse 1.5s infinite;
}
.hotspots .hotspot .trigger:hover {
  box-shadow: 0 0 0 8px rgb(243, 193, 4, 0.5);
}
.hotspots .hotspot .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
.hotspots .hotspot .content::before {
  content: "";
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(21, 47, 56, 0.89);
  opacity: 0;
  transition: opacity 0.4s;
}
.hotspots .hotspot .content figure {
  position: relative;
  width: 400px;
  height: auto;
  z-index: 2;
  opacity: 0;
  transform: translate(0, -10%);
  transition: transform 0.6s, opacity 0.6s;
  user-select: none;
}

@media screen and (max-width: 400px) {
  .hotspots .hotspot .content figure {
    width: 300px;
  }
}


.hotspots .hotspot .content figure::before {
  content: "×";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 12px;
  right: 12px;
  color: #000000;
  height: 36px;
  width: 36px;
  z-index: 99;
  border-radius: 50%;
  background: #eeeff1;
  font-size: 24px;
  pointer-events: all;
  cursor: pointer;
}

.hotspots .hotspot .content figure img {
  width: 100%;
  height: auto;
}
.hotspots .hotspot .content figure figcaption {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: white;
  color: #152f38;
  pointer-events: none;
}

figcaption.mini-fig {
  font-size: 14px;
  font-style: italic;
}

.hotspots .hotspot .content figure a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: #9CA6FF;
  color: #433468;
}

.hotspots .hotspot.reveal {
  z-index: 1;
  pointer-events: all;
}
.hotspots .hotspot.reveal .content {
  opacity: 1;
}
.hotspots .hotspot.reveal .content::before {
  opacity: 1;
}
.hotspots .hotspot.reveal .content figure {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.4s;
  pointer-events: all;
  user-select: none;
}

.hotspots .hotspot.reveal .content figure figcaption {
  pointer-events: all;
}

@keyframes pulse {
  from { box-shadow: 0 0 0 0px rgb(243, 193, 4, 0.5); }
  to { box-shadow: 0 0 0 15px rgba(0, 0, 0, 0); }
}

#hero-wrap {
  background-color: #2f6d50;
  padding: 25px;
}

#logo {
  margin: 0 auto;
  width: 499px;
  padding-top: 40px;
  padding-bottom: 20px;
  display: inline-block;
}

.hb-logo-wrap img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 200px;
  height: 100px;
}

.logo-wrap img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 800px;
  height: 100px;
}

.logo-mob-wrap img {
  display: none;
}

@media screen and (max-width: 800px) {
  .logo-wrap img {
    display: none;
  }

  .logo-mob-wrap img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    width: 600px;
  }
}
