body{
    margin:0;
    cursor: url(/web/20211031183219im_/https://www.zahidshaikh.com/css/cur116.png), auto;
}

html{
    overflow-x: hidden;

}

.welcome {
    text-align: center;
    position: relative;
    background-color: #0e0a09;
}
/**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/

.zoom{
    transform: scale(.9);
    animation: zoom 10s ease forwards;
}

@keyframes zoom{
    0%{
        transform: scale(.9);
    }
    100%{
        transform: scale(1);
    }
}
/**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/

.name{
    color: #fff;
    text-align: center;
    font-size: 28pt;
    font-family: 'Cousine', monospace;
    animation: name .2s ease 1.3s forwards;
    opacity:0;
}

@keyframes name{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 1;
    }
}

.name-container{
    animation: name-container .2s ease forwards 1s;
    padding:0px 10px;
    margin-top:30px;
}

@keyframes name-container{
    0%{
        background-color: rgba(5, 231, 151, 0);
    }
    30%{
        background-color: rgba(5, 231, 151, 1);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, 1);
        transform: skewX(60deg);
    }
    50%{
        background-color: rgba(5, 231, 151, 0);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, 0);
        transform: skewX(0deg);
    }
    70%{
        background-color: rgba(5, 231, 151, 1);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, 1);
    }
    100%{
        background-color: rgba(5, 231, 151, 0);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, 0);
    }
}

/**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/


.top-animation {
    display: inline-block;
    width: 100%;
}

.top-animation-table {
    margin:0 auto;
    border-spacing: 10px;
    border-collapse: separate;
    width: 100%;
    max-width: 400px;
}
/***/

.top-animation-table .pixel:nth-child(4) {
    animation-delay: 1.2s;
}

.top-animation-table .pixel:nth-child(5) {
    animation-delay: 1.1s;
}

.top-animation-table .pixel:nth-child(6) {
    animation-delay: 1s;
}

.top-animation-table .pixel:nth-child(7) {
    animation-delay: .9s;
}

.top-animation-table .pixel:nth-child(8) {
    animation-delay: .8s;
}

.top-animation-table .pixel:nth-child(9) {
    animation-delay: .7s;
}

.top-animation-table .pixel:nth-child(10) {
    animation-delay: .6s;
}

.top-animation-table .pixel:nth-child(11) {
    animation-delay: .5s;
}

/***/


.top-animation-table .pixel:nth-child(12) {
    animation-delay: 1.7s;
}


.top-animation-table .pixel:nth-child(13) {
    animation-delay: 1.6s;
    position: relative;
}

.top-animation-table .pixel:nth-child(13):after {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: 18px;
    left: 0px;
    animation: top-animation 1s linear forwards 1.6s;
}

.top-animation-table .pixel:nth-child(3):after {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: 18px;
    left: 0px;
    animation: top-animation 1s linear forwards;
}


.top-animation-table .pixel {
    animation: top-animation 1s linear forwards;
}

.top-animation-table .pixel:nth-child(1) {
    animation-delay: .2s;
}

.top-animation-table .pixel:nth-child(2) {
    animation-delay: .1s;
}

.top-animation-table .pixel:nth-child(14) {
    animation-delay: 1.5s;
}

.pixel{
    width: 7%;
    height: 10px;
}


.top-animation-table .pixel:nth-child(3) {
    position: relative;
}


@keyframes top-animation {
    0% {
        background-color: rgba(5, 231, 151, 0);
    }

    50% {
        background-color: #05e797;
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .2);
    }

    100% {
        background-color: rgba(5, 231, 151, 0);
        box-shadow: 0px 0px 10px 5px rgba(5, 231, 151, 0);
    }
}

@keyframes left-animation {
    0% {
        background-color: rgba(5, 231, 151, 0);
    }

    50% {
        background-color: #05e797;
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .2);
    }

    100% {
        background-color: rgba(5, 231, 151, 0);
        box-shadow: 0px 0px 10px 5px rgba(5, 231, 151, 0);
    }
}

