/* ------------------  */
/*  Table of Contents  */
/* ------------------  */
/*
    01. Base
    03. Brain
*/

/* 01. Base */
body {
    position: relative;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
}
.main-wrapper {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
}
img {
    max-width: 100%;
    height: auto;
}
* {
    box-sizing: border-box;
}
.openDotAnimation{ position: relative;}
.video_bg {
    position: absolute;
    left: 50%;
    top: 50%;
    /* The following will size the video to fit the full container. Not necessary, just nice.*/
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: -1;
    width: 120vw;
    height: 120vh;
}

.background {
    background: linear-gradient( 
180deg
 , #232B51 0%, #0C0938 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
    opacity: 0.85;
}

/* 02. Header */
header {
    position: relative;
    top: 8px;
    z-index: 2;
}
.side-menu,
.logo {
    position: absolute;
}
.side-menu {
    top: 72px;
    left: 4%;
}
.side-menu.reset {
    left: initial;
    right: 16%;
}
.side-menu.history {
    left: initial;
    right: 4%;
}
.side-menu .title {
    cursor: pointer;
}
.side-menu .title img {
    vertical-align: middle;
}
.side-menu .title span {
    margin-left: 6px;
    padding-top: 2px;
}
.logo {
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    width: 128px;
}
.side-menu .title {
    color: #fff;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    vertical-align: middle;
}

/* 04. List */
.list {
    background: #070A25;
    width: 16%;
    position: fixed;
    top: 65px;
    left: 4%;
    height: 0%;
    opacity: 0;
    padding-bottom: 20px;
    overflow-y: auto;
    box-sizing: content-box;
    transition: 1s ease-in-out all;
    -webkit-transition: 1s ease-in-out all;
    -moz-transition: 1s ease-in-out all;
    -ms-transition: 1s ease-in-out all;
    -o-transition: 1s ease-in-out all;
}

.list .search {
    width: 94%;
    background: #1f213a;
    border: 0;
    outline: 0;
    margin: 15px auto 0;
    font-size: 13px;
    padding: 10px 15px;
    box-sizing: border-box;
    display: block;
    color: #fff;
}

.search::placeholder {
    color: #474a70;
    opacity: 1;
}

.list.open {
    height: 80%;
    opacity: 1;
}

/* width */
.list::-webkit-scrollbar,
.history_panel::-webkit-scrollbar {
    width: 6px;
}
  
  /* Track */
.list::-webkit-scrollbar-track,
.history_panel::-webkit-scrollbar-track {
    background: transparent;
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
}
  
  /* Handle */
.list::-webkit-scrollbar-thumb,
.history_panel::-webkit-scrollbar-thumb {
    background: #1B1F46;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
  
  /* Handle on hover */
.list::-webkit-scrollbar-thumb:hover,
.history_panel::-webkit-scrollbar-thumb:hover {
    background: #262B5A;
}

.list .word {
    padding: 20px 15px;
    font-size: 11px;
    color: #fff;
    position: relative;
    cursor: pointer;
    transition: 0.5s ease-in-out all;
    -webkit-transition: 0.5s ease-in-out all;
    -moz-transition: 0.5s ease-in-out all;
    -ms-transition: 0.5s ease-in-out all;
    -o-transition: 0.5s ease-in-out all;
}

.list .word:hover {
    color: #8FA1FF;
}

.list .word:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    opacity: 0.4;
    height: 2px;
    background: #8FA1FF;
    transition: ease-in-out 0.5s all;
    -webkit-transition: ease-in-out 0.5s all;
    -moz-transition: ease-in-out 0.5s all;
    -ms-transition: ease-in-out 0.5s all;
    -o-transition: ease-in-out 0.5s all;
}

.list .word:hover:before {
    width: 46px;
    opacity: 1;
}

/* 04. Description */
.description {
    position: absolute;
    width: 60%;
    right: 0;
    bottom: 0;
    background: #171E55;
    padding: 20px 35px 0;
    opacity: 0.5;
    transform: translateY(100%) translateZ(0);
    box-shadow: 0px 0px 34px rgba(31, 32, 71, 0.1);
    -webkit-transform: translateY(100%) translateZ(0);
    -moz-transform: translateY(100%) translateZ(0);
    -ms-transform: translateY(100%) translateZ(0);
    -o-transform: translateY(100%) translateZ(0);
    transition: 1.5s ease-in-out all 1.6s;
    -webkit-transition: 1.5s ease-in-out all 1.6s;
    -moz-transition: 1.5s ease-in-out all 1.6s;
    -ms-transition: 1.5s ease-in-out all 1.6s;
    -o-transition: 1.5s ease-in-out all 1.6s;
}

body.close .description {
    transition: 1.5s ease-in-out all;
    -webkit-transition: 1.5s ease-in-out all;
    -moz-transition: 1.5s ease-in-out all;
    -ms-transition: 1.5s ease-in-out all;
    -o-transition: 1.5s ease-in-out all;
}

.description:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0;
    left: 13px;
    top: 0;
    background: #41E0E0;
    transition: 1.8s ease-in-out all 2.5s;
    -webkit-transition: 1.8s ease-in-out all 2.5s;
    -moz-transition: 1.8s ease-in-out all 2.5s;
    -ms-transition: 1.8s ease-in-out all 2.5s;
    -o-transition: 1.8s ease-in-out all 2.5s;
}

