/*Animation elements common characteristics*/
.animation-element {
  opacity: 0;
  position: relative;
  z-index: 1; }

/* ANIMATION FROM LEFT TO RIGHT */
.animation-element.slide-left {
  opacity: 0;
  -moz-transition: all 2000ms ease-in;
  -webkit-transition: all 2000ms ease-in;
  -o-transition: all 2000ms ease-in;
  transition: all 2000ms ease-in;
  -moz-transform: translate3d(-100%, 0px, 0px);
  -webkit-transform: translate3d(-100%, 0px, 0px);
  -o-transform: translate(-100%, 0px);
  -ms-transform: translate(-100%, 0px);
  transform: translate3d(-100%, 0px, 0px); }

.animation-element.slide-left.in-view {
  opacity: 1;
  -moz-transform: translate3d(0%, 0px, 0px);
  -webkit-transform: translate3d(0%, 0px, 0px);
  -o-transform: translate(0%, 0px);
  -ms-transform: translate(0%, 0px);
  transform: translate3d(0%, 0px, 0px); }

/* ANIMATION : FADE FROM BOTTPMM */
.bounce-up {
  opacity: 0;
  -moz-transition: all 1000ms ease-out;
  -webkit-transition: all 1000ms ease-out;
  -o-transition: all 1000ms ease-out;
  transition: all 1000ms ease-out;
  -moz-transform: translate3d(0px, 100px, 0px);
  -webkit-transform: translate3d(0px, 100px, 0px);
  -o-transform: translate(0px, 100px);
  -ms-transform: translate(0px, 100px);
  transform: translate3d(0px, 100px, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden; }

.bounce-up.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px); }

/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform; }

.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  cursor: pointer; }

/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); } }
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); } }
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent; }

.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

/* Bob from http://ianlunn.github.io/Hover/ */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px); }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); } }
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px); }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); } }
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); } }
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px); } }
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent; }

.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate; }

/*loading Screen*/
@keyframes loading {
  0% {
    max-width: 0; } }
@keyframes rotate {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% {
    transform: perspective(120px) rotateX(-180deg) rotateY(0deg); }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg); } }
@keyframes background {
  0% {
    background-color: #27ae60; }
  50% {
    background-color: #9b59b6; }
  100% {
    background-color: #c0392b; } }
/*Welcome Page */
@keyframes from-flip {
  0% {
    transform: rotateX(180deg); }
  100% {
    transform: rotateX(0deg); } }
@keyframes to-flip {
  0% {
    transform: rotateX(0deg); }
  100% {
    transform: rotateX(-180deg); } }
@keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*animation for hello*/
@-webkit-keyframes opacity {
  0%, 100% {
    opacity: 0; }
  50% {
    opacity: 1; } }
@-webkit-keyframes change {
  0%, 12.66%, 100% {
    transform: translate3d(0, 0, 0); }
  16.66%, 29.32% {
    transform: translate3d(0, -25%, 0); }
  33.32%,45.98% {
    transform: translate3d(0, -50%, 0); }
  49.98%,62.64% {
    transform: translate3d(0, -75%, 0); }
  66.64%,79.3% {
    transform: translate3d(0, -50%, 0); }
  83.3%,95.96% {
    transform: translate3d(0, -25%, 0); } }
@-o-keyframes opacity {
  0%, 100% {
    opacity: 0; }
  50% {
    opacity: 1; } }
@-o-keyframes change {
  0%, 12.66%, 100% {
    transform: translate3d(0, 0, 0); }
  16.66%, 29.32% {
    transform: translate3d(0, -25%, 0); }
  33.32%,45.98% {
    transform: translate3d(0, -50%, 0); }
  49.98%,62.64% {
    transform: translate3d(0, -75%, 0); }
  66.64%,79.3% {
    transform: translate3d(0, -50%, 0); }
  83.3%,95.96% {
    transform: translate3d(0, -25%, 0); } }
@-moz-keyframes opacity {
  0%, 100% {
    opacity: 0; }
  50% {
    opacity: 1; } }
@-moz-keyframes change {
  0%, 12.66%, 100% {
    transform: translate3d(0, 0, 0); }
  16.66%, 29.32% {
    transform: translate3d(0, -25%, 0); }
  33.32%,45.98% {
    transform: translate3d(0, -50%, 0); }
  49.98%,62.64% {
    transform: translate3d(0, -75%, 0); }
  66.64%,79.3% {
    transform: translate3d(0, -50%, 0); }
  83.3%,95.96% {
    transform: translate3d(0, -25%, 0); } }
@keyframes opacity {
  0%, 100% {
    opacity: 0; }
  50% {
    opacity: 1; } }
@keyframes change {
  0%, 12.66%, 100% {
    transform: translate3d(0, 0, 0); }
  16.66%, 29.32% {
    transform: translate3d(0, -25%, 0); }
  33.32%,45.98% {
    transform: translate3d(0, -50%, 0); }
  49.98%,62.64% {
    transform: translate3d(0, -75%, 0); }
  66.64%,79.3% {
    transform: translate3d(0, -50%, 0); }
  83.3%,95.96% {
    transform: translate3d(0, -25%, 0); } }
@keyframes fly {
  from {
    transform: translateX(-250px); }
  to {
    transform: translateX(1500px); } }
/* finger pointer */
@keyframes upAndDown {
  from {
    top: 0; }
  to {
    top: 10px; } }
body {
  position: relative;
  background: url(http://eskipaper.com/images/cloud-background-2.jpg) repeat-y center center/cover;
  font-family: "latin_modern_roman10_regular", "Times New Roman", serif;
  font-size: base_font_size;
  margin: 0;
  padding: 0; }

html, body {
  overflow: hidden; }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    html, body {
      overflow: hidden; } }

::-webkit-scrollbar {
  width: 0px;
  /* remove scrollbar space */
  background: transparent;
  /* optional: just make scrollbar invisible */ }

/* optional: show position indicator in red */
::-webkit-scrollbar-thumb {
  background: transparent; }

#loader {
  height: 100vh;
  width: 100%;
  display: block;
  position: fixed;
  top: 0;
  background-color: #adb0b5;
  z-index: 3;
  transition: top 0.5s ease-out 2s; }
  #loader h1 {
    position: relative;
    color: rgba(0, 0, 0, 0.3);
    font-size: 5em;
    text-align: center;
    top: 50%; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #loader h1 {
        height: auto;
        width: 100%;
        display: block;
        position: absolute;
        color: rgba(0, 0, 0, 0.4);
        font-size: 3em; } }
    #loader h1:before {
      content: attr(data-text);
      position: absolute;
      overflow: hidden;
      max-width: 7em;
      white-space: nowrap;
      color: #fff;
      -webkit-animation: loading 4s infinite ease normal none;
      -moz-animation: loading 4s infinite ease normal none;
      -o-animation: loading 4s infinite ease normal none;
      -ms-transition: loading 4s infinite ease normal none;
      animation: loading 4s infinite ease normal none; }
  #loader .spinner {
    height: 60px;
    width: 60px;
    display: block;
    position: absolute;
    margin: 60px;
    top: 30%;
    left: 42%;
    -webkit-animation: rotate 1.4s infinite ease-in-out, background 1.4s infinite ease-in-out alternate;
    animation: rotate 1.4s infinite ease-in-out, background 1.4s infinite ease-in-out alternate; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #loader .spinner {
        height: 8%;
        width: 10%;
        display: block;
        position: absolute;
        margin: 0;
        top: 40%;
        left: 45%; } }

