html, body, *, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  width: 100vw;
  height: 100vh;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
  color: #fff;
  overflow-x: hidden;
  background: transparent;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
.globe {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-block: 100px 100px 100px 100px; 
}

.globe .globe-canvas {
  z-index: 10;
  position: absolute;
  left: -300px;
  top: -120px;
  max-width: 70vw;
  max-height: 70vh;
  padding-top: -30px;
  padding-left: -30px;
  padding-bottom: -30px;
  padding-right: -30px;
  margin-top: -30px;
  margin-left: -30px;
  margin-bottom: -30px;
  margin-right: -30px;
  transform: translate3d(0, 0, 0);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.globe-list {
  z-index: 10;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  list-style: none;
  transition: opacity 3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.globe-list.active {
  opacity: 1;
}

.globe-list > li {
  opacity: 0.4;
  position: absolute;
  margin-left: -8px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00ffd3;
  transition: opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.globe-list > li:before {
  content: "";
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00ffd3;
  -webkit-animation: 2s pulse infinite linear;
          animation: 2s pulse infinite linear;
}

.globe-list > li.active {
  opacity: 1;
  margin-left: -12px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  background: #fff;
}

.globe-list > li.active:before {
  margin-left: -12px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  background: #fff;
}

.globe-list > li.active .text {
  opacity: 1;
  right: 29px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
}

.globe-list .text {
  position: absolute;
  opacity: 0.8;
  right: 21px;
  top: 50%;
  display: block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  text-align: right;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  color: #fff;
  white-space: nowrap;
  transform: translateY(-50%);
}