.loadbox {
    height: 100vh;
    width: 100%;
    background-color: #000;
    z-index: 200;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    left: 0;
    transition: all 1s ease-in-out;
}

.loadbox .logo {
    width: 100%;
}

.loadbox .logo img {
    margin: auto;
    display: block;
    animation: pulse 2s ease;
    width: 250px;
    position: absolute;
    top:25vh;
    left:calc(50vw - 125px);
}

.fill-w {
    width: 100%;
}

.loadbox #hero {
    width: 100%;
    text-align: center;
}

.loadbox .loadbox-content {
    z-index: 1;
}

.loadbox video {
    z-index: 0;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    filter: brightness(0.4);
}

.loadbox #hero {
    color: #fff;
    margin-top: 30px;
}

@keyframes pulse {
    0% {
        width: 0px;
    }
    100% {
        width: 250px;
    }
}

.animation-finished {
    opacity: 0;
}


.vlt-project-showcase__item canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.vlt-project-showcase__item .header {
    top: 42%;
}

.vlt-project-showcase__item .header-content {
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.vlt-project-showcase__item .footer {
    bottom: 3%;
}

.vlt-project-showcase__item .description {
    color: gray;
    padding-top: 50px;
}

.vlt-project-showcase__item a, a:hover, .vlt-project-showcase__item a:visited {
    color: white;
    text-decoration: none;
}

.vlt-project-showcase__item .disable-selection {
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer */
    -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
    -webkit-user-select: none; /* Chrome, Safari, and Opera */
    -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}

.vlt-project-showcase__item h2::after {
    content: '2';
    font-size: 12px;
    position: absolute;
    top: 14px;
    padding-left: 5px;
}

.vlt-project-showcase__item .btn {
    border-radius: 100px;
    padding: 10px 25px;
}

/*.vlt-header .vlt-navbar.vlt-navbar--white-text-on-top {*/
/*    background-color:transparent !important;*/
/*    box-shadow: none;*/
/*}*/
/*.vlt-header .vlt-navbar.vlt-navbar--fixed{*/
/*    background-color: #FFFFFF !important;*/
/*    box-shadow: 0px 0px 10px 0px rgba(204,204,204,.5);*/
/*}*/
.x-center {
    display: flex;
    align-items: center;
}

.m-auto {
    margin: auto;
}

.shape {
    transform: scale(100);
    position: relative;
    transition: all 1s ease-in-out;
}

.shape.shape-normal {
    transform: scale(1);
    animation-name: mov;
    animation-duration: 6s;
    animation-iteration-count: infinite;
}

@keyframes mov {
    0% {
        left: -20px;
    }
    50% {
        left: 20px;
    }
    100% {
        left: -20px;
    }
}

.lights {
    z-index: 10;
    position: absolute;
    margin-top: -150px;
}

.hotspot-box {
    position: relative;
    display: none;
}

.hotspot-box a.name {
    position: absolute;
    width: 200px;
    height: 40px;
    line-height: 40px;
    top: -20px;
    left: -25px;
    text-decoration: none;
    color: #FFF;
    transition: all .4s ease-in-out;
    padding-left: 50px;
    background-color: rgb(57 220 225 / 50%);
    border-radius: 2px;
    opacity: 0;
}

.hotspot-box:hover a.name {
    opacity: 1;
}

.hotspot {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
}

.hotspot__positioner {
    position: absolute;
}

.pot-1 .hotspot__positioner--01 {
    left: 32vw;
    top: -3vw;
    animation: pot1 3s infinite;
}
.pot-2 .hotspot__positioner--01 {
    left: 42vw;
    top: -10vw;
    animation: pot2 3s infinite;
}
.pot-3 .hotspot__positioner--01 {
    left: 56vw;
    top: -10vw;
    animation: pot3 3s infinite;
}
.pot-4 .hotspot__positioner--01 {
    left: 66vw;
    top: -3vw;
    animation: pot4 3s infinite;
}

.pot-5 .hotspot__positioner--01 {
    left: 50vw;
    top: -13vw;
    animation: pot2 3s infinite;
}
.pot-6 .hotspot__positioner--01 {
    left: 25vw;
    top: 10vw;
    animation: pot2 3s infinite;
}
.pot-7 .hotspot__positioner--01 {
    left: 75vw;
    top: 10vw;
    animation: pot2 3s infinite;
}

.hotspot__container {
    position: relative;
}



.hotspot--01 {
    width: 20px;
    height: 20px;
    border: 5px solid #39dcff;
    background-color: transparent;
    z-index: 1;
    opacity: 0.2;
    animation: dot1 2s infinite;
}

.hotspot--02 {
    width: 20px;
    height: 20px;
    background-color: #39dcff;
    z-index: 2;
    animation: dot2 2s infinite;
}

.hotspot--03 {
    width: 20px;
    height: 20px;
    background-color: #39dcff;
    z-index: 3;
    animation: dot3 1s alternate infinite;
}

@keyframes dot1 {
    0% {
        opacity: 0.2;
        transform: translate(-50%, -50%);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(5);

    }
}

@keyframes dot2 {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);

    }
}

