.logo-line {
    /* this is animated line that expands from center */
    height: 8px;
    background: linear-gradient(90deg, transparent, #ffffffa5, transparent);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.expandable-globe {
    /* this is animated line that expands from center */
    height: 8px;
    position: fixed;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
    z-index: 1;
    aspect-ratio: 1 / 1;
    background: radial-gradient( circle at 50% 50%, #fff7b3, #ffd659, #ff9a36, #ff6000, transparent, transparent,transparent, transparent);
}
    
.globe-container {
    position: absolute;
    top: 50svh;
    left: 50svw;
    transform: translate(-50%, -50%);
    width: 90vmin;
    height: 90vmin;
    z-index: 1;
    pointer-events: none;
}


.globe-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--theme-teal-light);
    z-index: -1;
    opacity: 1;
}

@media (max-width: 768px) {
    /* .globe-sphere {
              width: 70vmin;
              height: 70vmin;
          } */
}