/**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/


.me-container{
    width: 40%;
    margin: 0 auto;
    display: inline-block;
}

.me-container .me{
    width: 100%;
    animation: flick 1s ease 1s, a 5s linear 1s infinite;
}

.right-animation{
    width: 30%;
    display: inline-block;
    vertical-align: top;
    right: 0; transform: scaleX(-1);
    margin-top:10%;
}

@keyframes flick{
    0%{
        opacity: 1;
    }
    3%{
        opacity: 0;
        transform: skew(-35deg);
    }
    5%{
        opacity: 1;
        transform: skew(0deg);
    }
    100%{
        opacity: 1;
    }
}

@keyframes a
{
    0%{
        opacity: 1;
    }
    1%{
        opacity: 0;
    }
    2%{
        opacity: 1;
    }
    49.5%{

        transform:skewX(0deg);
    }
    50%{
        transform:skewX(50deg);
    }
    50.5%{
        transform:skewX(0deg);
    }
    100%{
        opacity: 1;
        transform:skewX(0deg);
    }
}

/**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/


.left-animation{
    width: 30%;
    margin-top: 10%;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.left-animation-table{
    width: 100%;
    max-width: 100px;
    border-spacing: 10px;
    border-collapse: separate;
}

.left-animation-cont{
    display: inline-block;
    width: 40%;
    margin-right: 10%;
    vertical-align: middle;
}

.left-animation-table .pixel{
    width: 33%!important;
    animation: left-animation 1s linear forwards;
  }

.left-animation-table .pixel-container:nth-child(1) .pixel:nth-child(1){
    animation-delay:1s;
 }
 
 .left-animation-table .pixel-container:nth-child(1) .pixel:nth-child(2){
    animation-delay:1.1s;
 }
 
 .left-animation-table .pixel-container:nth-child(1) .pixel:nth-child(3){
    animation-delay:1.2s;
 }
 
 
 .left-animation-table .pixel-container:nth-child(2) .pixel:nth-child(1){
    animation-delay:1.5s;
 }
 
 .left-animation-table .pixel-container:nth-child(2) .pixel:nth-child(2){
    animation-delay:1.4s;
 }
 
 .left-animation-table .pixel-container:nth-child(2) .pixel:nth-child(3){
    animation-delay:1.3s;
 }
 
 .left-animation-table .pixel-container:nth-child(3) .pixel:nth-child(1){
    animation-delay:1s;
 }
 
 .left-animation-table .pixel-container:nth-child(3) .pixel:nth-child(2){
    animation-delay:1.1s;
 }
 
 .left-animation-table .pixel-container:nth-child(3) .pixel:nth-child(3){
    animation-delay:1.2s;
 }

 /**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/


 .hourglass-container{
     display: inline-block;
     width: 50%;
     position: relative;
     vertical-align: middle;
 }

 
 .hourglass1{
     width: 100%;
     stroke-dasharray: 2000;
     stroke-dashoffset: 2000;stroke-width: 4;
    animation: dash 1.8s linear forwards .5s;
  }

  .hourglass{
    fill:rgba(0,0,0,0);
    stroke:#05e797;
    stroke-miterlimit:10;
  }

  
  @keyframes dash {
    10%{
      opacity:1;
    }
    11%{
      opacity:0;
    }
    12%{
      opacity:1;
    }
    30%{
      opacity:1;
    }
    41%{
      opacity:0;
      transform:skew(0deg);
    }
    42%{
      opacity:1;
      transform:skew(10deg);
    }
    43%{
        opacity:1;
      transform:skew(0deg);
    }
    100%{
      stroke-dashoffset: 0;
      opacity:0;
    }
  }

.hourglass-container:after{
    content: "";
    height:20px;
    width:20px;
    border:2px solid #05e797;
    margin-left:10px;
    opacity:0;
    position:absolute;
    left:-15px;
    top:-5px;
        animation: appear .5s ease 1s;
}

@keyframes appear{
    0%{
      opacity:0;
    }
    50%{
      opacity:1;
      box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .2);
    }
    100%{
      opacity:0;
      box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, 0);
    }
  }

  
 /**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/


  .lines{
    position: absolute;
    height: 50px;
    width: 70px;
    top: 80px;
    left: 100px;
}

.lines .line{
    width: 0px;
    height: 3px;
    background-color:#05e797;
    margin-bottom: 20px;
    position: relative;
}

.lines .line:nth-child(1){  
    animation: linesAppear .7s ease 1.9s;
}

.lines .line:nth-child(2){
  animation: linesAppear .7s ease 2.1s;
}

.lines .line:nth-child(3){
  animation: linesAppear .7s ease 2.3s;
}

@keyframes linesAppear{
    0%{
        width: 0px;
        height: 3px;
        opacity: 0;
    }
    50%{
        width: 100%;
        height: 3px;
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .2);
        opacity: 1;
    }
    
    80%{
      width: 100%;
      height: 3px;
      box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .2);
      opacity: 1;
    }
    100%{
        width: 100%;
        height: 3px;
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .2);
        opacity: 0;
    }
}

 /**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/


@keyframes rt{
0% {
    transform: rotateY(0deg);
}

100%{
    transform: rotateY(-360deg);
}
}

.chain{
    position: absolute;
    perspective: 1200px;
    transform-style: preserve-3d;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: rt 2s infinite;
}

.chain .chain-f{
    border:3px solid #05e797;
    height: 50px;
    width: 50px;
    transform: rotate(45deg);
    opacity: 0;
}

.chain .chain-f:nth-child(2){
  animation: appearShadow .5s ease 2.8s forwards;
} .chain .chain-f:nth-child(1){
  animation: appearShadow .5s ease 3s forwards;
} .chain .chain-f:nth-child(3){
  animation: appearShadow .5s ease 3.2s forwards;
}

@keyframes appearShadow{
  0%{
    opacity:0;
  }
  50%{
    opacity:1;
    box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .2);
  }
  65%{
      opacity: 1;
      box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .2);
  }
  67%{
      opacity: 0;
      box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, 0);
  }
  68%{
      opacity: 1;
      box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .2);
  }
  100%{
    opacity:1;
    box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .2);
  }
}


.inside-chain{
    width: 20px;
    height: 20px;
    border-left:3px solid #05e797;
    border-top:3px solid #05e797;
    border-left:0;
    border-bottom: 0;
    box-shadow: 0;
    transform: rotate(45deg);
    animation: borders .7s ease 3s forwards;
    transform: rotate(0deg) translate(10px, 10px);
}

@keyframes borders{
  0%{
    border-left:3px solid #05e797;
    border-top:3px solid #05e797;
    border-right:0;
    border-bottom: 0;
  }50%{
      border-left:0;
      border-top:3px solid #05e797;
      border-right:0;
      border-bottom: 3px solid #05e797;
    }100%{
      border-left:0;
      border-top:0;
      border-right:2px solid #05e797;
      border-bottom: 2px solid #05e797;
    }
}

 /**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/
.about{
    background-color: #1d1d1d; 
    box-shadow: inset 0px 12px 10px -12px rgba(5, 231, 151, .5);
    padding-bottom: 50px;
    padding-top:20px;
    animation: parpadeo 4s ease infinite;
    position: relative;
}

@keyframes parpadeo{
    0%{
        box-shadow: inset 0px 12px 10px -12px rgba(5, 231, 151, .5);
    }
    9%{
        box-shadow: inset 0px 12px 10px -12px rgba(5, 231, 151, .5);
    }
    10%{
        box-shadow: inset 0px 12px 10px -12px rgba(5, 231, 151, .0);
    }
    11%{
        box-shadow: inset 0px 15px 10px -12px rgba(5, 231, 151, .5);
    }
    12%{
        box-shadow: inset 0px 12px 10px -12px rgba(5, 231, 151, .5);
    }
    100%{
        box-shadow: inset 0px 12px 10px -12px rgba(5, 231, 151, .5);
    }
}

.about-title{
    margin-top:0;
    position: absolute;
    left:0px;
    top:60px;
    font-size:20px;
    transform: rotate(-90deg);
}

.about-title::after{
    width: 100px;
    height: 3px;
    background-color: #8af2cf;
    content: "";
    position:absolute;
    left:-120px;
    top:9px;
}

.me-about{
    width: 150px;
    height: 150px;
    background: rgba(5, 231, 151, .1);
    transform: rotate(55deg);
    position: relative;
    margin-left: 60px;
    margin-top:50px;
}

.me-bg{
    border: 3px solid #05e797;
    box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .5);
    content:"";
    width: 150px;
    height: 150px;
    position: absolute;
    transform: rotate(15deg);
}

.about-text{
    font-family: 'Cousine', monospace;
    font-weight: 300 !important;
    /*width: calc(100% - 390px);*/
    padding-left: 40px;
    padding-right: 40px;
    margin-top:30px;
    line-height: 30px;
    color:#fff;
    text-align: justify;
}