.description.openDotAnimation {
    opacity: 1;
    transform: translateY(0%) translateZ(0);
    -webkit-transform: translateY(0%) translateZ(0);
    -moz-transform: translateY(0%) translateZ(0);
    -ms-transform: translateY(0%) translateZ(0);
    -o-transform: translateY(0%) translateZ(0);
}

.description.openDotAnimation:before {
    height: 84px;
}

.description .title {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #41E0E0;
}

.description p {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 9px;
    color: #FFFFFF;
    width: 80%;
}

.description .main {
    width: 100%;
}

.description.active .main {
    width: 50%;
    float: left;
}

.description .inner_text {
    position: absolute;
    width: 40%;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    margin-top: 50px;
    color: #FFFFFF;
    margin-bottom: -100%;
    /*display: none;
    */opacity: 0;
    transition: 0.5s ease-in-out all;
    -webkit-transition: 0.5s ease-in-out all;
    -moz-transition: 0.5s ease-in-out all;
    -ms-transition: 0.5s ease-in-out all;
    -o-transition: 0.5s ease-in-out all;
}

.description.active .inner_text {
    display: block;
    opacity: 1;
}

.description .image {
    width: 45%;
    float: right;
    margin-bottom: -100%;
    /*display: none;
    */opacity: 0;
    transition: 0.5s ease-in-out margin-bottom;
    -webkit-transition: 0.5s ease-in-out margin-bottom;
    -moz-transition: 0.5s ease-in-out margin-bottom;
    -ms-transition: 0.5s ease-in-out margin-bottom;
    -o-transition: 0.5s ease-in-out margin-bottom;
}

/* .description .image img {
    margin-bottom: -40px;
} */

.description.active .image {
    /* display: block;     */
    opacity: 1;
    margin-bottom: 0; 
}

.description a.download {
    margin-top: 7px;
    font-size: 11px;
    line-height: 15px;
    color: #b4c0fb;
    text-decoration: none;
    position: absolute;
    top: 50%;
    right: 50px;
    margin: auto;
    text-transform: uppercase;
}

.description.active a.download {
    display: none;
}

.description .read_less {
    background: #171E55;
    width: 40px;
    height: 40px;
    margin: -36px auto 0;
    border-radius: 50%;
    text-align: center;
    padding-top: 5px;
    cursor: pointer;
    display: none;
}

.description.active .read_less { 
    display: block;
}


.description .read_less_cross {
    color: #fff;
    background: #171E55;
    width: 40px;
    height: 40px;
    border-radius: inherit;
    text-align: center;
    padding-top: 5px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 20px;
    display: none;
    font-family: sans-serif;
}

.description.active .read_less_cross { 
    display: block;
}

