/* VirtualTekPh Freelance v1.0 */

/* Global Styling */
html, body {
  background-color: #fefefe;
  color: #696767;
  font-family: 'Trocchi', serif;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.clearfix::before, .clearfix::after {
  content: " ";
  display: table;
  clear: both;
}

header, nav, aside, main, section, article, footer {
  display: block;	
}

a {
  color: #696767;
  text-decoration: none;	
}

h1 {
  font-size: 64px;
  color: #fff;
}

footer {
  text-align: center;
  font-size: 12px;  
}

ul {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}

section {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6em;
}

nav img {
  border-radius: 1%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

section a {
  color: #13a302;
}

section a:hover {
  color: #e37f02;
  text-decoration: underline;  
}

/* Special */
input[type="text"], input[type="email"] {
  font-family: 'Trocchi', serif;
  width: 100%;
  padding: 16px 8px;
  font-size: 16px;
  display: block;
  border: none;
  border-bottom: 1px solid #a2a2a2;
  overflow: visible;
  background-color:  #fefefe;
}

textarea {
  font-family: 'Trocchi', serif;
  width: 100%;  
  padding: 16px 8px 0 8px;
  font-size: 16px;
  display: block;
  border: none;
  border-bottom: 1px solid #a2a2a2;
  overflow: visible;
  background-color:  #fefefe;
}

input:focus, textarea:focus {
  background-color: #f1f1f1;
}

.submitbtn, .resetbtn {
  color: inherit;
}

#dlbtn, .submitbtn, .resetbtn {
  padding: 16px 30px;
  border: none;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  box-shadow: 0 8px 6px -6px #000; 
  font-family: 'Trocchi', serif;
  background-color: #e8e7e7;
}

#dlbtn:hover, .submitbtn:hover, .resetbtn:hover {
  background-color: rgba(125, 123, 123 , 0.5);
  color: #FFF;
}

.biz {
  color: rgba(255, 255, 255, 0.3); /* #fad47d */
  margin-top: 15px;
}

.showHide {
  display: none;	
}

hr.style {
  border-top: 1px solid rgba(227, 127, 2, 0.6);
  border-bottom: 1px solid rgba(227, 127, 2, 0.1);
  text-align: left;
  margin: 20px 0;
  width: 250px;
}

.txt-grey, .exp, #dlbtn {
  color: #757575; /* #757575 */	
}

.bar {
  line-height: 28px;
  font-weight: 700;
  background-color: #f1f1f1; /* background-color: #616161; */
  height: 28px;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.75);
  position: relative;
  text-align: center;
  width: 100%;
}

.bar > span {
  display: block;
  height: 100%;
  background-color: rgba(20, 151, 4, 1.0);
  color: #fff; /* #696767 */
  overflow: hidden;
  padding-left: 10px;
}

.exp {
  /* color: #6b6868 */
  /* background-color: #f1f1f1; */
  margin-top: 100px;
  padding: 10px 0;
}

.wide {
  letter-spacing: 4px;	
}

.stop {
  margin-top: 25px;
} 

.bun {
  margin: 16px 0;	
}

.space {
  margin: 20px 0 3px 0;
}

.mtop {
  margin-top: 50px;
}

.pads-64 {
  padding-top: 64px;
}

.marL {
  margin-left: 25px;
}

.heads5 {
  margin-top: -18px !important;	
  padding-top: 0 !important;
  padding-bottom: 160px !important;
}

.headLite {
  color: rgba(232, 230, 230, 0.8);
}

/* Animation */
.typeMe {
  overflow: hidden;
  border-right: 2px solid transparent;
  white-space: nowrap;
  margin: inherit auto;
  color: #fff;
  animation: 
    typing 5s steps(50),
    caret-blink 10s;
}

@keyframes typing {
  from { width: 0 }
  to { width: 90% }
}

@keyframes caret-blink {
  from, to { border-color: transparent }
  2% { border-color: rgba(255, 255, 255, 0.75) }
}