.me-about, .about-text{
    vertical-align: top;
    display: inline-block;
}

/**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/

@media only screen and (max-width: 600px) {
    .chain .chain-f {
      width: 25px;
      height: 25px;
    }

    .inside-chain{
        width: 10px;
        height: 10px;
        transform: rotate(0deg) translate(5px, 5px);
    }

    .name{
        font-size: 12pt;
    }
    .about-text{
    padding-left: 22px;
    padding-right: 22px;

}
  }

  
/**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************
**********************************************************************************************************/
  .skills{
    background-color:   #131413;
    padding:10px 15px 0px 15px;
    text-align: center;
    font-family: 'Cousine', monospace;
    position: relative;
  }

  .skill{
    position: relative;
    display: inline-block;
    width: calc(100% - 50px);
    text-align: left;
    vertical-align: top;
    margin-bottom: 25px;
  }

  .skill .dev-icon{
    font-size:80px;
    color: white;
    display: block;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .html-card{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2305e797' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border:1px solid rgba(5, 231, 151, .6);
    box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .3);
  }

  .corner{
    position: absolute;
    height: 18px;
    width: 18px;
  }

  .corner-top-left{
    border-top:3px solid #8af2cf;
    border-left: 3px solid #8af2cf;
    top: -2px;
    left: -2px;
  }

  .corner-top-right{
    border-top:3px solid #8af2cf;
    border-right: 3px solid #8af2cf;
    top: -2px;
    right: -2px;
  }

  .corner-bottom-right{
    border-bottom:3px solid #8af2cf;
    border-right: 3px solid #8af2cf;
    bottom: -2px;
    right: -2px;
  }

  .corner-bottom-left{
    border-bottom:3px solid #8af2cf;
    border-left: 3px solid #8af2cf;
    bottom: -2px;
    left: -2px;
  }

  .number{
    color: white;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size:14px;
  }

  .number:after{
    content: "";
    position: absolute;
    right: -40px;
    width: 30px;
    height: 2px;
    top: 6px;
    background-color: white;
  }

  .skill-title{
    background-color: black;
    color: white;
    display: inline-block;
    padding: 2px 5px;
    font-weight: bold;
    margin: 0;
    font-size: 16px;
  }

  .skill .skill-title:first-child{
    margin-top: 20px;
  }

  .skill-content{
    padding:20px 20px 0px 20px;
  }

  .skill-container{
    display: inline-block;
    vertical-align: top;
    width: 23%;
    margin-right: 1%;
    margin-left: 1%;
    min-width: 250px;
    margin-bottom: 20px;
  }

  .progress{
    display: inline-block;
    width: 30px;
    vertical-align: bottom;
    transform: translateY(-17px);
  }

  .progress-bars{
    width: 100%;
    list-style-type: none;
    padding:0;
    margin:0;
  }

  .bar{
    height: 1px;
    width: 98%;
    margin-bottom: 7px;
    background-color: #05e797;
    margin-left: 2%;
  }

  .skills-title{
    color: white;
    font-size: 28px;
    margin: 0;
    margin-bottom: 30px;
    text-align: left;
  }

  .title-container{
    position: relative;
  }

    .project-t{
        position: absolute;
        top:-47px;
    }

    .skill-t{
        position: absolute;
        top:-47px;
        animation: skew 5s linear infinite;
    }

    @keyframes skew{
        0%{
            transform: skewX(0deg);
        }

        1%{
            transform: skewX(120deg);
        }

        2%{
            transform: skewX(0deg);
        }

        100%{
            transform: skewX(0deg);
        }
    }

  .a-r{
    color: white;
    font-size: 28px;
    margin-right: 10px;
    transform: translateY(2px);
  }

  .project{
    padding: 20px;

  }

  .tiffany{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/1.png");
    background-size: cover;
  }

  .quickCode{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/2.png");
    background-size: cover;
  }

  .newyear{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/7.png");
    background-size: cover;
  }
  .biba{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/8.png");
    background-size: cover;
  }
  
  .naezy{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/9.png");
    background-size: cover;
  }

  .shir{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/10.png");
    background-size: cover;
  }

  .cake{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/11.png");
    background-size: cover;
  }

  .sql{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/3.png");
    background-size: cover;
  }

  .code{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/4.png");
    background-size: cover;
    background-position: center;
  }

  .school{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/school.png");
    background-size: cover;
    background-position: center;
  }

  .phone{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/phone.png");
    background-size: cover;
    background-position: center;
  }

 .nsk{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/5.png");
    background-size: cover;
    background-position: center;
  }

  .bbit{
    background-image: url("https://web.archive.org/web/20211031183219im_/https://zahidshaikh.com/img/6.png");
    background-size: cover;
    background-position: center;
  }

  .project{
    height: 226px !important;
  }

  .project-img{
    width: 217px;
    height: 226px;
    position: relative;
    margin: 0 auto;
    transition: all 350ms;
  }
