/* ------------------  */
/*  Table of Contents  */
/* ------------------  */
/*
    01. Base
    03. Brain
*/

/* 01. Base */
body {
    position: relative;
    background: linear-gradient(180deg, #232B51 0%, #0C0938 100%);
    -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;
}

.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: 20px;
    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: 9PX;
    width: 372px;
    text-align: center;
    font-weight: 500;
    color: #ffffff;
    padding: 10px;
    font-size: 24px;
    line-height: 2px;
    text-transform: uppercase;
}
.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.open {
    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.open: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: 44%;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    margin-top: 30px;
    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;
}
body.open .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;
    white-space: nowrap;
    /*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.open {
    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(.9);
    -moz-transform: translateY(-50%) translateZ(0) scale(.9);
    -ms-transform: translateY(-50%) translateZ(0) scale(.9);
    -o-transform: translateY(-50%) translateZ(0) scale(.9);
    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;
}
.brain video:focus{ pointer-events: none;}
body.open .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);
}
body.open .brain video {
    top: 18px;
}
.dots {
    position: relative;
    top: 0;
    left: 0;
}
body.open .dots,
body.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;
}
body.open .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);
}
body.open .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: #ffffff;
    padding: 25px 45px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 16px;
    color: #000000;
    max-width: 400px;  
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 16px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(255,255,255, .4);
}
.walkthrough {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  background: rgba(0,0,0,.5);

    /* 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; */
   
}
 
.rect1,
.cir1,
.cir2,
.cir3,
.pill.pill1,
.pill.pill2,
.pill.pill3 {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);

    /* display: none !important; */
}
.rect1,
.cir1,
.cir2,
.cir3,
.pill.pill1,
.pill.pill2,
.pill.pill3{ display: none;}
.wt-intro .row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.wt-intro .row .col.text {  
    font-weight: 800;
    display: inline-flex;
    align-items: center;
}
.wt-intro .row .col.option1 {
    margin-left: auto;
    margin-right: 10px;
}
.wt-intro .row button {
    background: transparent;
    outline: 0;
    border: 0;
    color: #051A8B;
    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-stepsMain { position: relative; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5);}