#navigation {
  height: 56px;
  width: 100%;
  display: block;
  position: fixed;
  top: 0;
  z-index: 2; }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    #navigation {
      height: 58px;
      top: auto;
      bottom: 0;
      border-top: 1px solid black;
      background-color: #dddcd4; } }
  #navigation img {
    height: 100%;
    width: 20%;
    display: inline-block;
    position: absolute;
    background-color: transparent;
    left: 0;
    z-index: 1;
    opacity: 0.8; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #navigation img {
        display: none; } }
  #navigation #navbarLinks {
    height: 100%;
    width: 80%;
    display: inline-block;
    position: absolute;
    background-color: rgba(29, 30, 33, 0.9);
    right: 0;
    padding: 0px;
    margin: 0px;
    font: normal normal bold 1.9em/normal "Creepster", Helvetica, sans-serif;
    -o-text-overflow: clip;
    text-overflow: clip;
    text-shadow: 1px 1px 0 #2ecc71, -1px -1px 0 #2ecc71, 1px -1px 0 #2ecc71, -1px 1px 0 #2ecc71;
    -webkit-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1); }
    #navigation #navbarLinks a {
      height: 100%;
      width: 25%;
      display: inline-block;
      position: static;
      padding-top: 0.5em;
      text-decoration: none;
      /*remove underline*/
      text-align: center;
      float: left;
      color: #f2f1ef; }
      #navigation #navbarLinks a .icon {
        margin-right: 0.2em; }
      @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
        #navigation #navbarLinks a {
          position: relative;
          display: block;
          background-color: transparent;
          color: white;
          text-shadow: 1px 1px 0 #161719, -1px -1px 0 #161719, 1px -1px 0 #161719, -1px 1px 0 #161719; } }
      @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
        #navigation #navbarLinks a span {
          display: block;
          font-size: 1.75em;
          padding-bottom: 0.3em;
          font-weight: bold; } }
    #navigation #navbarLinks .active {
      background-color: #dddcd4;
      color: #66ff99; }
      @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
        #navigation #navbarLinks .active {
          background-color: #dddcd4;
          color: #66ff99; } }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #navigation #navbarLinks {
        position: absolute;
        right: 0;
        width: 100%;
        font-size: 0.9em; } }
    @media only screen and (min-width: 600px) and (max-width: 1025px) {
      #navigation #navbarLinks {
        font-size: 1.5em; } }

@media screen and (max-width: 865px) and (min-width: 451px) {
  #navbarLinks {
    font-size: 1.2em; }

  #navbarLinks a {
    padding-top: 1em; } }
/*Footers for each page*/
.page-footer {
  height: 3.5em;
  width: 100%;
  display: block;
  position: fixed;
  bottom: 0;
  background-color: rgba(119, 130, 129, 0.2);
  z-index: 2; }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .page-footer {
      display: none; } }
  .page-footer button {
    height: 100%;
    width: 6em;
    display: block;
    position: relative;
    margin: 0 auto;
    /* this will center  it */
    padding: 0;
    color: white;
    background-color: rgba(119, 130, 129, 0.6);
    font-size: 1em; }
    .page-footer button:hover {
      color: black; }
  .page-footer span {
    display: block;
    /* change this from inline-block */
    font-size: 1.5em; }