/* 05. Map */
.map {
    position: absolute;
    width: 60%;
    right: 0;
    top: 0;
    height: 100%;
    background: #0B0833;
    background: rgb(7 5 37 / 60%);
    overflow: hidden;
    opacity: 0.5;
    transform: translateX(100%) translateZ(0);
    -webkit-transform: translateX(100%) translateZ(0);
    -moz-transform: translateX(100%) translateZ(0);
    -ms-transform: translateX(100%) translateZ(0);
    -o-transform: translateX(100%) translateZ(0);
    transition: 1.7s ease-in-out all;
    -webkit-transition: 1.7s ease-in-out all;
    -moz-transition: 1.7s ease-in-out all;
    -ms-transition: 1.7s ease-in-out all;
    -o-transition: 1.7s ease-in-out all;

    will-change: transform, opacity;
}
.openDotAnimation .map {
    opacity: 1;
    transform: translateX(0%) translateZ(0);
    -webkit-transform: translateX(0%) translateZ(0);
    -moz-transform: translateX(0%) translateZ(0);
    -ms-transform: translateX(0%) translateZ(0);
    -o-transform: translateX(0%) translateZ(0);
}

/* Map Loader */
.dot_static:nth-child(1) {
    left: 46%;
    top: 53%;
}
.dot_static:nth-child(2) {
    left: 45%;
    top: 60%;
}
.dot_static:nth-child(3) {
    left: 47%;
    top: 68%;
}
.dot_static:nth-child(4) {
    left: 50%;
    top: 62%;
}
.dot_static:nth-child(5) { 
    left: 52%;
    top: 65%;
}
.dot_static:nth-child(6) {
    left: 50%;
    top: 57%;
}
.dot_static:nth-child(7) {
    left: 50%;
    top: 66%;
}
.dot_static:nth-child(8) {
    left: 52%;
    top: 57%;
}
.dot_static:nth-child(9) {
    left: 47%;
    top: 60%;
}
.dot_static:nth-child(10) {
    left: 54%;
    top: 60%;
}
.dot_static:nth-child(11) {
    left: 51%;
    top: 53%;
}
.dot_static:nth-child(12) {
    left: 45%;
    top: 65%;
}
.dot_static:nth-child(13) {
    left: 45%;
    top: 65%;
    display: none;
}
.dot_static:nth-child(14) {
    left: 45%;
    top: 65%;
    display: none;
}
.dot_static:nth-child(15) {
    left: 45%;
    top: 65%;
    display: none;
}
.dot_static:nth-child(16) {
    left: 45%;
    top: 65%;
    display: none;
}
.dot_static:nth-child(17) {
    left: 51%;
    top: 62%;
    display: none;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
}
    50% {
        transform: rotate(179deg);
        -webkit-transform: rotate(179deg);
        -moz-transform: rotate(179deg);
        -ms-transform: rotate(179deg);
        -o-transform: rotate(179deg);
}
100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}

}

/* @keyframes rotation {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
}
100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

} */
.map_loader_wrapper {
    display: none;
    transition: all ease-out 1s;
    -webkit-transition: all ease-out 1s;
    -moz-transition: all ease-out 1s;
    -ms-transition: all ease-out 1s;
    -o-transition: all ease-out 1s;
    transform-origin: 50% 60%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    /*top: 30%;
    */width: 100%;
    height: 75%;
    top: 0;
    z-index: 2;
}

.map_loader {
    animation: rotation infinite 8s;
    -webkit-animation: rotation infinite 8s;
    width: 100%;
    height: 100%;
    transform-origin: 50% 60%;
    margin: auto;
}

.map_loader.complete {
    animation-play-state: paused;
    /* transform: rotate(0deg) !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important; */
}

.map_loader.stop {
    animation: none;
    -webkit-animation: none;
}


.map_loader_wrapper.complete .dot_static {
    width: 5px;
    height: 5px;
    transform: translate3d(-50%, -50%, 0);
    transition: all cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.3s;
    -webkit-transition: all cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.3s;
    -moz-transition: all cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.3s;
    -ms-transition: all cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.3s;
    -o-transition: all cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.3s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
}

.map_loader_wrapper.complete .dot_static:nth-child(17) {
    width: 15px;
    height: 15px;
}

