@import url("https://use.typekit.net/uep6pio.css");
* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
  pointer-events: none;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "agenda", sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.earth-container {
  position: relative;
  z-index: 1;
}
.earth-container::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.earth-container:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  border: 12px solid #002F6C;
  border-radius: 100%;
  background: #ffffff;
  bottom: 0;
  right: 0;
  margin: auto;
}
.earth-container > canvas {
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  user-select: none;
}

.earth-draggable {
  cursor: all-scroll;
  cursor: -webkit-grab;
  cursor: grab;
}

.earth-dragging * {
  cursor: all-scroll;
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
}

.earth-clickable {
  cursor: pointer;
}

.earth-overlay {
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
  pointer-events: none;
  transform-origin: 0 0;
}
.earth-overlay a,
.earth-overlay input,
.earth-overlay button {
  pointer-events: all;
}

.earth-hittest {
  position: fixed;
  width: 200vh;
  max-width: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
}
.earth-hittest svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  opacity: 0;
}

#wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 100%;
  min-height: 10px;
}

#wrapper-in {
  width: 100%;
  max-width: 100vh;
}

#globe-content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  transition: transform 0.1s ease-out;
  position: relative;
}
#globe-content-wrapper h1,
#globe-content-wrapper h2,
#globe-content-wrapper h3,
#globe-content-wrapper h4,
#globe-content-wrapper h5,
#globe-content-wrapper h6 {
  margin: 0 0 20px 0;
  color: #ffffff;
  font-size: 15px;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
#globe-content-wrapper p {
  margin: 0 0 20px 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  font-style: italic;
}
#globe-content-wrapper.photo-appear {
  transition: transform 0.15s ease-out;
  transform: scale(1);
}
#globe-content-wrapper #globe-image-wrapper {
  width: 45%;
  height: auto;
  border: 5px #ffffff solid;
  border-radius: 5px;
  position: relative;
}
#globe-content-wrapper #globe-image-wrapper #globe-content-image {
  width: 100%;
  height: 100%;
  display: block;
}
#globe-content-wrapper #globe-image-wrapper #globe-image-caption {
  background: linear-gradient(to top, rgba(0, 47, 108, 0.8) 0%, rgba(0, 47, 108, 0) 100%);
  width: 100%;
  min-height: 45px;
  padding: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  font-family: "agenda", sans-serif;
  text-transform: uppercase;
}
#globe-content-wrapper #globe-content {
  width: 55%;
  padding-left: 30px;
  padding-right: 5px;
  text-align: right;
}
#globe-content-wrapper #globe-content-nav {
  width: 100%;
}
#globe-content-wrapper #globe-content-nav #prev-photo {
  width: 40px !important;
  height: 40px !important;
  margin-top: 20px;
  margin-right: 10px;
  padding: 0 !important;
  transform: none !important;
  background: none;
  border: 0;
  outline: none;
  position: relative;
  cursor: pointer;
}
#globe-content-wrapper #globe-content-nav #prev-photo:before {
  content: "";
  background: transparent url("../assets/map-left.svg") center center no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ffffff !important;
  color: #002F6C !important;
  border-radius: 100%;
  font-size: 12px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
#globe-content-wrapper #globe-content-nav #prev-photo:hover::before {
  border-color: #ffffff !important;
  background: #00558C url("../assets/map-left.svg") center center no-repeat;
  color: #ffffff !important;
}
#globe-content-wrapper #globe-content-nav #next-photo {
  width: 40px !important;
  height: 40px !important;
  margin-top: 20px;
  padding: 0 !important;
  transform: none !important;
  background: none;
  border: 0;
  outline: none;
  position: relative;
  cursor: pointer;
}
#globe-content-wrapper #globe-content-nav #next-photo:before {
  content: "";
  background: transparent url("../assets/map-right.svg") center center no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ffffff !important;
  color: #002F6C !important;
  border-radius: 100%;
  font-size: 12px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
#globe-content-wrapper #globe-content-nav #next-photo:hover::before {
  border-color: #ffffff !important;
  background: #00558C url("../assets/map-right.svg") center center no-repeat !important;
  color: #ffffff !important;
}

#photo-progress {
  position: relative;
  width: calc(100% - 160px);
  height: 3px;
  position: absolute;
  bottom: 34px;
  right: 5px;
  overflow: hidden;
}

#photo-progress-track {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #385A87;
}

#photo-progress-thumb {
  position: absolute;
  top: 0;
  height: 100%;
  background: #78C5D5;
  transition: left 0.3s ease, width 0.3s ease;
}

body.is-desktop #wrapper {
  min-height: 100vh;
  flex-direction: row !important;
}
body.is-desktop #globe-content-wrapper {
  width: 70%;
}
body.is-desktop #globe-content-nav {
  margin-top: 20px;
}

body.is-tablet #wrapper {
  min-height: 100vh;
  flex-direction: row !important;
}

body.is-mobile #prev-photo,
body.is-mobile #next-photo {
  width: 60px !important;
  height: 60px !important;
}
body.is-mobile #prev-photo::before,
body.is-mobile #next-photo::before {
  font-size: 18px !important;
}/*# sourceMappingURL=style.css.map */