@font-face {
    font-family: 'RM Neue Trial';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/VCTRMonov0.12-Regular.woff') format('woff');
  }

  @font-face {
    font-family: 'VCTRMono';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/VCTRMonov0.12-Regular.woff') format('woff');
  }
  
  body{
      background-color: #F8F8F8;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      Font family: 'Helvetica Neue', sans-serif;
      color: #333;
      cursor: none;
  }

  .parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    padding: 20px;
    }
    
    .div1 { grid-area: 1 / 1 / 2 / 3; }
    .div2 { grid-area: 1 / 3 / 3 / 5; }
    .div3 { grid-area: 1 / 1 / 5 / 3; }
    .div4 { grid-area: 3 / 3 / 2 / 4; padding-top: 60px;}
    .div5 { grid-area: 4 / 4 / 3 / 5; }
    .div6 { grid-area: 1 / 4 / 2 / 5; }
    .div7 { grid-area: 1 / 1 / 5 / 5; }

   
    .div3{
        margin-top: 110px;
        z-index: -1;
    }

    .div7{
        z-index: -1;
    }

    .mono{
        font-family: 'VCTRMono', serif;
    }

    svg {
        overflow: visible;
    } 
       svg circle {
          fill: rgb(51, 51, 51,.6);
        }
        
        svg path {
          stroke-dasharray: 1 10;
          stroke-width: 1px;
        }

    a{color: #333;}

    a::before{
        transform-origin: 100% 50%;
        transform: scale3d(0, 1, 1);
        transition: transform .4s cubic-bezier(.215, .61, .355, 1);
        content: ' ';
        color: #112211;
        position: absolute;
        width: 100%;
        height: 1px;
        background: #333;
        top: 110%;
        left: 0;
        pointer-events: none;
    }

    a:hover::before{
        transform-origin: 0% 50%;
        transform: scale3d(1, 1, 1);
    }

    a:hover{
        outline: none;
        cursor: none;
    }

    a{
        cursor: pointer;
        position: relative;
        white-space: nowrap;
        text-decoration: none;
    }

    .oh{
        overflow: hidden !important;
    }

    ul{
        list-style: none;
        padding: 0;
    }

    ul li{
        font-size: 14px;
        line-height: 24px;
    }

    h1, h2{
        font-size: 4.5vw;
        font-weight: 400;
        text-align: left;
        align-items: baseline;
        margin: 0;
        letter-spacing: -1.2pt;
        line-height: 90.86px;
    }

    .themer{
        background: #333;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        -webkit-appearance: none;
        box-shadow: none;
        border: none;
        float: right;
    }

    .themer:hover{
        transform: rotate(-180deg);
        cursor: none;
    }

    ::selection{
        background-color: #333;
        color: #F8F8F8;
    }

    .dark-mode {
        background: #333;
        color: #F8F8F8;
    }

    .dark-mode ::selection{
        background-color: #F8F8F8;
        color: #333;
    }

    .dark-mode h1, .dark-mode h2{
        mix-blend-mode: normal !important;
    }

    .dark-mode a{
        color: #F8F8F8
    }

    .dark-mode a::before{
            color: #F8F8F8;
            position: absolute;
            background: #F8F8F8;
    }

    .dark-mode .themer{
        background-color: #F8F8F8;
    }

    .dark-mode svg circle{
        fill: #F8F8F8;
    }

    .lg-reveal--rev {
        display: block;
        opacity: 1;
        transform: translate3d(0px, 150%, 0px);;
        transition: transform 0s cubic-bezier(.215, .61, .355, 1);
        overflow: hidden;
    }
      
    .lg-reveal--rev.is-in {
        opacity: 1;
        transition-duration: .5s;
        transform: translate3d(0px, 0px, 0px);

    }

    .lg-preloader--preloader {
        opacity: 1 !important;
        transition: top .87s cubic-bezier(.215, .61, .355, 1), opacity .1s cubic-bezier(.215, .61, .355, 1);
        background: #F8F8F8;
        height: 100vh;
        transition-delay: .1s;
}
      
        .lg-preloader--preloader.is-hidden {
          top: -100vh;
          opacity: 1 !important;
          
        }

        .lg-cursor{
            mix-blend-mode: difference;
        }

        .lg-cursor-pointer:before {
            margin: -10px 0 0 -10px;
            width: 20px;
            height: 20px;
            border-radius: 100%;
            background: #F8F8F8;
            z-index: 1001;
            transition: all .4s cubic-bezier(.215, .61, .355, 1);
            color: #333;
          }

          .lg-cursor--hover .lg-cursor-pointer:before {
            mix-blend-mode: exclusion;
            z-index: 1001;
            transform: scale(2);
            content: '';
            text-align: center;
          }
          

          @media only screen and (max-width: 800px) {
            .parent {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: repeat(7, 1fr);
            grid-column-gap: 0px;
            grid-row-gap: 0px;
            }
            .div1 { grid-area: 1 / 1 / 2 / 2; }
            .div2 { grid-area: 2 / 1 / 3 / 2; }
            .div3 { grid-area: 3 / 1 / 4 / 2; }
            .div4 { grid-area: 4 / 1 / 5 / 2; }
            .div5 { grid-area: 5 / 1 / 6 / 2; display: none;}
            .div6 { grid-area: 6 / 1 / 7 / 2; display: none;}
            .div7 { grid-area: 7 / 1 / 8 / 2; }
            
            h1, h2{
            font-size: 54px;
            font-weight: 400;
            text-align: left;
            align-items: baseline;}

            .themer{display: none;}
            
          }