/* .map_loader_wrapper.complete .dot_static:nth-child(1) {
    left: -18%;
    top: -25%;
}
.map_loader_wrapper.complete .dot_static:nth-child(2) {
    left: -55%;
    top: 25%;
}
.map_loader_wrapper.complete .dot_static:nth-child(3) {
    left: -14%;
    top: 57%;
}
.map_loader_wrapper.complete .dot_static:nth-child(4) {
    left: 80%;
    top: 82%;
}
.map_loader_wrapper.complete .dot_static:nth-child(5) {
    left: 135%;
    top: 64%;
}
.map_loader_wrapper.complete .dot_static:nth-child(6) {
    left: 110%;
    top: -20%;
}
.map_loader_wrapper.complete .dot_static:nth-child(7) {
    left: 50%;
    top: 96%;
}
.map_loader_wrapper.complete .dot_static:nth-child(8) {
    left: 152%;
    top: -5%;
}
.map_loader_wrapper.complete .dot_static:nth-child(9) {
    left: -3%;
    top: 10%;
}
.map_loader_wrapper.complete .dot_static:nth-child(10) {
    left: 101%;
    top: 30%;
}
.map_loader_wrapper.complete .dot_static:nth-child(11) {
    left: 51%;
    top: -45%
}
.map_loader_wrapper.complete .dot_static:nth-child(12) {
    left: -5%;
    top: 105%;
} */
.overlay {
    position: absolute;
    width: 60%;
    right: 0;
    top: 0;
    height: 100%;
    background: #070527;
    opacity: 0.7;
    z-index: 2;
    display: none;
}
.main_word {
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    color: #070A25;
    background: #41E0E0;
    padding: 7px 14px;
    position: absolute;
    left: 50%;
    margin: auto;
    transform: translateX(-50%);
    top: 45%;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all ease-in-out 1.5s;
    -webkit-transition: all ease-in-out 1.5s;
    -moz-transition: all ease-in-out 1.5s;
    -ms-transition: all ease-in-out 1.5s;
    -o-transition: all ease-in-out 1.5s;
}
.main_word.active {
    opacity: 1;
}
.elements {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 75%;
    margin: auto;
    width: 100%;
}
.elements .map_word {
    position: absolute;
    font-size: 14px;
    text-transform: capitalize;
    padding: 3px 8px;
    color: #CC87D3;
    /*background: #CC87D3;
    */z-index: 2;
    opacity: 0;
    cursor: pointer;
    transform: translate3d(-50%,50%,0);
    transition: all ease-in-out 0.5s 1s;
    -webkit-transition: all ease-in-out 0.5s 1s;
    -moz-transition: all ease-in-out 0.5s 1s;
    -ms-transition: all ease-in-out 0.5s 1s;
    -o-transition: all ease-in-out 0.5s 1s;
    -webkit-transform: translate3d(-50%,50%,0);
    -moz-transform: translate3d(-50%,50%,0);
    -ms-transform: translate3d(-50%,50%,0);
    -o-transform: translate3d(-50%,50%,0);
}
.line {
  height: 0px !important;
  border-top: 1px solid #B094FF;
  /*margin-left: -217%;
  */z-index: 1;
  opacity: 0;
  transition: opacity ease-in-out 0.5s 0.5s;
  -webkit-transition: opacity ease-in-out 0.5s 0.5s;
  -moz-transition: opacity ease-in-out 0.5s 0.5s;
  -ms-transition: opacity ease-in-out 0.5s 0.5s;
  -o-transition: opacity ease-in-out 0.5s 0.5s;
}

.line.active {
    opacity: 1;
}

.map_word.active {
    opacity: 1;
}

.elements .line .tooltip {
    display: none;
}

/* History */
.history_panel {
    position: absolute;
    width: 19%;
    right: 0;
    top: 0;
    height: 100%;
    background: #171E55;
    z-index: 3;
    opacity: 0.6;
    transform: translateX(100%);
    overflow-y: auto;
    transition: 1s ease-out all;
    -webkit-transition: 1s ease-out all;
    -moz-transition: 1s ease-out all;
    -ms-transition: 1s ease-out all;
    -o-transition: 1s ease-out all;
}

.history_panel.openDotAnimation {
    opacity: 1;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}

.history_panel .close {
    padding: 11px;
    position: absolute;
    right: 8px;
    top: 8px;
    cursor: pointer;
}

.history_panel > .title {
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid #212443;;
}

.history_single {
    padding: 25px 18px 20px;
    position: relative;
}

.history_single .title {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #41E0E0;
    margin-bottom: 5px;
}

.history_single .short_desc {
    font-size: 10px;
    line-height: 15px;
    color: #FFFFFF;
    opacity: 0.5;
}

