@font-face {
  font-family: "Lato";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("/_hcms/googlefonts/Lato/900.woff2") format("woff2"), url("/_hcms/googlefonts/Lato/900.woff") format("woff");
}

main {
  overflow: hidden;
}

.globus-container {
  position: relative;
}

.globus-container::after {
  content: "";
  width: calc(100% + 100px);
  height: 1000000px;
  position: absolute;
  left: calc(100% + 100px);
  top: calc(100% + 20px);
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.globus {
  position: relative;
}

@media screen and (min-width: 769px) {
  .globus {
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1;
  }
}

@media only screen and (min-width: 1600px) {
  .globus {
    right: calc(50vw - 720px);
  }
}

.globus__text-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 90%;
  height: 100%;
  transform: translateX(-50%);
  display: none;
}

.globus__text-container.is-active {
  display: block;
}

.globus__text {
  width: 100%;
  height: 100%;
  position: relative;

  transform-style: preserve-3d;
  animation: animate 30s linear;
  animation-iteration-count: infinite;
  transform-origin: center;
  
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes animate {
  0% {
    transform: perspective(2160px) rotateY(360deg);
  }
  100% {
    transform: perspective(2160px) rotateY(0deg);
  }
}

.globus__text--item {
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 60deg)) translateZ(calc(var(--globus-width) / 2.34)) translateY(-50%);
  animation: hide 30s linear;
  animation-iteration-count: infinite;
  opacity: 0;
  position: absolute;
  left: calc(50% - (var(--globus-width) / 6.56));
/*   top: calc(50% - (var(--globus-width) / 13.12)); */
  top: 50%;
  padding: 16px;
  border-radius: 16px;
  border 1px solid #DCDCDC;
  background: linear-gradient(180deg, rgba(236, 238, 255, 0.95) 0%, rgba(217, 217, 217, 0.50) 100%);
  box-shadow: 8px 4px 24px 0px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  color: #ffffff;
  text-align: center;
  font-size: calc(var(--globus-width) / 41);
  width: calc(var(--globus-width) / 3.28);
/*   height: calc(var(--globus-width) / 6.56); */
  height: auto;
}

.globus__text--item:nth-of-type(1) {
  animation-delay: 0s;
}

.globus__text--item:nth-of-type(2) {
  animation-delay: 5s;
}

.globus__text--item:nth-of-type(3) {
  animation-delay: 10s;
}

.globus__text--item:nth-of-type(4) {
  animation-delay: 15s;
}

.globus__text--item:nth-of-type(5) {
  animation-delay: 20s;
}

.globus__text--item:nth-of-type(6) {
  animation-delay: 25s;
}

@keyframes hide {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  45% {
     opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.globus__text--item .globus__text--item-big-text {
  font-size: calc(var(--globus-width) / 17.875);
  word-break: normal;
  text-stroke: 1px #2B328F;
  -webkit-text-stroke: 1px #2B328F;
  color: transparent;
  line-height: 1;
  display: block;
  font-weight: 900;
}

#globeViz canvas {
  width: 100% !important;
  height: 100% !important;
}