.project-img:after{
    background-color: rgba(112,35,75,0);
    z-index: 77;
}

 .project-img:hover .project-detail {
    opacity: 1;
    left: 15px;
 }
  .project-detail{
    position: absolute;
    top: 50%;
    left: 15px;
    color: white;
    opacity: 0;
    transition: all 350ms;
  }

  .project-trata{
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'Cousine', monospace;
    text-shadow: 0px 2px rgba(0,0,0,.5);
  }

  .project-title{
    font-size: 15pt;
    font-family: 'Work Sans', sans-serif;
    text-shadow: 0px 2px rgba(0,0,0,.5);
  }

  .project-number{
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'Cousine', monospace;
    text-shadow: 0px 2px rgba(0,0,0,.5);
    position: relative;
    color: white;
    top: 5px;
    left: 5px;
  }

  .project-number:after{
    content: "";
    position: absolute;
    right: -5px;
    width: 30px;
    height: 2px;
    top: 6px;
    background-color: white;
  }
  .project-number:before{
    content: "";
    position: absolute;
    right: -5px;
    width: 30px;
    height: 2px;
    top: 16px;
    background-color: white;
  }

  .prev{
    background-color: rgba(0,0,0,.8);
    color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    margin: auto;
    border-radius: 50%;
    border:none;
    height: 40px;
    cursor: crosshair;
    width: 40px;
    font-size: 15px;
    z-index: 999;
  }

  .nxt{
    background-color: rgba(0,0,0,.8);
    color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto;
    border-radius: 50%;
    border:none;
    height: 40px;
    cursor: crosshair;
    width: 40px;
    font-size: 15px;
    z-index: 999;
  }

  .slick-prev, .slick-next{
    display: none !important;
  }

  .projects{
    background-color: #1d1d1d;
    position: relative;
    cursor: crosshair; !important;
  }

  .age{
    position: absolute;
    color: white;
    top: 15px;
    bottom: 0;
    left: 19px;
    right: 0;
    margin: auto;
    transform: rotate(-57deg);
    text-align: center;
    font-family: 'Work Sans', sans-serif;
  }

  .contact-me{
    background-color:#131413;
    text-align: center;
    padding-bottom: 50px;
    padding-top: 30px;
  }

