@font-face {
    font-family: BadScript;
    src: url(BadScript-Regular.ttf);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    cursor: url('pointer.png') 2 2, pointer;
}

body:active{
    cursor: url('pointer2.png') 2 2, pointer;
}

.chair{
    height:60%;
    position:absolute;
    top:70%;
    left:70%;
    transform:translate(-70%,70%);
}

.s2{
    background-image: url("bg.jpg"); 
    background-size:cover; 
}

.title{
    position: relative;
    margin:0;
    padding:0;
    width:100%;
    text-align: center;
    text-transform:uppercase;
    filter:blur(0.5px);
    font-weight:100;
    text-shadow:0 0 10px rgb(0, 0, 0),
                0 0 20px rgb(0, 0, 0),
                0 0 30px rgb(0, 0, 0),
                0 0 40px rgb(0, 0, 0),
                0 0 80px rgb(0, 0, 0),
                0 0 160px rgb(0, 0, 0);
                font-size:64px;
    position:absolute;
    margin-top: 20px;
    
    top:20%;
    left:50%;
    transform:translate(-50%,-20%);
    background:linear-gradient(to left, #000000, #353636);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.s3{
    background: linear-gradient(to Left top, #cbcbcb,white);
}

.s2 h1{
    font-size:48px;
    background: linear-gradient(to Left, #303030, #414141);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#wss{
    opacity:0;
    -webkit-transition:opacity 1.0s linear 0s;
    transition:opacity 1.0s linear 0s;
}

.circle{
    position:fixed;
    width:100%;
    height:100%;
    transition:0.5s;
    z-index:1000 !important;
}

.circle:hover{
    z-index:100;
}

.circle:nth-child(1){
    background: url(getwork.jpeg);
    background-attachment: fixed;
    clip-path: circle(100px at 100% 100%);
}

.circle:nth-child(1):hover{
    clip-path:circle(1200px at 100% 100%);
}

header{
    position: absolute;
    z-index:10;
    width:100%;
}

.navbar{
    padding:20px 0;
}

.navbar-brand{
    font-weight:800;
    text-transform: uppercase;
    font-size:2em;
    columns: #262622;
}

.nav-item{
    font-weight: 800;
    text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item.active .nav-link{
    background: #262622;
    color:#fff;

}

.navbar-light .navbar-nav .nav-item.active .nav-link{
    columns: #262626;
    padding:15px 25px;
}

.sci{
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    width:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    padding:20px;
    background:#fff;
}

.sci li{
    list-style:none;
}

.sci li a{
    display:inline-block;
    transform:scale(0.5);
}

.loader{
    height: 100%;
    background: #000;
    position: absolute;
    top:0;
    left:0;
    
}

.preloader{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#fff;
    pointer-events: none;
    z-index: 1000;
    animation:fadeout 0.5s linear forwards;
    animation-delay:8.5s;
}

@keyframes fadeout
{
    0%
    {
        opacity:1;
    }
    100%
    {
        opacity:0;
    }
}

.count{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:18vw;
    color:#fff;
    font-weight: 800;
    mix-blend-mode: difference;
    text-align:right;
}

.down{
    position:absolute;
    top:53%;
    left:50%;
    transform:translate(-50%,-50%);
    border:2px solid #000;
    border-radius:50%;
    width:100px;
    height:100px;
    text-align:center;
    line-height:110px;
    font-size:80px;
    overflow:hidden;
}

.down .fa{
    color:#000;
    margin:0;
    padding:0;
    animation:animate 1s linear infinite;
}

@keyframes animate
{
    0%
    {
        transform:translateY(-50px);
        text-shadow:0 50px 0  #fff;
    }
    20%
    {
        transform:translateY(0px);
        text-shadow:0 10px 0  #fff;
        
    }
    40%
    {
        transform:translateY(0px);
        text-shadow:0 -10px 0  #fff;
    }
    60%
    {
        transform:translateY(0px);
        text-shadow:0 0px 0  #fff;
    }
    100%
    {
        transform:translateY(100px);
        text-shadow:0 -50px 0  #fff;
    }
}

.download{
    text-align:center;
    padding-top:300px;
}
.download a{
    position: relative;
    padding:8px 30px;
    color:#000;
    text-transform: uppercase;
    text-decoration: none;
    font-size:20px;
    border:2px solid #000;
    box-sizing:border-box;
    transition:0.5s;
}
.download a:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:50%;
    height:100%;
    background:#000;
    z-index:-1;
    transform:scale(0);
    transition:transform 0.5s;
    transform-origin: left;
}
.download a:hover:before{
    transform:scale(1);
    transition:transform 0.5s;
    transform-origin:right;
}
.download a:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:50%;
    height:100%;
    background:#000;
    z-index:-1;
    transform:scale(0);
    transition:transform 0.5s;
    transform-origin: right;
}
.download a:hover:after{
    transform:scale(1);
    transition:transform 0.5s;
    transform-origin:left;
}
.download a:hover{
    color:#fff;
    text-decoration: none;
}

.navbar
{
   background-color: rgba(184, 169, 169, 0.37) !important;
}

.neon{
    position:absolute;
    left:50%;
    top:15%;
    transform:translate(-50%,-50%);
    margin:0;
    padding:0 20px;
    font-size:6em;
    color:#fff;
    text-shadow:0 0 20px #ff005b;
}

.neon:after{
    content:attr(data-text);
    position:absolute;
    top:0;
    left:0;
    padding:0 2px;
    z-index:-1;
    color: #ff005b;
    filter:blur(15px);
}

.neon:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#fe3a80;
    z-index:-2;
    opacity:0.5;
    filter:blur(40px);
}

#myTypingText {
    width: 700px;
    height: 120px;
    padding: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
  }
  
  .description {
    margin: 20%;
    width: 100%;
    height: 180px !important;
    margin: auto;
    font-size: 20px;
  }
  
  .description p {
    margin: 50px 0px;
  }
  
  .block {
    position: relative;
    /* margin:25vh auto; 
              width:50%;
              min-width:320px;
              min-height:320px; */
    background: linear-gradient(0deg, #000, #262626);
    color: #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .description:before,
  .description:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(45deg, #1A1A1C,#4E4E50, #181113, #090020, #08021a, #0c0b0b, rgb(20, 7, 7), #140f13, #12161d, #0e0608);
    background-size: 400%;
    z-index: -1;
    animation: shadow 20s linear infinite;
    top: -8px;
    left: -8px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    filter: blur(24px);
    opacity: 0.9;
  }
  
  @keyframes shadow {
    0% {
      background-position: 0 0;
    }
    50.01% {
      background-position: 200% 0;
    }
    100% {
      background-position: 0 0;
    }
  }

.alone a{
    position:absolute;
    top:80%;
    left:50%;
    transform:translate(-50%,-50%);
    width:400px;
    height:60px;
    text-align:center;
    transform-style:preserve-3d;
    perspective:1000px;
    transform-origin:center center;
}

.alone span{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:block;
    text-align:center;
    line-height:60px;
    font-size:24px;
    background:rgba(255,255,255,0.05);
    transform-style: preserve-3d;
    backface-visibility:hidden;
    border-radius:30px;
    text-transform:uppercase;
    color:#fff;
    transition:1s;
}

.alone span.front{
    transform:rotateX(0deg) translateZ(20px);
}

.alone a:hover span.front{
    transform:rotateX(-180deg) translateZ(20px);
}

.alone span.back{
    transform:rotateX(180deg) translateZ(20px);
}

.alone a:hover span.back{
    transform:rotateX(0deg) translateZ(20px);
}

.alone span.center{
    background: linear-gradient(to left, #c31a5b, #7129bd);
}

.alone span.center:before{
    content: '';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to left, #ffdd1f, #c31a5b);
    border-radius:30px;
    transform:translateZ(-1px);
}

.alone a:hover span.center{
    transform:rotateX(-180deg);
}

.temps{
    /* position: fixed; */
    top:0;
    left:0;
    width:100%;
    display:flex;
}

.nemoone h1{
    margin:0;
    font-family:'BadScript', cursive;
    padding:0;
    color:#111;
    margin-left:40%;
    font-size:5em;
    padding-top:30px;
    padding-bottom:10px;
}

.nemoone h1 span{
    display:table-cell;
    margin:0;
    padding:0;
    animation:titling 2s linear infinite;
}

.nemoone h1 span:nth-child(1){
    animation-delay:0s;
}

.nemoone h1 span:nth-child(1){
    animation-delay:0.25s;
}

.nemoone h1 span:nth-child(2){
    animation-delay:0.5s;
}

.nemoone h1 span:nth-child(3){
    animation-delay:0.75s;
}

.nemoone h1 span:nth-child(4){
    animation-delay:1s;
}

.nemoone h1 span:nth-child(5){
    animation-delay:1.25s;
}

.nemoone h1 span:nth-child(6){
    animation-delay:1.5s;
}

.nemoone h1 span:nth-child(7){
    animation-delay:1.75s;
}

.nemoone h1 span:nth-child(8){
    animation-delay:2s;
}

@keyframes titling{
    0%{
        color:#fff;
        filter:blur(2px);
        text-shadow:0 0 10px #00b3ff,
                    0 0 20px #00b3ff,
                    0 0 40px #00b3ff,
                    0 0 80px #00b3ff,
                    0 0 120px #00b3ff,
                    0 0 200px #00b3ff,
                    0 0 300px #00b3ff,
                    0 0 400px #00b3ff;
    }
    5%,95%{
        color:#111;
        filter:blur(0px);
    }
}

.box{
    background:url(desktopWebsite.jpg);
    background-size:cover;
    background-position:top;
    border:5px solid #fff;
    box-shadow:0 20px 30px rgba(0,0,0,0.5); 
    transition:5s;
    top:40%;
    width:400px;
    height:400px;
    transform:translate(-50%,-50%);
    position:absolute;
}

.box:hover{
    background-position:bottom;
}

.box1{
    left:20%;
}

.box2{
    left:50%;
}
.box3{
    left:80%;
}

.works{
    top:0;
    display:flex;
    z-index:100;
    align-items: center;
    justify-content: center;
}

.works a{
    text-decoration: none;
    color:cyan;
}

.works h1{
    margin:0;
    padding:0;
    text-align: center;
    font-family: sans-serif;
    color:#262626;
    background: #fff;
    padding:10px;
    text-shadow:0 2px 5px rgba(0,0,0,0.5);
    box-shadow:0 5px 25px rgba(0,0,0,0.5);
    z-index:100;
}

.works h1:nth-child(1){
    background: #74b9ff;
}

.works h1:nth-child(2){
    background: #6c5ce7;
}

.works h1:nth-child(3){
    background: #ff7675;
}

.works h1:nth-child(4){
    background: #fd79a8;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.s4{
    background: #011029;
    width:100%;
    height:100%;
}

.tah{
    width:800px;
    margin:40px auto 0;
    padding:40px;
    background: #052152;
    box-sizing: border-box;
}

.tah ul{
    margin:0;
    padding:0;
    border-left:2px solid #020c1d;
}

.tah ul li{
    list-style:none;
}

.tah ul li .item{
    position:relative;
    padding:30px 20px;
}

.tah ul li .item:hover{
    background: #041940;

}

.tah ul li .item span{
    padding:4px 12px;
    background: #007faf;
    border-radius:15px;
    color:#fff;
}

.tah ul li .item:hover span{
    background: #e91e63;
}

.tah ul li .item h3{
    margin:10px 0 0;
    padding:0;
    color:#007faf;
}

.tah ul li .item:hover{
    color:#ff0;
}

.tah ul li .item:before{
    content:'';
    position: absolute;
    top:32px;
    left:-6px;
    width:12px;
    height:12px;
    background: #021434;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0,0,0,1);
}

.tah ul li .item:hover:after{
    animation:tahsilati 0.5s linear infinite;
}

.tah ul li .item p{
    margin:10px 0 0;
    padding:0;
    color:#fff;
}

@keywords tahsilati{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}


.water{
    position: relative;  
    float:right;
    margin:auto;
    text-align:center;
    top:10%;
    right:50%;
}

.water h2{
    position: absolute;
    color: #fff;
    transform: translate(-50%,-50%);
    font-size:8em;
}

.water h2:nth-child(1){
    color:transparent;
    -webkit-text-stroke:2px #03a9f4;
}

.water h2:nth-child(2){
    color:#03a9f4;
    animation: abaki 4s ease-in-out infinite;
}

@keyframes abaki{
    0%, 100%{
        clip-path: polygon(0% 45%,15% 44%,32% 50%,54% 60%,70% 61%,84% 59%,100% 52%,100% 100%,0% 100%);
    }
    50%{
        clip-path: polygon(0% 60%,16% 65%,34% 66%,51% 62%,67% 50%,84% 45% 100% 46%,100% 100%,0% 100%);
        }
    }
}


@mixin tablet-and-up {
    @media screen and (min-width: 769px) { @content; }
}
@mixin mobile-and-up {
    @media screen and (min-width: 601px) { @content; }
}
@mixin tablet-and-down  {
    @media screen and (max-width: 768px) { @content; }
}
@mixin mobile-only {
    @media screen and (max-width: 600px) { @content; }
}



@mixin tablet-and-up {
    @media screen and (min-width: 769px) { @content; }
}
@mixin mobile-and-up {
    @media screen and (min-width: 601px) { @content; }
}
@mixin tablet-and-down  {
    @media screen and (max-width: 768px) { @content; }
}
@mixin mobile-only {
    @media screen and (max-width: 600px) { @content; }
}


.wrapper ul, li{
    list-style: none;
    padding: 0;
}

.con{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    background: linear-gradient(45deg, #209cff, #68e0cf);
    padding: 3rem 0;
    background: #011029;
    width:100%;
    height:100%;
}
.wrapper{
    background: #eaf6ff;
    padding: 2rem;
    border-radius: 15px;
}
.wrapper h1{
    font-size: 1.1rem;
    font-family: sans-serif;
}
.sessions{
    margin-top: 2rem;
    border-radius: 12px;
    position: relative;
}
.wrapper li{
    padding-bottom: 1.5rem;
    border-left: 1px solid #abaaed;
    position: relative;
    padding-left: 20px;
    margin-left: 10px;
    &:last-child{
    border: 0px;
    padding-bottom: 0;
}
&:before{
    content: '';
    width: 15px;
    height: 15px;
    background: white;
    border: 1px solid #4e5ed3;
    box-shadow: 3px 3px 0px #bab5f8;
    box-shadow: 3px 3px 0px #bab5f8;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 0px;
}
.time{
    color: #2a2839;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    @include mobile-and-up{
      font-size: .9rem;
    }
    @include mobile-only{
      margin-bottom: .3rem;
      font-size: 0.85rem;
    }
}
.wrapper p{
    color: #4f4f4f;
    font-family: sans-serif;
    line-height: 1.5;
    margin-top:0.4rem;
    @include mobile-only{
    font-size: .9rem;
    }
}

