/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');

body {
    margin: 0px;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 3000px;
    background: rgb(23,9,43);
    background: -moz-linear-gradient(24deg, rgba(23,9,43,1) 0%, rgba(23,9,43,1) 100%);
    background: -webkit-linear-gradient(24deg, rgba(23,9,43,1) 0%, rgba(23,9,43,1) 100%);
    background: linear-gradient(24deg, rgba(23,9,43,1) 0%, rgba(23,9,43,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#17092b",endColorstr="#17092b",GradientType=1);
}

.v3d-container {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0);
    font-family: 'Montserrat', sans-serif;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #17092b #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 8px;
 
  }

  *::-webkit-scrollbar-track {
    background: #17092b;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #17092b;
    border-radius: 10px;
    border: 2px solid #17092b;
  }

p {
    display: block;
    margin-block-start: 0.2em;
    margin-block-end: 0.2em;
 
}

.brain-info {
    opacity: 0;
    position: absolute;
    left: 130px;
   top: 160px;
    padding: 12px 18px;
    background: rgba(255,255,255,0.025);
    border-left: 3px solid #39C0C4;
   backdrop-filter: blur( 14.5px );
 -webkit-backdrop-filter: blur( 14.5px );
    display: flex;
    flex-direction: column;
    gap: 12px;
   transition: 0.4s ease;
 }
 
 .brain-info:hover {
     background: rgba(255,255,255,0.05);
     border-left: 3px solid #06CCFE;
 }
 
 .brain-info i {
    font-size: 25px;
    color: white;
    margin-bottom: 10px;
 }
 
 .brain-info-title {
    color: white;
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
 }
 
 .brain-info-description {
      color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.4px;
   line-height: 1.5;
   max-width: 310px
 }
 
 .brain-info:nth-child(2){
    top: 160px;
 }
 
 .brain-info:nth-child(3){
    top: 160px;
 }

 .active-section-note {
     opacity: 1;
 }

 .brain-info img {
     width: 30px;
     height: 30px;
 }

 .hidden-elem {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
 }

 .Preloader {
   width: 100vw;
   height: 100vh;
   position: fixed;
   left: 0;
   top: 0;
   display: grid;
   place-items: center;
   background: #17092B;
   z-index: 1000;
   transition: all 0.55s ease;
 }

 .Preloader img {
   width: 130px;
   height: 130px;
 }

 @media (max-width: 500px) {
  
    .brain-info {
        top: 40px;
      left: 20px;
    }

    .brain-info:nth-child(2){
        top: 40px;
     }
     
     .brain-info:nth-child(3){
        top: 40px;
     }

 }