.bounceMe2 {
  color: #fff;
  -webkit-animation: bounceInLeft 8s;
          animation: bounceInLeft 8s;
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,

  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    filter: alpha(opacity=10);
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.pulseMe {
  -webkit-animation: pulse 2s linear infinite;
          animation: pulse 2s linear infinite;
}

@-webkit-keyframes pulse {
  0% {color: rgba(255, 255, 255, 0.2);}
  20% {color: rgba(255, 255, 255, 0.4);}
  30% {color: rgba(255, 255, 255, 0.6);}
  40% {color: rgba(255, 255, 255, 0.8);}
  50% {color: rgba(255, 255, 255, 1);}
  60% {color: rgba(255, 255, 255, 0.8);}
  70% {color: rgba(255, 255, 255, 0.6);}
  80% {color: rgba(255, 255, 255, 0.4);}  
  100% {color: rgba(255, 255, 255, 0.2);}
}

@keyframes pulse {
  0% {color: rgba(255, 255, 255, 0.2);}
  20% {color: rgba(255, 255, 255, 0.4);}
  30% {color: rgba(255, 255, 255, 0.6);}
  40% {color: rgba(255, 255, 255, 0.8);}
  50% {color: rgba(255, 255, 255, 1);}
  60% {color: rgba(255, 255, 255, 0.8);}
  70% {color: rgba(255, 255, 255, 0.6);}
  80% {color: rgba(255, 255, 255, 0.4);}  
  100% {color: rgba(255, 255, 255, 0.2);}
}

.stripes span {
  background-size: 30px 30px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
  transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);            
  animation: animate-stripes 3s linear infinite;             
}

@keyframes animate-stripes {
  0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}

/* Nav Bar  */
.sidenav {
  background-color: rgba(254, 254, 254, 1.0);
  border-right: 1px solid rgba(187, 185, 185, 0.1);
  height: 100%;
  width: 120px;
  position: fixed;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 2px 5px 0 rgba(125, 121, 125, .16), 0 2px 10px 0 rgba(125, 121, 125, .12);
}

.side-block {
  cursor: pointer;	
  display: block;
  margin: 1px auto;
  padding: 20px 0 10px 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.side-block:hover {
  background-color: rgba(244, 244, 244, 0.8); /* #626567 */
  color: #13a302;
}

.xlarge {
  font-size: 26px;
}

.active {
  background-color: rgba(244, 244, 244, 0.8);
  color: #13a302;    
}

/* Header + Body */
main {
  width: 92.5%;
  margin: 0 0 0 120px;
  text-align: justify;
}

h5 a {
  color: inherit;  
}

#jumbo {
  background: url("../images/mainBg.jpg") no-repeat center center;
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;   
}

.boxTop, .boxBtm {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}

.boxBtm {
  margin-top: 10%;  
}

.blur {
  background-color: rgba( 0, 0, 0, 0.7);
  text-align: center;
}

.blur > h1, .blur > p {
  margin: 0;
}

.blur {
  padding: 150px 0 60px 0;	
}

.blur > p {
  padding: 20px 0 175px 0;
}

/* Content Area */
.container-block {
  width: 70%;
  margin: 25px auto 5px auto;
}