container{
    z-index: 3;
}

.contact-me a{
    color: #7F1717;
    opacity: 0.7;
    text-decoration: none;
}


  .contact-title{
    margin:0px 0px 0px 15px;
    font-size: 40px;
    padding-top: 10px;
    font-family: 'Work Sans', sans-serif;
    color: white;
  }

  /**/

container {
  
  display: inline-block;
  margin: 10px auto 0 auto;
  -webkit-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0); 
    font-family: 'Cousine', monospace;}

loader {
  display:block;
  position: relative;
  height: 40px;
  min-width: 40px;
  padding: 0 20px;
  font-size: 18px;
  line-height: 40px;
  background-color: #fff;
  position: relative; }
  loader:after {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-filter: blur(15px);
    filter: blur(15px);
    background: -webkit-gradient(linear, right top, left top, from(#8426af), color-stop(#FF5770), to(#6501DE));
    background: linear-gradient(to left, #05e797, #7fffd1, #78ff56);
    background-size: 200% 200%;
    -webkit-animation: animateGlow 1s linear infinite;
            animation: animateGlow 1s linear infinite; }

@-webkit-keyframes animateGlow {
  0% {
    background-position: 0% 50%; }
  100% {
    background-position: 200% 50%; } }

@keyframes animateGlow {
  0% {
    background-position: 0% 50%; }
  100% {
    background-position: 200% 50%; } }


.css-card{
        animation: glitch-css 2s ease infinite;
}

@keyframes glitch-css{
    0%{
        border: 1px solid rgba(5, 231, 151, .6);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .3);
    }

    10%{
        border: 1px solid rgba(5, 231, 151, .6);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .3);
    }

    13%{
        border: 1px solid rgba(5, 231, 151, .2);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .1);
    }

    12%{
        border: 1px solid rgba(5, 231, 151, .6);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .3);
    }

    15%{
        border: 1px solid rgba(5, 231, 151, .2);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .1);
    }

    16%{
        border: 1px solid rgba(5, 231, 151, .6);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .3);
    }

    52%{
        border: 1px solid rgba(5, 231, 151, .6);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .3);
    }

    55%{
        border: 1px solid rgba(5, 231, 151, .2);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .1);
    }

    56%{
        border: 1px solid rgba(5, 231, 151, .6);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .3);
    }

    100%{
        border: 1px solid rgba(5, 231, 151, .6);
        box-shadow: 0px 0px 7px 2px rgba(5, 231, 151, .3);
    }
}

