
.line {
    margin: 20px auto;
    width: 25px;
    height: 1px;
    background-color: #9e9e9e;
}

.preloader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 9999;
    overflow: hidden;
}

.preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 60px;
    margin: -30px 0 0 -40px;
}

.preloader .lines {
    width: 100px;
    height: 40px;
    position: absolute;
}

.preloader .lines .line {
    width: 80px;
    height: 8px;
    background-color: #0C0C0C;
    position: absolute;
    clip: rect(0,0,20px,0);
}

.preloader .lines .line.line-1 {
    top: 0;
    animation: slide 2s ease 0.1s infinite;
}

.preloader .lines .line.line-2 {
    top: 15px;
    animation: slide 2s ease .25s infinite;
}

.preloader .lines .line.line-3 {
    top: 30px;
    animation: slide 2s ease .5s infinite;
}

.preloader .loading-text {
    position: absolute;
    top: 50px;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-family: "Montserrat",sans-serif;
    letter-spacing: 1px;
    line-height: 10px;
    height: 10px;
    text-transform: uppercase;
}

@keyframes slide {
    0% {
        clip: rect(0,0,20px,0);
    }

    30% {
        clip: rect(0,80px,20px,0);
    }

    50% {
        clip: rect(0,80px,20px,0);
    }

    80% {
        clip: rect(0,80px,20px,80px);
    }

    100% {
        clip: rect(0,80px,20px,80px);
    }
}

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

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media only screen and (max-width : 375px) {
        .preloader {
            margin: -30px 0 0 -25px;
        }
        .header-wrapper {  
          -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
          position: absolute;
          top: 50%;
          left: 50%;
          text-align: center;
        }
        .header-wrapper h1 {
          font-size: 12pt;
          letter-spacing: 10pt;
        }
        .header-wrapper h2 {
          font-size: 10pt;
          letter-spacing: 1pt;
        }
        .home-social {
          display: none;
        }
        .scrolldown {
          display: none;
        }
        .resume-list>li .timeline-image {
          border: none;
          background-color: #fafbfc;
        }
        .resume-list>li .timeline-image h4 {
          font-size: 8pt;
          letter-spacing: 1pt;
          margin-top: 20px;
          color: #1b1b1b;
        }
    }

/* Custom, iPhone Retina */ 
    @media only screen and (max-width : 320px) {
        .preloader {
            margin: -30px 0 0 -30px;
        }
        .header-wrapper {  
          -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
          position: absolute;
          top: 50%;
          left: 50%;
          text-align: center;
        }
        .header-wrapper h1 {
          font-size: 12pt;
          letter-spacing: 10pt;
        }
        .header-wrapper h2 {
          font-size: 10pt;
          letter-spacing: 1pt;
        }
        .home-social {
          display: none;
        }
        .scrolldown {
          display: none;
        }
        .contact .info {
          padding: 50px 0; 
        }
        .resume-list>li .timeline-image {
          border: none;
          background-color: #fafbfc;
        }
        .resume-list>li .timeline-image h4 {
          font-size: 8pt;
          letter-spacing: 1pt;
          margin-top: 20px;
          color: #1b1b1b;
        }
    }