
/* ******************************************** */
/** HOME: GLOBE
/* ******************************************** */

/* STARS */

.c-globe{
    position: relative;
    z-index: 0;
    background: var(--color-primary);
    /* background: linear-gradient(248deg, #0D0564 15%, #2141B1); */
    overflow: hidden;
}
.c-globe:before{
    content: "";
    display: block;
    width: 72vw;
    aspect-ratio: 1;
    position: absolute;
    top: -3vw;
    right: -5vw;
    background: radial-gradient(circle, #3272f0 0%, rgba(50,114,240,0) 50%);
    opacity: 0.6;
    filter: blur(100px);
}

.c-globe__section{
    height: 100vh;
    position: relative;
}


/* GLOBE */

.c-globe__holder{
    width: 150vw;
    height: 150vh;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 0;
}
.c-globe__holder canvas{
    transform: translate(20%, 10%);
}

/* Globe */

.c-globe__holder canvas{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
}



/* GEO */

.c-globe__geo{
    height: 200vh;
    z-index: -1;
    background: linear-gradient(100deg, rgb(130 213 255 / 30%), rgba(255,255,255,0));
    opacity: 0.75;
}




/* ********************** TALL MOBILE PORTRAIT ********************** */

@media (max-width: 767px) and (min-height: 730px){
}

 



/* ********************** MOBILE LANDSCAPE ********************** */

@media (orientation: landscape) and (min-width: 500px) and (max-width: 767px) {
}




/* ********************** de Mobile a TABLET ********************** */

@media (min-width: 768px) {
}




/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {
}




/* ********************** de Desktop a DESKTOP 2 ********************** */

@media (min-width: 1200px) {
}
@media (min-width: 1200px) and (min-height: 790px){
}




/* ********************** de Desktop 2 a HD ********************** */

@media (min-width: 1400px) {
}
@media (min-width: 1400px) and (min-height: 790px){
}




/* ********************** de Hd a FULL HD ********************** */

@media (min-width: 1600px) {
}
@media (min-width: 1600px) and (min-height: 790px){
}
@media (min-width: 1600px) and (min-height: 900px){
}

@media (min-width: 1800px) {
}




/* ********************** 4K ********************** */

@media (min-width: 2048px) {
}