/* The content pages*/
.page-container {
  height: 0;
  width: 100%;
  display: block;
  position: relative;
  margin: 0;
  z-index: 0;
  overflow: hidden;
  transition: all 1s ease-out; }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .page-container {
      position: fixed;
      transition: all 0.1s ease-out; } }
  .page-container.right-page {
    left: 100%; }
  .page-container.center-page {
    left: 0% !important; }
  .page-container.left-page {
    left: -100%; }

#page0 {
  background-color: rgba(221, 220, 212, 0.8);
  font-family: "latin_modern_roman10_regular", "Times New Roman", serif; }
  #page0 #logoContainer {
    display: none; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #page0 #logoContainer {
        height: 8%;
        width: 40%;
        display: block;
        position: absolute;
        top: 0;
        z-index: 2; } }
    #page0 #logoContainer #nameLogo {
      height: 100%;
      width: 100%;
      display: block;
      position: static; }
  #page0 #intro_text {
    height: 25%;
    width: 100%;
    display: block;
    position: absolute;
    top: 25%;
    z-index: 2;
    color: black; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #page0 #intro_text {
        position: absolute;
        top: 20%;
        width: 100%; } }
  #page0 h1 {
    text-align: center;
    color: #4d4d4d;
    font-size: 3em;
    padding: 0;
    text-transform: uppercase;
    text-rendering: optimizeLegibility; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #page0 h1 {
        font-size: 2em; } }
  #page0 .underline_keywords {
    text-align: center;
    color: #437ddb;
    font: normal normal bold 1em/normal "Creepster", Helvetica, sans-serif;
    -o-text-overflow: clip;
    text-overflow: clip;
    text-shadow: 1px 1px 0 #727791, -1px -1px 0 #727791, 1px -1px 0 #727791, -1px 1px 0 #727791;
    -webkit-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 2; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #page0 .underline_keywords {
        font-size: 26px; } }

/*Animation for changing  Developer name*/
.counter {
  height: 45px;
  width: 300px;
  display: inline-block;
  position: relative;
  font-size: 65px;
  perspective: 200px;
  top: -7px;
  left: 55px; }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .counter {
      left: 10%; } }
  .counter > span {
    height: 40px;
    width: 240px;
    display: block;
    position: absolute;
    overflow: hidden;
    padding-top: 12px;
    background: linear-gradient(#FFF 0%, #f2f2f2 100%);
    text-align: center;
    backface-visibility: hidden;
    transform-style: preserve-3d; }
    .counter > span span {
      color: #99df1c; }
      @media screen and (-webkit-min-device-pixel-ratio: 0) {
        .counter > span span {
          color: transparent;
          background: linear-gradient(#99df1c 0%, #6dbe0a 100%);
          -webkit-background-clip: text;
          -webkit-text-stroke: 0.03em #85c614; } }
    .counter > span.decor.top {
      box-shadow: 0 24px 43px -3px rgba(0, 0, 0, 0.45); }
    .counter > span.decor.bottom {
      box-shadow: 0 2px 0px -1px #d8d8d8, 0 4px 0px -2px #c7c7c7, 0 6px 0px -3px #d8d8d8, 0 8px 0px -4px #c6c6c6, 0 10px 0px -5px #d6d6d6, 0 12px 0px -6px #c9c9c9, 0 14px 0px -7px #d8d8d8, 0 14px 23px -9px rgba(0, 0, 0, 0.8); }
    .counter > span.top {
      box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.2);
      border-radius: 3px 3px 0 0; }
      .counter > span.top span {
        position: relative;
        bottom: 11px; }
    .counter > span.bottom {
      top: 40px;
      box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.2);
      border-radius: 0 0 3px 3px; }
      .counter > span.bottom span {
        position: relative;
        top: -51px; }
    .counter > span.from.bottom {
      z-index: 1;
      transform-origin: 0% 0%;
      -webkit-animation: from-flip 1s infinite ease normal none;
      -moz-animation: from-flip 1s infinite ease normal none;
      -o-animation: from-flip 1s infinite ease normal none;
      -ms-transition: from-flip 1s infinite ease normal none;
      animation: from-flip 1s infinite ease normal none; }
    .counter > span.to.top {
      z-index: 1;
      transform-origin: 100% 100%;
      -webkit-animation: to-flip 1s infinite ease normal none;
      -moz-animation: to-flip 1s infinite ease normal none;
      -o-animation: to-flip 1s infinite ease normal none;
      -ms-transition: to-flip 1s infinite ease normal none;
      animation: to-flip 1s infinite ease normal none; }
  .counter .shadow {
    height: 45px;
    width: 120px;
    display: block;
    position: static;
    left: -25px;
    top: -100px !important;
    overflow: hidden;
    z-index: 0;
    opacity: 0; }
  .counter .from.top .shadow {
    -webkit-animation: fade-out 1s infinite ease normal none;
    -moz-animation: fade-out 1s infinite ease normal none;
    -o-animation: fade-out 1s infinite ease normal none;
    -ms-transition: fade-out 1s infinite ease normal none;
    animation: fade-out 1s infinite ease normal none; }
  .counter .to.bottom .shadow {
    -webkit-animation: fade-in 1s infinite ease normal none;
    -moz-animation: fade-in 1s infinite ease normal none;
    -o-animation: fade-in 1s infinite ease normal none;
    -ms-transition: fade-in 1s infinite ease normal none;
    animation: fade-in 1s infinite ease normal none; }

.hide .shadow {
  animation: none !important; }

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  #developer {
    height: inherit;
    width: 100%;
    display: block;
    position: relative;
    text-align: center;
    top: 50px;
    font-size: 120%; } }
/*Hello Greatings in intro*/
.content {
  height: 1em;
  position: absolute;
  top: -.2em;
  left: 50%;
  overflow: hidden;
  font-size: 3em;
  line-height: 40px;
  transform: translate(-50%, -50%); }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .content {
      font-size: 2.1em;
      line-height: 35px; } }
  .content .content__container {
    font-weight: 600;
    overflow: hidden;
    height: 1.1em;
    padding: 0 40px; }
    .content .content__container:before {
      content: '[';
      left: 0; }
    .content .content__container:after {
      content: ']';
      position: absolute;
      right: 0; }
    .content .content__container:after, .content .content__container:before {
      position: absolute;
      top: 0;
      color: #16a085;
      font-size: 42px;
      line-height: 40px;
      -webkit-animation: opacity 2s infinite ease normal none;
      -moz-animation: opacity 2s infinite ease normal none;
      -o-animation: opacity 2s infinite ease normal none;
      -ms-transition: opacity 2s infinite ease normal none;
      animation: opacity 2s infinite ease normal none; }
    .content .content__container .content__container__text {
      display: inline;
      float: left;
      margin: 0; }
    .content .content__container .content__container__list {
      margin-top: 0;
      padding-left: 4em;
      text-align: left;
      list-style: none;
      -webkit-animation: change 10s infinite ease normal none;
      -moz-animation: change 10s infinite ease normal none;
      -o-animation: change 10s infinite ease normal none;
      -ms-transition: change 10s infinite ease normal none;
      animation: change 10s infinite ease normal none; }
      @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
        .content .content__container .content__container__list {
          height: 5.4em; } }
      .content .content__container .content__container__list .content__container__list__item {
        line-height: 40px;
        margin: 0; }
        @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
          .content .content__container .content__container__list .content__container__list__item {
            line-height: 38px; } }

