.sphere-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -1vh;
    right: -15vw;
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: transparent;
    /* overflow: hidden; */
    z-index: 1;
}

.animation-wrapper {
    width: 100%;
    height: 100%;
    padding-bottom: 50%;
    position: relative;
    /* overflow: hidden; */
}

.sphere-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 920px;
    margin: -290px 0 0 -290px;
}

.sphere path {
    fill: url(#sphereGradient);
    stroke-width: none;
    backface-visibility: hidden;
}

/**********Responsive********/
@media (min-width: 992px) and (max-width:1199px)
{
.sphere-container {
        opacity: 0.5;
        bottom: -5vw;
        right: -20vw;
    }
.sphere-animation {
        width: 70vw;
        margin: auto;
        top: 0;
        left: auto;
        right: 0;
    }
}
@media (min-width: 768px) and (max-width:991px) {

.sphere-animation {
    position: absolute;
    top: auto;
    left: auto;
    width: 70vw;
    margin: -290px 0 0 -290px;
    bottom: -5vw;
    right: -25px;
    opacity: 0.5;
}
}
@media (max-width: 768px) {
.sphere-container {
        opacity: 0.5;
        bottom: -50vw;
        right: 10vw;
    }
.sphere-animation {
        width: 100%;
        margin: auto;
        top: 0;
        left: 30%;
    }
}
@media (max-width: 767px) {
    .sphere-container {
        opacity: 0.5;
        bottom: auto;
        right: 0;
    }
.animation-wrapper {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 0;
}
.sphere-animation {
        width: 500px;
        margin: auto;
        top: 0;
        left: 30%;
    }
}
@media (max-width: 400px) {
    .sphere-container {
        opacity: 0.5;
        bottom: 7vh;
        right: 20vw;
    }
    .sphere-animation {
        width: 480px;
        margin: auto;
        top: 50%;
        left: 30%;
    }
}

/* Desktop - default (above 1920px) */
@media (min-width: 1920px) {
    .sphere-container {
        bottom: 5vh;
        right: -10vw;
    }
    .sphere-animation {
        width: 1360px;
    }
}



@media (min-width: 100px) {
    .sphere path {
        stroke-width: 0;
    }
}

/*@media (max-width: 1280px) and (max-height: 680px) {
   .sphere-animation {
        width: 780px;
    }
        .sphere-container {
        bottom: -15vh;
        right: -20vw;
    }
}*/