.history_single::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 95%;
    border-bottom: 1px solid #282C50;
}


/* 06. Brain */
.brain {
    width: 50%;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%) translateZ(0) scale(0.7);
    opacity: 0;
    transition: 1.7s ease-in-out all;
    -webkit-transition: 1.7s ease-in-out all;
    -moz-transition: 1.7s ease-in-out all;
    -ms-transition: 1.7s ease-in-out all;
    -o-transition: 1.7s ease-in-out all;
    -webkit-transform: translateY(-50%) translateZ(0) scale(0.7);
    -moz-transform: translateY(-50%) translateZ(0) scale(0.7);
    -ms-transform: translateY(-50%) translateZ(0) scale(0.7);
    -o-transform: translateY(-50%) translateZ(0) scale(0.7);
    will-change: width, transform;
}
.brain.active {
    transform: translateY(-50%) translateZ(0) scale(1);
    -webkit-transform: translateY(-50%) translateZ(0) scale(1);
    -moz-transform: translateY(-50%) translateZ(0) scale(1);
    -ms-transform: translateY(-50%) translateZ(0) scale(1);
    -o-transform: translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
}
.brain video {
    top: 30px;
    position: relative;
    max-width: 137%;
    height: auto;
    margin-left: -15%;
    will-change: top;
    transition: 1.7s ease-in-out all;
}
.openDotAnimation .brain {
    width: 30%;
    transform: translateY(-50%) translateX(-100%) translateZ(0);
    -webkit-transform: translateY(-50%) translateX(-100%) translateZ(0);
    -moz-transform: translateY(-50%) translateX(-100%) translateZ(0);
    -ms-transform: translateY(-50%) translateX(-100%) translateZ(0);
    -o-transform: translateY(-50%) translateX(-100%) translateZ(0);
}
.openDotAnimation .brain video {
    top: 18px;
}
.dots {
    position: relative;
    top: 0;
    left: 0;
}
.openDotAnimation .dots,
.close .dots {
    transition: ease-in-out 1.7s all;
    -webkit-transition: ease-in-out 1.7s all;
    -moz-transition: ease-in-out 1.7s all;
    -ms-transition: ease-in-out 1.7s all;
    -o-transition: ease-in-out 1.7s all;
}

@keyframes blink {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.4;
    }
}
.dot.animate {
    animation: blink infinite 3s;
    -webkit-animation: blink infinite 3s;
}
.dot, .dot_static {
    width: 5px;
    height: 5px;
    /* mix-blend-mode: screen; */
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    border-radius: 50%;
    opacity: 0.4;
    background: #fff;
    transition: ease-in 2s all;
    box-shadow: 0 0 4px 2px #ffffffeb, 0 0 7px 1px #ffffff40, 0 0 28px 12px #3862ff;
    cursor: pointer;
    -webkit-transition: ease-in 2s all;
    -moz-transition: ease-in 2s all;
    -ms-transition: ease-in 2s all;
    -o-transition: ease-in 2s all;
    will-change: transform, opacity;
}
.dot_static {
    width: 4px;
    height: 4px;
    opacity: 1;
}
.openDotAnimation .dot {
    transform: scale(0.5) translateZ(0);
    -webkit-transform: scale(0.5) translateZ(0);
    -moz-transform: scale(0.5) translateZ(0);
    -ms-transform: scale(0.5) translateZ(0);
    -o-transform: scale(0.5) translateZ(0);
}
.dot .text {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 400;
    transform: translate3d(-50%, 10px, 0);
    white-space: nowrap;
    position: absolute;
    left: 5px;
    top: 0;
    z-index: 2;
    opacity: 0;
    transition: ease-in 2.8s opacity, ease-in 2.3s transform, ease-in 0.3s background, ease-in 2.3s padding;
    -webkit-transition: ease-in 2.8s opacity, ease-in 2.3s transform, ease-in 0.3s background, ease-in 2.3s padding;
    -moz-transition: ease-in 2.8s opacity, ease-in 2.3s transform, ease-in 0.3s background, ease-in 2.3s padding;
    -ms-transition: ease-in 2.8s opacity, ease-in 2.3s transform, ease-in 0.3s background, ease-in 2.3s padding;
    -o-transition: ease-in 2.8s opacity, ease-in 2.3s transform, ease-in 0.3s background, ease-in 2.3s padding;
    -webkit-transform: translate3d(-50%, 10px, 0);
    -moz-transform: translate3d(-50%, 10px, 0);
    -ms-transform: translate3d(-50%, 10px, 0);
    -o-transform: translate3d(-50%, 10px, 0);
}
.openDotAnimation .dot .text {
    font-size: 20px;
}
.dot .text:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 120%;
    top: -105%;
}