/* Section2.Styles for AboutMe from https://codepen.io/SitePoint/pen/warKXE*/
#page1 {
  background: url(https://wallpaperscraft.com/image/line_light_background_bright_43975_2560x1600.jpg) center/cover;
  /*sliding page left and right */
  /* circle icons at top of aboout me */ }
  #page1 #mainCont {
    height: 70%;
    width: 100%;
    display: block;
    position: absolute;
    overflow: hidden;
    bottom: 0;
    font-size: 22px;
    font-family: "latin_modern_roman10_regular", "Times New Roman", serif;
    text-align: center;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #page1 #mainCont {
        bottom: 58px; } }
    @media only screen and (min-width: 600px) and (max-width: 1025px) {
      #page1 #mainCont {
        height: 75%; } }
    #page1 #mainCont .page_slide {
      height: 100%;
      width: 100%;
      display: block;
      position: absolute;
      -webkit-transition: all 0.2s ease-out 0s;
      -moz-transition: all 0.2s ease-out 0s;
      -o-transition: all 0.2s ease-out 0s;
      transition: all 0.2s ease-out 0s; }
      #page1 #mainCont .page_slide.right {
        left: 100%; }
      #page1 #mainCont .page_slide.center {
        left: 0% !important; }
      #page1 #mainCont .page_slide.left {
        left: -100%; }
  #page1 .ch-grid {
    height: 22%;
    width: 100%;
    display: block;
    position: relative;
    list-style: none;
    text-align: center;
    padding: 1em 0 0 0;
    top: 8%; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #page1 .ch-grid {
        height: 64px;
        width: 100%;
        display: flex;
        position: absolute;
        list-style-type: none;
        list-style-position: inside;
        background-color: black;
        padding: 0;
        top: 0;
        /*57px*/
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
        border-bottom: 1px solid white; } }
    #page1 .ch-grid li {
      height: 100px;
      width: 100px;
      display: inline-block;
      position: relative;
      background-image: -webkit-linear-gradient(top, #f4f1ee, #fff);
      background-image: linear-gradient(top, #f4f1ee, #fff);
      border-radius: 50%;
      box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.3), inset 0px 4px 1px 1px white, inset 0px -3px 1px 1px rgba(204, 198, 197, 0.5);
      margin: 1em 0 0 1em;
      /* mobile version of ch-gird*/ }
      @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
        #page1 .ch-grid li {
          height: 100%;
          width: 25%;
          display: inline-block;
          position: static;
          border-radius: 1px;
          left: 0;
          top: 0;
          padding: 0;
          margin: 0; } }
      #page1 .ch-grid li:after {
        text-shadow: 0px -1px 1px #bdb5b4, 1px 1px 1px white; }
      #page1 .ch-grid li .ch-img-1 {
        background-image: url("http://digitallearning.eletsonline.com/wp-content/uploads/2015/05/EngineeringSkills.jpg");
        background-size: cover; }
      #page1 .ch-grid li .ch-img-2 {
        background-image: url("http://worldartsme.com/images/close-to-goal-clipart-1.jpg");
        background-size: cover; }
      #page1 .ch-grid li .ch-img-3 {
        background-image: url("http://images.stockunlimited.net/preview1300/collection-of-hobby-icons_1753303.jpg");
        background-size: cover; }
      #page1 .ch-grid li .ch-img-4 {
        background-image: url("https://i1.wp.com/eventosygraduaciones.com/wp-content/uploads/2017/01/cropped-graduadologo.png?fit=300%2C300");
        background-size: cover; }
      #page1 .ch-grid li .mobile_nav_circle {
        display: none;
        /*hidden the text when in larget screen*/ }
        @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
          #page1 .ch-grid li .mobile_nav_circle {
            height: 100%;
            width: 100%;
            display: inline-block;
            position: static;
            font: normal normal bold 1.4em/normal "Creepster", Helvetica, sans-serif;
            -o-text-overflow: clip;
            text-overflow: clip;
            text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
            -webkit-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
            -moz-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
            -o-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
            transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
            text-align: center;
            margin: 0;
            padding: 7px 0 0 0;
            z-index: 4;
            color: gray;
            -webkit-transition: all 1s ease 0s;
            -moz-transition: all 1s ease 0s;
            -o-transition: all 1s ease 0s;
            transition: all 1s ease 0s; }
            #page1 .ch-grid li .mobile_nav_circle .icon {
              font-size: 1.6em;
              display: block;
              width: 100%;
              text-align: center; }
            #page1 .ch-grid li .mobile_nav_circle.active_timeline {
              color: #66ff99; } }