.android-card{
        animation: opacity 5s linear infinite;
}

.html-card{
    transition: all .3s ease;
}

.html-card:hover{
    transform: translateY(-10px);
    transition: all .3s ease;
    box-shadow: none;
}

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

    1%{
        opacity: 0;
    }

    2%{
        opacity: 1;
    }

    3%{
        opacity: 0;
    }

    4%{
        opacity: 1;
    }

    100%{
        opacity: 1;
    }
}

.mobile{
    display: none;
  }
  .desktop{
    display: inline-block;
  }


@media only screen and (max-width: 790px) {

    .name-container {
        font-size: 12pt;
    }

  .mobile{
    display: block;
  }
  
  .desktop{
    display: none;
  }

  .about-text{
    width: 100%;
    display: block;
    /*margin-left: 10%;*/
  }

  .me-about-m{
    margin-left: 100px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 600px) {

  .skill-container{
    width: 95%;
  }
}

.js i{
  animation: jsop 5s linear infinite;
}

@keyframes jsop{
  0%{
    color: white;
  }
  1%{
    color: #05e797;
    transform: rotateX(10deg) skewX(90deg);
  }
  5%{
    color: white;
    transform: rotateX(0deg) skewX(0deg);
  }
  100%{
    color:White;
  }
}
.project-t:after{
  content:"";
  position:absolute;
  right:-10px;
  top:30px;
  background-color: white;
  height: 26px;
  width: 3px;
  animation: flash 1s ease infinite;
}

@keyframes flash{
  0%{opacity:0;}
  50%{opacity:1;}
  100%{opacity:0;}
}

p{
    font-weight: 300 !important;
}

a{
    color: #CEEA34;
}




.copyrights{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
































.menu--mohe .menu__item {
    font-family: 'Space Mono', sans-serif;
    font-weight: 700;
    display: grid;
    justify-content: center;
    margin: 4em 0;
    text-transform: lowercase;
    grid-template-columns: auto;

}

.menu--mohe .menu__item-name {
    font-size: 1.8em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    white-space: pre;
    pointer-events: none;
    color: white;
    grid-area: 1 / 1 / 2 / 2;
}

.menu--mohe .menu__item-name span {
    display: inline-block;
}

.menu--mohe .menu__item-label {
    font-size: 1.25em;
    line-height: 1.4;
    overflow: hidden;
    margin: 0;
    text-align: center;
    color: transparent;
    transition: color 0s 0.3s;
    grid-area: 1 / 1 / 2 / 2;
}

.menu--mohe .menu__item:hover .menu__item-label,
.menu--mohe .menu__item:focus .menu__item-label {
    color: #fff;
}

.menu--mohe .menu__item-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translate3d(-100%,0,0) translate3d(-1px,0,0);
    transition: transform 0.6s;
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.menu--mohe .menu__item:hover .menu__item-label::before,
.menu--mohe .menu__item:focus .menu__item-label::before {
    transform: translate3d(100%,0,0) translate3d(1px,0,0);
}

@media screen and (max-width: 50em) {
    .menu--mohe .menu__item-label {
        font-size: 0.85em;
    }
}





#showMenu{
    cursor: pointer !important;
}

#ver{
    opacity: 0;
}

.navi{
    opacity: 0;
    transition: all 777ms ease-out;
    transform: scale(0.9);
    transform-style: preserve-3d;
    perspective: 1200px;
    position: fixed;
    
}

.active{
    opacity: 1;
    transition: all 777ms ease-out;
    transform: scale(1);
    transform-style: preserve-3d;
    perspective: 1200px;
}

/*
     FILE ARCHIVED ON 18:32:19 Oct 31, 2021 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 10:53:28 Apr 06, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.636
  exclusion.robots: 0.022
  exclusion.robots.policy: 0.01
  esindex: 0.013
  cdx.remote: 32.674
  LoadShardBlock: 214.448 (3)
  PetaboxLoader3.datanode: 292.576 (5)
  PetaboxLoader3.resolve: 607.899 (2)
  load_resource: 722.034
  loaddict: 187.1
*/