.dot:hover,
.dot.highlight {
    box-shadow: 0 0 1px 4px #41e0e0, 0 0px 20px 9px #38ffff7a;
    opacity: 1;
    background: #41E0E0;
    transition: ease-in 0.2s all;
    -webkit-transition: ease-in 0.2s all;
    -moz-transition: ease-in 0.2s all;
    -ms-transition: ease-in 0.2s all;
    -o-transition: ease-in 0.2s all;
    animation: none;
    -webkit-animation: none;
}
.dot.active {
    opacity: 1;
    animation: none;
    -webkit-animation: none;
}
.dot.active .text,
.dot:hover .text,
.dot.highlight .text {
    opacity: 1;
    transform: translate3d(-50%, 20px, 0);
    -webkit-transform: translate3d(-50%, 20px, 0);
    -moz-transform: translate3d(-50%, 20px, 0);
    -ms-transform: translate3d(-50%, 20px, 0);
    -o-transform: translate3d(-50%, 20px, 0);
}
.dot:hover .text,
.dot.highlight .text {
    transition: ease-in 0.2s all;
    color: #070A25;
    background: #41E0E0;
    padding: 3px 8px 2px;
    font-weight: 500;
}
.dot {
    left: 140%;
    top: 0;
}
.dot:nth-child(1) {
    left: 3%;
    top: 0%;
}
.dot:nth-child(2) {
    left: 5%;
    margin-top: -3%;
}
.dot:nth-child(3) {
    left: 9.5%;
    margin-top: -8%;
}
.dot:nth-child(4) {
    left: 16.5%;
    margin-top: -13.5%;
}
.dot:nth-child(5) {
        left: 28%;
    margin-top: -19.5%;
}
.dot:nth-child(6) {
    left: 28%;
    margin-top: -19.5%;
}
.dot:nth-child(7) {
    left: 30.3%;
    margin-top: -20.6%;
}
.dot:nth-child(8) {
    left: 30.3%;
    margin-top: -20.6%;
}
.dot:nth-child(9) {
    left: 38%;
    margin-top: -18%;
}
.dot:nth-child(10) {
    left: 45%;
    margin-top: -23%;
}
.dot:nth-child(11) {
    left: 49.5%;
    margin-top: -17.8%;
}
.dot:nth-child(12) {
    left: 57%;
    margin-top: -21.8%;
}
.dot:nth-child(13) {
    left: 6%;
    margin-top: 2%;
}
.dot:nth-child(14) {
    left: 6.5%;
    margin-top: 7%;
}
.dot:nth-child(15) {
    left: 1%;
    margin-top: 11.5%;
}
.dot:nth-child(16) {
    left: 4%;
    margin-top: 16%;
}
.dot:nth-child(17) {
    left: 6.8%;
    margin-top: 20%;
}
.dot:nth-child(18) {
    left: 11.5%;
    margin-top: 21.5%;
}
.dot:nth-child(19) {
    left: 15.5%;
    margin-top: 22%;
}
.dot:nth-child(20) {
    left: 17.2%;
    margin-top: 25.5%;
}
.dot:nth-child(21) {
    left: 19%;
    margin-top: 29%;
}
.dot:nth-child(22) {
    left: 23.5%;
    margin-top: 32.5%;
}
.dot:nth-child(23) {
    left: 29%;
    margin-top: 35%;
}
.dot:nth-child(24) {
    left: 35.3%;
    margin-top: 34.5%;
}
.dot:nth-child(25) {
    left: 39.2%;
    margin-top: 34.5%;
}
.dot:nth-child(26) {
    left: 68%;
    margin-top: -20%;
}
.dot:nth-child(27) {
    left: 73.2%;
    margin-top: -15.5%;
}
.dot:nth-child(28) {
    left: 80%;
    margin-top: -10%;
}
.dot:nth-child(29) {
    left: 86.2%;
    margin-top: -7%;
}
.dot:nth-child(30) {
    left: 87.5%;
    margin-top: -2%;
}
.dot:nth-child(31) {
	left: 92%;
    margin-top: 4.2%;
}
.dot:nth-child(32) {
	left: 94%;
    margin-top: 8%;
}
.dot:nth-child(33) {
	left: 96%;
    margin-top: 17%;
}
.dot:nth-child(34) {
    left: 92.8%;
    margin-top: 28.5%;
}
.dot:nth-child(35) {
    left: 82.5%;
    margin-top: 37.7%;
}
.dot:nth-child(36) {
    left: 72%;
    margin-top: 42%;
}
.dot:nth-child(37) {
	left: 64.5%;
    margin-top: 44%;
}
.dot:nth-child(38) {
	left: 58%;
    margin-top: 44%;;
}
.dot:nth-child(39) {
	left: 43.8%;
    margin-top: 39%;
}
.dot:nth-child(40) {
	left: 46.6%;
    margin-top: 14%;
}
.dot:nth-child(41) {
    left: 39%;
    margin-top: 9%;
}
.dot:nth-child(42) {
	left: 43.5%;
    margin-top: 21%;
}
.dot:nth-child(43) {
	left: 52.5%;
    margin-top: 10%;
}
.dot:nth-child(44) {
	left: 35%;
    margin-top: 18.5%;
}
.dot:nth-child(45) {
	left: 49.5%;
    margin-top: -1.5%;
}
.dot:nth-child(46) {
    left: 37%;
    margin-top: 3.5%;
}
.dot:nth-child(47) {
	left: 56%;
    margin-top: 5%;
}
.dot:nth-child(48) {
	left: 71.5%;
    margin-top: 4%;
}
.dot:nth-child(49) {
	left: 73.5%;
    margin-top: 11%;
}
.dot:nth-child(50) {
	left: 61%;
    margin-top: 17.5%;
}
.dot:nth-child(51) {
	left: 58%;
    margin-top: 25%;
}
.dot:nth-child(52) {
    left: 26%;
    margin-top: 5%;
}
.dot:nth-child(53) {
    left: 40.5%;
    margin-top: -1.5%;
}
.dot:nth-child(54) {
    left: 51%;
    margin-top: -4.5%;
}
.dot:nth-child(55) {
	left: 46%;
    margin-top: 29%;
}
.dot:nth-child(56) {
    left: 66%;
    margin-top: -4%;
}
.dot:nth-child(57) {
	left: 61.5%;
    margin-top: -8%;
}
.dot:nth-child(58) {
	left: 22.2%;
    margin-top: 1%;
}
.dot:nth-child(59) {
    left: 62%;
    margin-top: 29%;
}
.dot:nth-child(60) {
	left: 43.5%;
    margin-top: 15.5%;
}
.dot:nth-child(61) {
	left: 28%;
    margin-top: 12%;
}
.dot:nth-child(62) {
	left: 75%;
    margin-top: 21%;
}
.dot:nth-child(63) {
    left: 70%;
    margin-top: 23.5%;
}
.dot:nth-child(64) {
    left: 67.5%;
    margin-top: 26%;
}
.dot:nth-child(65) {
	left: 83%;
    margin-top: 26%;
}
.dot:nth-child(66) {
	left: 57%;
    margin-top: 35%;
}
.dot:nth-child(67) {
    left: 73.5%;
    margin-top: 30%;
}
.dot:nth-child(68) {
	left: 66%;
    margin-top: 36%;
}
.dot:nth-child(69) {
	left: 85%;
    margin-top: 6%;
}
.dot:nth-child(70) {
	left: 44.5%;
    margin-top: 7%;
}
.dot:nth-child(71) {
	left: 28.5%;
    margin-top: -6.5%;
}
.dot:nth-child(72) {
	left: 45%;
    margin-top: -10%;
}
.dot:nth-child(73) {
    left: 53%;
    margin-top: 20%;
}
.dot:nth-child(74) {
    left: 83%;
    margin-top: 13%;
}
.dot:nth-child(75) {
	left: 10.5%;
    margin-top: 5.5%;
}
.dot:nth-child(76) {
    left: 17%;
    margin-top: 8%;
}
.dot:nth-child(77) {
	left: 38.5%;
    margin-top: -10%;
}
.dot:nth-child(78) {
	left: 30%;
    margin-top: 24.5%;
}
.dot:nth-child(79) {
    left: 56%;
    margin-top: 14.5%;
}
.dot:nth-child(80) {
	left: 66%;
    margin-top: 14%;
}
.dot:nth-child(81) {
    left: 78%;
    margin-top: 32%;
}
.dot:nth-child(82) {
	left: 73.5%;
    margin-top: -5%;
}
.dot:nth-child(83) {
	left: 19%;
    margin-top: 15%;
}
.dot:nth-child(84) {
    left: 78%;
    margin-top: 3%;
}
.dot:nth-child(85) {
    left: 49%;
    margin-top: -12%;
}
.dot:nth-child(86) {
    left: 16%;
    margin-top: 0%;
}
.dot:nth-child(87) {
    left: 40%;
    margin-top: 24%;
}
.dot:nth-child(88) {
    left: 86%;
    margin-top: 20%;
}
.dot:nth-child(89) {
    left: 61%;
    margin-top: 7%;
}
.dot:nth-child(90) {
    left: 68%;
    margin-top: -10.5%;;
}
.dot:nth-child(91) {
    left: 20%;
    margin-top: -6%;
}
.dot:nth-child(92) {
	left: 34%;
    margin-top: 12.5%;
}
.dot:nth-child(93) {
	left: 58%;
    margin-top: -1%;
}
.dot:nth-child(94) {
    left: 32%;
    margin-top: 0%;
}
.dot:nth-child(95) {
	left: 27%;
    margin-top: 19%;
}
.dot:nth-child(96) {
    left: 64%;
    margin-top: 22%;
}
.dot:nth-child(97) {
	left: 50%;
    margin-top: 35%;
}
.dot:nth-child(98) {
    left: 52%;
    margin-top: 16.5%;
}
.dot:nth-child(99) {
	left: 50%;
    margin-top: 24.5%;
}
.dot:nth-child(100) {
	left: 31%;
    margin-top: -13.5%;
}
.wt-intro {
    background-color: #242A5E;
    padding: 25px 45px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
    max-width: 400px;  
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 16px;
}
.walkthrough {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 999;
    transition: ease-out 0.5s all;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    -webkit-transition: ease-out 0.5s all;
    -moz-transition: ease-out 0.5s all;
    -ms-transition: ease-out 0.5s all;
    -o-transition: ease-out 0.5s all;
}
.walkthrough.active {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
.wt-intro .row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.wt-intro .row .col.text {  
    font-weight: 800;
}
.wt-intro .row .col.option1 {
    margin-left: auto;
    margin-right: 10px;
}
.wt-intro .row button {
    background: transparent;
    outline: 0;
    border: 0;
    color: #fff;
    transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    -moz-transition: 0.3s ease-in-out all;
    -ms-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    cursor: pointer;
    padding: 7px 10px;
}
.wt-intro .row button:hover {
    background: #3c469d;
}
.wt-steps {
    background: #000;
    height: 100vh;
    width: 100vw;
    text-align: center;
    display: none;
}
.wt-steps img {
    object-fit: contain;
    display: none;
    margin: auto;
}
.wt-steps img:first-child {
    display: block;
}
.wt-nav {
    position: absolute;
    bottom: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    display: none;
}
.wt-nav button {
    background: transparent;
    outline: 0;
    border: 0;
    cursor: pointer;
}
.wt-nav button img {    
    vertical-align: middle;
}
.wt-nav .in-nav {
    margin: auto;
    background: #2A2A4E;
    padding: 15px 45px 10px;
}
.wt-n-back {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    margin-right: 25px;
    opacity: 0.2;
}
.wt-n-back img {
    margin-right: 6px;
}
.wt-n-back.active {
    opacity: 1;
}
.wt-n-next {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #FFC353;
    margin-left: 25px;
    opacity: 0.2;
}
.wt-n-next img {
    margin-left: 6px;
}
.wt-n-next.active {
    opacity: 1;
}
.wt-exit {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;    
    color: #FFFFFF;    
}
.wt-exit img {
    vertical-align: middle;
    margin-right: 3px;
}