/* the items within the ch-grid*/
.ch-grid .ch-item {
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  cursor: default;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .ch-grid .ch-item {
      display: none; } }
  .ch-grid .ch-item .ch-info {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    background: #3f9393;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.3;
    box-shadow: inset 0 0 0 3px rgba(74, 75, 76, 0.5), 0 3px 4px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s; }
    .ch-grid .ch-item .ch-info h3 {
      color: #fff;
      letter-spacing: 2px;
      font-size: 1.5em;
      padding-top: 15%;
      font-family: "latin_modern_roman10_regular", "Times New Roman", serif;
      text-shadow: 0 0 1px #fff, 0 1px 2px black; }
  .ch-grid .ch-item:hover {
    cursor: pointer;
    transform: scale(1.2); }
    .ch-grid .ch-item:hover .ch-info {
      transform: scale(1);
      opacity: 1;
      background: rgba(63, 147, 147, 0.7); }
  .ch-grid .ch-item.active_timeline .ch-info {
    opacity: 1;
    background: rgba(67, 76, 89, 0.8); }

/*----------------------------------------------------------------*/
#content0 {
  background: url(https://images7.alphacoders.com/333/333217.jpg) center bottom/cover;
  height: 100%;
  overflow-y: scroll; }
  #content0:before {
    content: '';
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    background-color: rgba(197, 205, 216, 0.8);
    left: 0; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #content0:before {
        height: 65em;
        top: 0; } }
  #content0 .panel {
    height: 80%;
    width: 14em;
    display: inline-block;
    position: relative;
    top: 20px;
    -webkit-perspective: 600px;
    -moz-perspective: 600px;
    background-color: transparent; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #content0 .panel {
        width: 15em;
        height: 15.5em;
        margin: 0; } }
    @media only screen and (min-width: 600px) and (max-width: 1025px) {
      #content0 .panel {
        height: 16em;
        width: 15em; } }
    #content0 .panel .front, #content0 .panel .back, #content0 .panel .back {
      text-align: center; }
    #content0 .panel .front, #content0 .panel .back {
      height: 100%;
      width: 100%;
      display: block;
      position: absolute;
      top: 0;
      z-index: 900;
      -webkit-transform: rotateX(0deg) rotateY(0deg);
      -moz-transform: rotateX(0deg) rotateY(0deg);
      -webkit-transform-style: preserve-3d;
      -moz-transform-style: preserve-3d;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -webkit-transition: all 0.4s ease-in-out 0s;
      -moz-transition: all 0.4s ease-in-out 0s;
      -o-transition: all 0.4s ease-in-out 0s;
      transition: all 0.4s ease-in-out 0s; }
    #content0 .panel .back {
      z-index: 1000;
      -webkit-transform: rotateY(-180deg);
      -moz-transform: rotateY(-180deg); }
    #content0 .panel.flip .front, #content0 .panel.flip .back {
      z-index: 900;
      -webkit-transform: rotateY(180deg);
      -moz-transform: rotateY(180deg); }
    #content0 .panel.flip .back {
      z-index: 1000;
      -webkit-transform: rotateX(0deg) rotateY(0deg);
      -moz-transform: rotateX(0deg) rotateY(0deg); }

.panel .front .skill_headers, #content0 .panel .back .skill_headers {
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 2.5%;
  color: black;
  box-shadow: 0px 20px 30px 3px rgba(0, 0, 0, 0.55); }
  .panel .front .skill_headers main, #content0 .panel .back .skill_headers main {
    position: absolute;
    top: 40%; }
    .panel .front .skill_headers main p, #content0 .panel .back .skill_headers main p {
      padding: 0.1em 0.5em 0.1em 0.5em;
      font-size: 0.8em;
      font-weight: normal;
      background-color: rgba(220, 222, 226, 0.6); }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      .panel .front .skill_headers main, #content0 .panel .back .skill_headers main {
        top: 42%; } }
  .panel .front .skill_headers h1, #content0 .panel .back .skill_headers h1 {
    font-size: 1.2em; }
  .panel .front .skill_headers span, #content0 .panel .back .skill_headers span {
    height: 1em;
    width: 1em;
    display: block;
    position: absolute;
    font-size: 1em;
    top: 45%;
    right: 0; }
.panel .front img, #content0 .panel .back img {
  max-width: 100%;
  width: 50%;
  height: auto; }