.container-block img {
  width: 100%;
  margin-top: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.exp-block {
  background-color: rgba(241, 241, 241, 0.3);
  padding-bottom: 50px;
  border-top: 1px solid rgba(241, 241, 241, 0.5);
  border-bottom: 1px solid rgba(241, 241, 241, 0.5);
}

/* Portfolio */
.portfolio-block {
  width: 100%;
  margin-top: 50px;
}

.portfolio-imgBox {
  float: left;
  width: 18%;
}

.portfolio-txtBox {
  float: left;  
  width: 82%;
}

img.portfolio-img {
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 0;
}

blockquote {
  font-family: Georgia, serif;
  position: relative;
  margin: 0.5em;
  padding: 0.5em 2em 0.5em 3em;
}
/* Thanks: http://callmenick.com/post/styling-blockquotes-with-css-pseudo-classes */
blockquote::before {
  font-family: Georgia, serif;
  position: absolute;
  font-size: 6em;
  line-height: 1;
  top: 0;
  left: 0;
  content: "\201C";
}
blockquote::after {
  font-family: Georgia, serif;
  position: absolute;
  /* display: block; don't use this, it raised the quote too high from the bottom - defeated line-height? */
  float: right;
  font-size: 6em;
  line-height: 1;
  right: 0;
  bottom: -0.5em;
  content: "\201D";
}
blockquote footer {
  padding: 0 2em 0 0;
  text-align: right;
  font-size: 13px;
  margin-top: 25px;
}
blockquote cite::before {
  content: "\2013";
}

/* Footer */
.footBg {
  background-color: #000;
  padding: 10px 0;
}

/* Width 768  */
@media only screen and (max-width: 800px) {
  .sidenav {
    height: 95px;
    width: 100%;
    float: left;
    position: fixed;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }

  .side-block {
  	padding: 10px 0 10px 0;
    width: 25%;
    float: left;
  }

  .sidenav img {
    display: none;
  }

  main {
    width: 100%;
    margin: 1px auto;
  }

  #jumbo {
    background: url("../images/smallBg.jpg") no-repeat center center;
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
  }

  .typeMe {
    white-space: normal;  
  }

  .boxBtm {
    margin-top: 18%;
  }

  .blur {
    padding: 160px 0 30px 0;
  }

  .blur > p {
    padding: 30px 0 200px 0;
  }

  .showHide {
    display: none;	
  }

  h2 {
    text-align: center;	
  }

  hr.style {
    margin: 20px auto;
  }

  #dlbtn, .submitbtn, .resetbtn {
    width: 100%; 
  }

  .resetbtn {
    margin-top: 10px;  
  }

  .portfolio-imgBox {
    float: none;
    width: 100%;
  }

  img.portfolio-img {
    display: block;
    margin: 0 auto 25px auto;
  }

  .portfolio-txtBox {
    float: none;  
    width: 100%;
  }
}

/* Width 568  */
@media only screen and (max-width: 600px) {
  .sidenav {
  	float: none;
    width: 100%;
    height: auto;
    position: static;
  }

  .side-block {
  	float: none;
  	width: 100%;
  	padding: 10px 0 10px 37%;
  	border-bottom: 1px solid rgba(59, 61, 59, 0.4);
    box-shadow: 0 2px 5px 0 rgba(125, 121, 125, .16), 0 2px 10px 0 rgba(125, 121, 125, .12);
  	text-align: left;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }

  .side-block > p {
    display: inline;
    padding-left: 5%;
  }

  .sidenav > img {
    display: none;
  }

  .xlarge {
    font-size: 20px;
  }

  main {
    width: 100%;
    margin: 1px auto;
  }

  #jumbo {
    background: url("../images/smallBg.jpg") no-repeat center center;
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
  }

  .typeMe {
    white-space: normal;  
  }

  .blur {
    padding: 5px 0 20px 0;
  }

  .blur > p {
    padding: 25px 0 80px 0;
  }

  .boxTop img {
    margin-top: 50px;
  }
  
  .showHide {
    display: block;
  }

  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgba(255, 0, 0, 0.4);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    -webkit-transition: opacity 1s ease-in-out;
            transition: opacity 1s ease-in-out;
  }

  #myBtn:hover {
    opacity: 1.0;
    filter: alpha(opacity=100);  
    background-color: rgba(37, 108, 26, .8);
    -webkit-transition: opacity .55s ease-in-out;
            transition: opacity .55s ease-in-out;
  }

  h2 {
    text-align: center;	
  }

  hr.style {
    margin: 20px auto;
  }

  .pads-64 {
    padding-top: 1px;
  }
  
  #dlbtn, .submitbtn, .resetbtn {
    width: 100%; 
  }
  
  .resetbtn {
    margin-top: 10px;  
  }
  
  .portfolio-imgBox {
    float: none;
    width: 100%;
  }

  img.portfolio-img {
    display: block;
    margin: 0 auto 25px auto;
  }

  .portfolio-txtBox {
    float: none;  
    width: 100%;
  }
}
/* End */