@keyframes dot3 {
    0% {
        transform: translate(-50%, -50%);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pot1 {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(20px, 20px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes pot2 {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(0px, 20px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes pot3 {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(20px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes pot4 {
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(-20px, -20px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.svg-p {
    position: absolute;
    margin: auto;
    left: 300px;
    transform: scale(.8) rotateY(180deg);
    top: 30%;
}


/* #canvashere {
  position: absolute;
  top: 0;
  left: 0;
  filter:brightness(.5)
} */
.momento-360-view .logo-anchor .logo {
    display: None !important;
}

/* .canvas-over {
  height: 100%;
  width:100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

@media screen and (max-width: 750px) {
  .canvas-over {
    display: block;
  }
  html body #hero {
    font-size:30px !important;
  }
} */
.video-main {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    filter: brightness(0.6);
}

.title-main {
    z-index: 10;
    color: #FFF;
    margin: auto;
}

.fill {
    min-height: 100vh;
    min-width: 100vw;
    position: absolute;
}

.svg-main {
    position: absolute;
    transform: scale(.7);
    animation-name: show-mobile;
    opacity: 1;
    animation-duration: 2s;
    animation-delay: 2s;
    top:auto;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -o-transition: transform 0.5s;

}
#svg-container {
    position: absolute;
    top:0;
    left:0;
    height:100vh;
    width:100vw;
    perspective: 25px;
}

#inner {
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -o-transition: transform 0.5s;
}

.move-simble {
    animation-name: move-sim;
    animation-duration: 6s !important;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.main-bg {
    position: absolute;
    top: 0;
}

.main-bg .inner-header {
    height: 90vh;
    width: 100vw;
    position: relative;
}




svg.svg-main stop {
    transition: all 1s ease-in-out;
}

svg.svg-main g.st8 > g {
    display: none;

}
svg.svg-main g.st8 > g.build-move{
    filter:grayscale(1);
    transform: translate(0, 10) !important;
}
.trans {
    transition: all .4s ease-in-out;
}
svg.svg-main.stop-ani stop {
    stop-opacity: 0;
}

svg.svg-main path.st151 {
    display: none;
}

svg.svg-main polygon {
    transition: all 1s ease-in-out;
}

svg.svg-main.poly-ani polygon {
    opacity: 0;
}

@keyframes show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes move-sim {
    0% {
        transform: translate(0px, 0px) scale(.7);
    }
    25% {
        transform: translate(0px, 20px) scale(.7);
    }
    50% {
        transform: translate(0px, 0px) scale(.7);
    }
    75% {
        transform: translate(0px, -20px) scale(.7);
    }
    100% {
        transform: translate(0px, 0px) scale(.7);
    }
}

@keyframes mobile-move {
    0% {
        transform: translate(0px, 0px) scale(1.4);
    }
    25% {
        transform: translate(0px, 20px) scale(1.4);
    }
    50% {
        transform: translate(0px, 0px) scale(1.4);
    }
    75% {
        transform: translate(0px, -20px) scale(1.4);
    }
    100% {
        transform: translate(0px, 0px) scale(1.4);
    }
}


#btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
    background: transparent;
    border: 0;
}


@keyframes hop {
    0% {
        height: 0;
    }
    50% {
        height: 12px;
    }
    100% {
        height: 5px;
    }
}

.equalizer {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -14px;
    height: 20px;
    overflow: hidden;
    cursor: pointer;
}

.equalizer-item {
    display: inline-block;
    background: #000;
    width: 2px;
    height: 10px;
}

.equalizer-nopop {
    height: 2px;
}

.bar-1 {
    animation: hop 0.5s ease-in infinite;
}

.bar-2 {
    animation: hop 0.9s ease-in infinite;
}

.bar-3 {
    animation: hop 0.7s ease-in infinite;
}

.bar-4 {
    animation: hop 0.6s ease-in infinite;
}


.header {
    position: relative;
    text-align: center;
    background: linear-gradient(60deg, rgb(73 23 142) 25%, rgb(0 0 0) 75%);
    color: white;
}

.inner-header {
    height: 65vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.flex { /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px; /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

.content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: white;
}

/* Animation */

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

.lights .name {
    display: none;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .content {
        height: 30vh;
    }

    .svg-main {
        top: auto;
        transform: scale(1.4) !important;
    }

    .move-simble {
        animation-name: mobile-move !important;
    }

    .lights {
        margin-top: 0;
    }

    .lights .name {
        display: none;
    }

    .pot-1 .hotspot__positioner--01 {
        left: 15vw;
        top: -18vw;
    }

    .pot-2 .hotspot__positioner--01 {
        left: 34vw;
        top: -34vw;
    }

    .pot-3 .hotspot__positioner--01 {
        left: 63vw;
        top: -34vw;
    }

    .pot-4 .hotspot__positioner--01 {
        left: 83vw;
        top: -17vw;
    }
    .pot-5 .hotspot__positioner--01 {
        left: 50vw;
        top: -40vw;
    }
    .pot-6 .hotspot__positioner--01 {
        left: 6vw;
        top: 10vw;
    }
    .pot-7 .hotspot__positioner--01 {
        left: 94vw;
        top: 10vw;
    }

    #hero {
        font-size: 40px !important;
        line-height: 50px;
    }
}

.vlt-project-showcase--style-4 .vlt-project-showcase__item[data-brightness=dark],
.equalizer-item,
.st9,
.st9 g,
.st9 g path {
    transition: all .4s ease-in-out;
}


#particles-js canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

/* ---- stats.js ---- */
.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats, .count-particles {
    -webkit-user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

/* cursor */

#cBlob {
    width: 50px;
    height: 50px;
    background-image: radial-gradient(circle farthest-corner at 10% 20%, #df5b5b 0%, #ffd16e 100%);
    background: #fff;
    background-size: 1600% 1600%;
    position: absolute;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 60;
    transform: scale(1);
    position: absolute;
    transition: transform 0.8s ease;
    animation: blobRadius 6s ease-in-out infinite, blobBackground 15s ease infinite;
}

@media (hover: none) {
    #cBlob {
        display: none;
    }
}
#cBlob.scale-2 {
    transform: scale(2);
}

@keyframes blobRadius {
    0%, 100% {
        border-radius: 43% 77% 80% 40%/40% 40% 80% 80%;
    }
    20% {
        border-radius: 47% 73% 61% 59%/47% 75% 45% 73%;
    }
    40% {
        border-radius: 46% 74% 74% 46%/74% 58% 62% 46%;
    }
    60% {
        border-radius: 47% 73% 61% 59%/40% 40% 80% 80%;
    }
    80% {
        border-radius: 50% 70% 52% 68%/51% 61% 59% 69%;
    }
}


/* hotspot animation */

.poplay {
    background-color:#000;
    position: fixed;
    top: 10vh;
    left: 15vw;
    height: 100vh;
    width: 100vw;
    transform: scale(0);
    transition: all 2s ease-in-out;
    opacity: 0;
}
.poplay .content {
    width: 50%;
    float:right;
    height:100vh;
    position: relative;
    display: none;
    text-align: left;
    padding: 30px;;
}

.poplay .content .close {
    position: absolute;
    top: 20px;
    right:20px;
}
.poplay.show {
    transform: scale(1);
    top: 0;
    left: 0;
    opacity:1;
}

.remove-animation {
    animation-name: none !important;
}
.nav-underlay {
    z-index: 19;
    position:fixed;
}

.main-section-header {
    height:100vh;
    width:100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color:#000;
}

.pot-img {
    background-image : url('../img/light-bulb.png');
    border: 20px solid #39dcff;
}

.anim {
    top: 10vh !important;
    left: 15vw !important;
}
.hotspot__positioner  {
    transition:all 1s ease-in-out;
}


.main-bg {
    min-width: 100%;
    min-height: 100%;
}
#sharebtn {
    z-index: 21;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    background: transparent;
    border: 0;
}
#sharebtn svg {
    fill:#FFF;
    color:#FFF;
    height: 20px;
    width: 20px;
    position: absolute;
    bottom: 0;
    right:0;
}
#sharebtn svg.svg-off {
    display:none;
}
.share-screen {
    height: 100vh;
    width:100vw;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    background-color:rgba(0,0,0,0.8);
    display: none;
}
.social-menu {
    width:fit-content;
    margin:auto;
}
.social-menu a {
    color: #FFF;
    height:50px;
    width:50px;
    text-align: center;
    border:1px solid #FFF;
    font-size: 30px;
    display:inline-block;
    line-height: 38px;
}
.social-menu a svg {
    height: 30px;
    width: 30px;
    fill:#FFF;
}

@media screen and (max-width: 750px) {
    .poplay .content {
        width:100%;
        margin-top:300px;
    }
    .anim {
        top: -350px !important;
        left: 120px !important;
        zoom:50%;
    }
    .content .vlt-single-post__content {
        display:none;
    }
    .vlt-post-title {
        font-size: 25px;
    }
    .main-bg .inner-header {
        height:80vh;
    }
    #btn {
        bottom:80px;
    }
    #sharebtn {
        bottom:70px;
    }
}

#particles { position:absolute; width: 100%; height: 100%; background-color: #ffffff; background-image: url(""); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; }