.back .box2 {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0px 20px 30px 3px rgba(0, 0, 0, 0.55); }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .back .box2 {
      width: 100%; } }
  .back .box2 ul {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    list-style-type: none;
    text-align: left;
    margin: 0; }
    .back .box2 ul li {
      color: black;
      font-size: 0.9em; }
      .back .box2 ul li:hover {
        background: #eee;
        cursor: pointer; }
        .back .box2 ul li:hover span {
          opacity: 1; }
      .back .box2 ul li span {
        float: right;
        opacity: 0;
        -webkit-transition: all 0.2s ease-in-out 0s;
        -moz-transition: all 0.2s ease-in-out 0s;
        -o-transition: all 0.2s ease-in-out 0s;
        transition: all 0.2s ease-in-out 0s; }
      .back .box2 ul li .glyphicon {
        float: left;
        opacity: 1;
        margin: 3px 1em 0 0; }

#content1 {
  background-color: rgba(94, 239, 242, 0.1);
  overflow-x: scroll;
  /* Timeline - Events */ }
  #content1 .timeline-events {
    width: 90%;
    position: absolute;
    list-style: none;
    white-space: nowrap;
    left: 5%;
    bottom: 20%;
    padding: 0; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #content1 .timeline-events {
        height: 40%;
        width: 100%;
        bottom: 0; } }
    #content1 .timeline-events h2, #content1 .timeline-events h3, #content1 .timeline-events h4 {
      margin: 0 0 1px 0;
      font-weight: normal;
      font-size: 19px; }
      @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
        #content1 .timeline-events h2, #content1 .timeline-events h3, #content1 .timeline-events h4 {
          font-size: 20px; } }
    #content1 .timeline-events h2 {
      color: #777;
      text-transform: uppercase; }
    #content1 .timeline-events h4 {
      color: black;
      font-style: italic; }
    #content1 .timeline-events li {
      height: 40px;
      width: 300px;
      display: inline-block;
      position: relative;
      left: 5px;
      text-align: center; }
      @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
        #content1 .timeline-events li {
          top: 20%;
          width: 70%; } }
      #content1 .timeline-events li:before {
        content: '';
        height: 8px;
        width: 100%;
        display: inline-block;
        position: absolute;
        left: 0;
        bottom: -36px;
        border-radius: 8px; }
      #content1 .timeline-events li:nth-child(1) {
        bottom: 0px; }
        #content1 .timeline-events li:nth-child(1):before {
          background: #C2E34E;
          /* Grey/Green */
          background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #0f0f0f), color-stop(100%, #c2e34e));
          background-image: -moz-linear-gradient(left, #0f0f0f 0%, #c2e34e 100%);
          background-image: -webkit-linear-gradient(left, #0f0f0f 0%, #c2e34e 100%);
          background-image: linear-gradient(to right, #0f0f0f 0%, #c2e34e 100%);
          border-radius: 0 6px 6px 0; }
        #content1 .timeline-events li:nth-child(1) h3 {
          color: #C2E34E; }
      #content1 .timeline-events li:nth-child(2) {
        bottom: 16px; }
        #content1 .timeline-events li:nth-child(2):before {
          background: #FF9704; }
        #content1 .timeline-events li:nth-child(2) h3 {
          color: #FF9704; }
      #content1 .timeline-events li:nth-child(3) {
        bottom: 32px; }
        #content1 .timeline-events li:nth-child(3):before {
          background: #56C2F3; }
        #content1 .timeline-events li:nth-child(3) h3 {
          color: #56C2F3; }
      #content1 .timeline-events li:nth-child(4) {
        bottom: 48px; }
        #content1 .timeline-events li:nth-child(4):before {
          background: #DD3D01; }
        #content1 .timeline-events li:nth-child(4) h3 {
          color: #DD3D01; }
    #content1 .timeline-events .img {
      height: auto;
      width: 80%;
      display: inline-block;
      position: absolute;
      max-width: 100%;
      left: 10%; }
      #content1 .timeline-events .img.img1 {
        top: -260px; }
      #content1 .timeline-events .img.img2 {
        top: -150px; }
      #content1 .timeline-events .img.img3 {
        top: -180px; }
      #content1 .timeline-events .img.img4 {
        top: -220px; }
      @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
        #content1 .timeline-events .img .img1 {
          top: -295px;
          height: 290px; }
        #content1 .timeline-events .img .img2 {
          top: -165px;
          height: 150px; }
        #content1 .timeline-events .img .img3 {
          height: 225px;
          width: 90%;
          left: 5%;
          top: -240px; } }

#content2 {
  overflow-y: scroll; }

/* box style for inside personal interest from https://codepen.io/equinusocio/pen/VYWxXy*/
.card {
  height: 16em;
  width: 12em;
  display: inline-block;
  position: relative;
  margin: 1em 0 0 3%;
  top: 1%;
  overflow: hidden;
  border-radius: 2px;
  background-color: #fafafa;
  box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3), 0 17px 17px 0 rgba(0, 0, 0, 0.15); }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .card {
      margin: 1em;
      width: 12.5em;
      height: 17em; } }
  .card button {
    border: none;
    background: transparent; }
  .card .card__image {
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    background: no-repeat center bottom/cover;
    max-height: 176px;
    overflow: hidden;
    border-radius: 1px 1px 0 0; }
    .card .card__image:after {
      content: "";
      height: 100%;
      width: 100%;
      display: block;
      position: absolute;
      background-color: rgba(0, 0, 0, 0.05); }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      .card .card__image {
        width: 100%; } }
  .card .card__title {
    font-size: 1.2em;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: white;
    position: absolute;
    top: 135px;
    margin: 0;
    padding: 0 16px;
    overflow: hidden; }
  .card .card__text {
    font-size: 0.72em;
    color: #000;
    line-height: 1.4;
    position: absolute;
    margin: 0;
    top: 176px;
    padding: 10px;
    overflow-y: scroll; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      .card .card__text {
        font-size: 0.76em; } }
  .card .card__action-bar {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    padding: 0 8px;
    border-top: 1px solid #E0E0E0;
    box-sizing: border-box;
    height: 52px; }
    .card .card__action-bar .card__button {
      outline: none;
      font-size: 15px;
      color: #FF1744;
      line-height: 52px;
      position: absolute;
      left: 0;
      display: inline-block;
      padding: 0 16px; }