.wt-steps {
    background: rgba(0,0,0,0.5);
    height: 100vh;
    width: 100vw;
    text-align: center;
    display: none;
    
}
.wt-steps img {
    object-fit: contain;
    display: none;
    margin: auto;

}
.wt-steps-abs {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.wt-steps img:first-child {
    display: block;
}
.wt-highlights {
    /* z-index: 999; */
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wt-highlights .rect1 {
    width: 175px;
    height: 60px;
    border: 4px solid #FFC353;
    position: absolute;
    left: 40px;
    top: 8px;
}
.wt-highlights .cir1 {
    border: 4px solid #FFC353;
    position: absolute;
    left: 33%;
    top: 20%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.wt-highlights .cir2 {
    border: 4px solid #FFC353;
    position: absolute;
    left: 28%;
    top: 24%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.wt-highlights .cir3 {
    border: 4px solid #FFC353;
    position: absolute;
    left: 33%;
    top: 34%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.pill {
    background: #fff;
    padding: 18px 25px;
    position: absolute;
    border-radius: 50px;
    font-size: 13px;
    max-width: 265px;
}
.pill1 {
    top: 11%;
    left: 3%;
}
.pill1:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(-50%, -100%, 0);
}
.pill2 {
    top: 8%;
    left: 23%;
    max-width: 215px;
}
.pill2:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
    position: absolute;
    bottom: 0;
    right: 20%;
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
}
.pill3 {
    top: 25%;
    left: 9%;
}
.pill3:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid white;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate3d(90%, -50%, 0);
    -webkit-transform: translate3d(90%, -50%, 0);
    -moz-transform: translate3d(90%, -50%, 0);
    -ms-transform: translate3d(90%, -50%, 0);
    -o-transform: translate3d(90%, -50%, 0);
}
.wt-highlights {
    display: none;
}
.wt-nav {
    position: absolute;
    bottom: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    display: none;
    z-index: 3;
}
.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: 600;
font-size: 14px;
line-height: 21px;    
    color: #FFC353; 
    position: absolute;
    right: 54px;
    top: 47px;
    z-index: 2;   
    background: transparent;
    border: 0;
    cursor: pointer;
}
.wt-exit img {
    vertical-align: middle;
    margin-right: 3px;
}
.main-wrapper{ display: block; }
.mobileComingSoon { display: none;}
.brainHead{ position: fixed; width: 280px; text-align: right; color: #ffffff; right: 30px; top: 80px; animation: fadein 5s; background: rgba(0,0,0,.2); padding: 5px 24px 5px 18px; border-radius: 4px; }
.brainHead.active{ display: none;}
.brainHead h2{ font-size: 16px; margin-bottom: 0; font-weight: 500; line-height: 23px; }
.brainHead p { font-size: 14px;  color: #eeeeee; }
@keyframes fadein {
    0% { opacity: 0; transition-delay: 10s; }
    10% { opacity: 0; transition-delay: 5s; }
    100% { opacity: 1; }

  }
/* .open .brainHead { top: -30px;} */

.sliderBox{  position: fixed; left: 0; top: 0; z-index: -22;  text-align: center; width: 100%; height: 100%; background: rgba(0,0,0,.5);}
.sliderBox.active{ display: flex; align-items: center; z-index: 99999; }
    .sliderWock{ position: relative; max-width: 1140px;
        overflow: hidden; height: 640px;
        margin: 0 auto;}
    .slick-controls{ display: inline-block; background: #2A2A4E;
        padding: 15px 45px 10px;}
        .slick-arrow{ font-family: 'Poppins', sans-serif; background: transparent;
            font-weight: 500; border: 0; vertical-align: middle; font-size: 20px; color: #FFC353; margin: 0 10px; cursor: pointer; }
            .slick-arrow img{ vertical-align: middle; margin: 0 10px;}
            .slick-arrow.back{ color: #ffffff; } 
            .slick-arrow.slick-disabled{ opacity: .4; pointer-events: none;}


@media (max-width: 1024px) {
    /* .main-wrapper{ display: none; } */
    .mobileComingSoon { display: block; text-align: center; background: url(../img/mobile/bg.png);  min-height: 100vh; display: none;
        background-repeat: no-repeat; padding: 0 20px;
        background-size: cover;}
    .mobileComingSoon h1 {    margin-bottom: 0;
        padding-top: 80px;
        margin-top: 0; }
        .mobileComingSoon h1 img{ max-width: 170px; margin-bottom: 10px;}
    .biasesPage {
        background: transparent;
        padding: 20px 0 20px 0;
        margin-top: 0px;
    }
    .imgHead{}
    .imgHead span{ display: block; font-weight: 500;  font-size: 16px; color: #ffffff; line-height: 24px; }
    .imgHead p{ font-weight: 400; color: #ffffff; font-size: 14px; line-height: 21px; text-align: center; letter-spacing: 0.1em; margin-top: 0; }
    .imgTop h2{ margin-top: 0; }
    .imgTop { margin-top: -30px; color: #ffffff;  }
    .imgTop span{  }
    .heuristicMidContent {
        margin: 30px 0;
    }
    .biasesPage h3 {
        font-weight: 700;
        font-size: 12px;
        color: #ABA9A9;
        text-align: center;
        margin-bottom: 20px;

    }
    .biasesPage .heuristicMidContent .heuristicPedia {
        align-items: center;
        justify-content: center;
        display: block;
        flex-wrap: wrap;
        list-style-type: none;
        padding-left: 0;
    }
    .biasesPage .heuristicMidContent .heuristicPedia li {
        width: 100%;
        max-width: 317px;
        margin: 10px auto;
        box-shadow: 0px 0px 38px rgb(0 0 0 / 9%);
        border-radius: 20px;
        background-color: #FFFFFF;
        padding: 20px 0 20px 0;
    }

    .heuristicMidContent .heuristicPedia li .heuristicBox {
        color: #394C5E;
        text-align: center;
        height: 100%;
        text-decoration: none;
       
        margin: 0 auto 20px;
        position: relative;
       
       
    }

    .heuristicMidContent .heuristicPedia li .heuristicBox .heuristicHead {
        padding: 0 15px;
    }
    .heuristicMidContent .heuristicPedia li .heuristicBox h2 {
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 0;
    }
    .biasesPage .heuristicMidContent .heuristicPedia li .heuristicBox p {
        max-width: 100%;
        margin: 10px auto;
        font-size: 14px;
        line-height: 18px;
    }
    .heuristicMidContent .heuristicPedia li .heuristicBox figure {
        margin: 20px 0;
    }
    .heuristicMidContent .heuristicPedia li .heuristicBox figure img{ width: 100%; max-width: none;}
    .heuristicMidContent .heuristicPedia li .heuristicBox .content {
        max-width: 305px;
        padding: 0 10px;
        min-height: 152px;
        margin: 0 auto 10px;
        min-height: 50px;
        font-size: 12px;
        line-height: 18px;
    }
    .heuristicMidContent .heuristicPedia li .heuristicBox .expBtn {
        width: 100%;
    }
 
    .heuristicMidContent .heuristicPedia li .heuristicBox small {
        text-transform: uppercase;
        color: #f16421;
        font-weight: 600;
        font-size: 14px;
      
    }
}   
.hacksList { display: none;  }
@media (max-width: 768px) {
    header { z-index: 3;}
    .side-menu .title span{ display: none; }
    .brain { display: none; }
    .map { display: none;}
    .logo{ font-size: 22px; }
    .hacksList { margin-top: 80px; color: #81D1FF; z-index: 1; position: absolute; top: 0; transition: all .5s; padding: 0 40px; display: none; width: 100%; max-height: 80%;  height: 0; overflow: hidden; opacity: 0; }
    .hacksList.active { display: block; overflow: auto; opacity: 1; height: 80%; transition: all .5s;}
    .listHacksBox { padding: 0 40px;}
    .line { display: none;}
    .list { width: calc(100% - 40px);}
    .repetListHacks{ padding-bottom: 40px; position: relative; }
    .repetListHacks:last-child{ padding-bottom: 0;}
    .repetListHacks:last-child::before{ height: calc(100% - 31px);}
    .repetListHacks::before{ content: ''; position: absolute; left: -12px; top: 8px; height: 100%; width: 1px; background: #FEE3B8; }
    .repetListHacks ul { padding-left: 45px;}
    .repetListHacks li{  list-style-type: none; padding: 21px 0; font-weight: 400; position: relative; color: #F7A7FF;}
    .repetListHacks li i{ position: absolute; background: #FEE3B8; width: 8px; height: 8px; border-radius: 50%; display: inline-block; left: -30px; filter: blur(1.5px); top: calc(50% - 5px); }
    .repetListHacks li::before { content: ''; position: absolute; top: 50%; left: -56px; width: 30px; height: 1px; background: url(../img/line_sm.svg);}
    .repetListHacks li::after { content: ''; position: absolute; top: 50%; left: -44px; width: 36px; height: 36px; border-radius: 50%; background: #3862ff; mix-blend-mode: screen; transform: translateY(-50%); box-shadow: 0 0 10px #3862ff; filter: blur(12px); opacity: 0.4; }
    .repetListHacks span { position: relative; display: block; padding-left: 18px;}
    .repetListHacks span b { position: absolute; top: 50%; left: -28px; width: 36px; height: 36px; border-radius: 50%; background: #3862ff; mix-blend-mode: screen; transform: translateY(-50%); box-shadow: 0 0 10px #3862ff; filter: blur(12px); opacity: 0.4;}
    .repetListHacks span:after{ content: ''; position: absolute; background: #FEE3B8; width: 8px; height: 8px; border-radius: 50%; display: inline-block; left: -15px; filter: blur(1.5px);
        top: calc(50% - 5px);}
    .closeHeuristic li{ color: #F7A7FF; }
   
    .titleHacksBox{ display: flex;
        text-align: center;
        margin-bottom: 30px;
        background: rgba(235, 255,255, 0.20);
        border-radius: 3px;
        padding: 10px 18px;
        justify-content: space-between;
        align-items: center; }
    .titleHacksBox .titleHacks{ display: block; color: #ffffff; font-weight: 500; font-size: 16px; line-height: 20px; text-transform: uppercase; text-align: left; width: calc(100% - 81px); }
    .titleHacksBox a{ color: #8FA1FF; font-size: 12px; text-transform: uppercase; font-weight: 600; text-decoration: none;}
    .description { width: 100%; z-index: 2; bottom: -30px;}
    .description a.download { display: none;}
    .description.active .main { width: 100%; float: none; display: inline-block;}
 
    .description .image{ width: 100%; float: none;   margin: 30px auto; display: inline-block;  position: relative; }
  
    .description .inner_text { position: relative; width: 100%; float: none; display: inline-block; margin-top: 20px; }
    .description.open, .description { position: fixed; transition: all .5s; bottom: -100%;}
    .description.open.active{ height: auto; bottom: 0; transition: all .5s;}
    .history_panel{ width: 62%;}
    .video_bg { width: 450vw;}

    .description p {   display: inline-block; z-index: 2; position: relative; }
    .list.open { height: 89%;}


}
@media (max-width: 540px) { 
    .logo{     font-size: 14px; width: 225px; top: 18px; }
    .side-menu.reset { right: 14%;}
    .description .inner_text { position: relative !important; top: auto; left: auto;}
    .hacksList  { padding: 0 12px;}
}