#content3 {
  height: 100%;
  background: url(http://www.ryerson.ca/content/dam/admissions/Ryerson-university-quad-south-view.jpg) no-repeat center/cover;
  overflow-y: scroll; }
  #content3 h1 {
    width: 100%;
    text-align: center;
    color: white;
    position: absolute;
    z-index: 2; }
    @media only screen and (min-width: 600px) and (max-width: 1025px) {
      #content3 h1 {
        font-size: 3em; } }
  #content3::before {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(45, 66, 99, 0.8);
    z-index: 2; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #content3::before {
        height: 35em; } }
    @media only screen and (min-width: 600px) and (max-width: 1025px) {
      #content3::before {
        height: 48em; } }
  #content3 .school_content {
    height: 250px;
    width: 25%;
    display: inline-block;
    position: relative;
    margin: 80px 0 0 5%;
    z-index: 2;
    color: white;
    border-right: 1px solid white; }
    #content3 .school_content .info {
      height: 100%;
      width: 100%;
      display: block;
      position: absolute;
      padding-right: 20%; }
      #content3 .school_content .info p {
        font-size: 0.9em; }
      #content3 .school_content .info .school_icons {
        height: auto;
        width: 50%;
        display: inline;
        position: relative;
        max-width: 100%; }
    @media only screen and (min-width: 320px) and (max-width: 1025px) {
      #content3 .school_content {
        height: 8.5em;
        width: 100%;
        display: block;
        position: relative;
        margin: 0 0 0 0;
        border-bottom: 1px solid white;
        border-top: 1px solid white;
        box-shadow: 0px -5px 30px 16px rgba(0, 0, 0, 0.55); }
        #content3 .school_content .info {
          padding: 0; }
          #content3 .school_content .info h4 {
            width: 100%;
            text-align: center;
            font-size: 1.2em; }
          #content3 .school_content .info p {
            font-size: 0.8em;
            display: inline-block;
            position: absolute;
            width: 75%;
            right: 0;
            text-align: left;
            padding: 0 5% 0 5%; }
          #content3 .school_content .info .school_icons {
            height: auto;
            width: 25%;
            display: inline-block;
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            left: 0; }
        #content3 .school_content.first_school_content {
          margin-top: 4em; }
        #content3 .school_content h1 {
          font-size: 2em; } }
    @media only screen and (min-width: 600px) and (max-width: 1025px) {
      #content3 .school_content {
        height: 13em; }
        #content3 .school_content .info p {
          font-size: 1.5em; }
        #content3 .school_content .info h4 {
          font-size: 2em; }
        #content3 .school_content.first_school_content {
          margin-top: 5em; } }
  #content3 .card_right__button {
    position: relative;
    top: 1.5em;
    z-index: 2; }
    #content3 .card_right__button a {
      background-color: transparent;
      color: #66ff99;
      text-decoration: none;
      border: 2px solid #66ff99;
      padding: 10px;
      font-size: 12px;
      border-radius: 5px;
      -webkit-transition: all 0.5s ease 0s;
      -moz-transition: all 0.5s ease 0s;
      -o-transition: all 0.5s ease 0s;
      transition: all 0.5s ease 0s; }
      #content3 .card_right__button a:hover {
        color: black;
        background-color: #66ff99;
        font-size: 14px;
        cursor: pointer;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s; }

/* Section3. Projects---------------------------*/
#timeline {
  height: 100%;
  display: flex;
  background-color: #031625; }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    #timeline {
      height: auto;
      width: 100%;
      display: block;
      position: absolute;
      top: 0;
      background-color: #031625; } }
  #timeline:hover .tl-item {
    width: 20%; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      #timeline:hover .tl-item {
        height: 8%;
        width: 100%; } }

.tl-item {
  height: 100%;
  width: 25%;
  display: block;
  position: relative;
  overflow: hidden;
  overflow-y: scroll;
  min-height: 600px;
  color: #fff;
  background: url() no-repeat center/cover;
  transform: translate3d(0, 0, 0);
  filter: grayscale(100%);
  -webkit-transition: width 0.5s ease,filter 0.5s ease, height 0.5s ease;
  -moz-transition: width 0.5s ease,filter 0.5s ease, height 0.5s ease;
  -o-transition: width 0.5s ease,filter 0.5s ease, height 0.5s ease;
  transition: width 0.5s ease,filter 0.5s ease, height 0.5s ease; }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .tl-item {
      width: 100%;
      height: 25%;
      min-height: 0px; } }
  .tl-item:before, .tl-item:after {
    content: '';
    height: 55em;
    width: 100%;
    display: block;
    position: absolute;
    transform: translate3d(0, 0, 0);
    left: 0;
    top: 0; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      .tl-item:before, .tl-item:after {
        height: 210%; } }
  .tl-item::after {
    background: rgba(3, 22, 37, 0.3);
    opacity: 1;
    -webkit-transition: opacity 0.5s ease 0s;
    -moz-transition: opacity 0.5s ease 0s;
    -o-transition: opacity 0.5s ease 0s;
    transition: opacity 0.5s ease 0s; }
  .tl-item:before {
    background: linear-gradient(to bottom, black 0%, rgba(53, 58, 66, 0.9) 50%);
    z-index: 1;
    opacity: 0;
    transform: translate3d(0, 0, 0) translateY(50%);
    transition: opacity 0.5s ease, transform 0.5s ease-in; }
  .tl-item:hover {
    width: 40% !important;
    filter: grayscale(0); }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      .tl-item:hover {
        height: 76% !important;
        width: 100% !important; } }
    .tl-item:hover:after {
      opacity: 0; }
    .tl-item:hover:before {
      opacity: 1;
      transform: translate3d(0, 0, 0) translateY(0);
      -webkit-transition: opacity 1s ease, transform 1s ease 0.25s;
      -moz-transition: opacity 1s ease, transform 1s ease 0.25s;
      -o-transition: opacity 1s ease, transform 1s ease 0.25s;
      transition: opacity 1s ease, transform 1s ease 0.25s; }
    .tl-item:hover:hover .tl-content {
      opacity: 1;
      transform: translateY(0);
      -webkit-transition: all 1s ease 0.5s;
      -moz-transition: all 1s ease 0.5s;
      -o-transition: all 1s ease 0.5s;
      transition: all 1s ease 0.5s; }
    .tl-item:hover .tl-year {
      top: 25%;
      -webkit-transition: top 1s ease-out 0s;
      -moz-transition: top 1s ease-out 0s;
      -o-transition: top 1s ease-out 0s;
      transition: top 1s ease-out 0s; }
      @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
        .tl-item:hover .tl-year {
          top: 5%;
          transition: top 1s ease-out; }
          .tl-item:hover .tl-year h1 {
            font-size: 2em;
            width: 8em;
            text-align: center;
            background-color: rgba(66, 244, 119, 0.5); } }
  .tl-item .tl-content {
    position: relative;
    margin: 10px;
    top: 30%;
    z-index: 1;
    text-align: left;
    font-size: 1.2em;
    transform: translate3d(0, 0, 0) translateY(50%);
    opacity: 0; }
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
      .tl-item .tl-content {
        top: 10%; } }
  .tl-item .tl-year {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1; }
    .tl-item .tl-year h1 {
      width: 100%;
      font: normal normal bold 2.5em/normal "Creepster", Helvetica, sans-serif;
      -o-text-overflow: clip;
      text-overflow: clip;
      text-shadow: 1px 1px 0 black, -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black;
      -webkit-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
      -moz-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
      -o-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
      transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1);
      -webkit-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1) 0s;
      -moz-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1) 0s;
      -o-transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1) 0s;
      transition: text-shadow 500ms cubic-bezier(0.42, 0, 0.58, 1) 0s;
      -webkit-transition: background-color 1s ease 0s;
      -moz-transition: background-color 1s ease 0s;
      -o-transition: background-color 1s ease 0s;
      transition: background-color 1s ease 0s; }
      @media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
        .tl-item .tl-year h1 {
          font-size: 1.7em;
          background-color: #42f477; } }

/* Last Section Contact Info */
#page3 {
  background-color: rgba(248, 248, 248, 0.8); }

#animationSpace {
  height: 20%;
  width: 100%;
  display: block;
  position: absolute;
  background-color: transparent;
  top: 10%; }
  #animationSpace img {
    height: 90px;
    width: 250px;
    display: block;
    position: absolute;
    top: 6%;
    opacity: 0.8;
    -webkit-animation: fly 15s infinite linear normal both;
    -moz-animation: fly 15s infinite linear normal both;
    -o-animation: fly 15s infinite linear normal both;
    -ms-transition: fly 15s infinite linear normal both;
    animation: fly 15s infinite linear normal both; }

.contact-info {
  position: relative;
  top: 35%;
  font-family: "latin_modern_roman10_regular", "Times New Roman", serif; }
  .contact-info h1 {
    text-align: center;
    font-size: 350%; }
  .contact-info h3 {
    text-align: center; }
    .contact-info h3 span {
      position: relative;
      top: 5px;
      display: inline-block;
      font-size: 1em;
      padding: 0 5px 0 0; }
  .contact-info .glyphicon.glyphicon-hand-down {
    height: auto;
    width: auto;
    display: block;
    position: relative;
    font-size: 250%;
    text-align: center;
    top: 0;
    -webkit-animation: upAndDown 1s infinite ease alternate none;
    -moz-animation: upAndDown 1s infinite ease alternate none;
    -o-animation: upAndDown 1s infinite ease alternate none;
    -ms-transition: upAndDown 1s infinite ease alternate none;
    animation: upAndDown 1s infinite ease alternate none; }
  .contact-info .list-inline {
    margin: auto;
    text-align: center; }
    .contact-info .list-inline li {
      height: 50px;
      width: 50px;
      display: inline-block;
      position: static;
      background-color: rgba(248, 248, 248, 0.8);
      margin-left: 5px;
      text-align: center;
      border: solid #c6c9ce;
      border-radius: 50%; }
      .contact-info .list-inline li:hover {
        border-color: rgba(78, 79, 81, 0.8); }
      .contact-info .list-inline li a {
        text-decoration: none;
        font-size: 250%;
        position: relative;
        top: 6px;
        color: #63666b; }

/*# sourceMappingURL=style.css.map */
