/* */
body {}
/* setups */
h1,h3 { font-family: 'source_sans_proregular', Arial, Helvetica, sans-serif; font-weight:normal;}
p { font-family: 'source_sans_proregular', Arial, Helvetica, sans-serif;}
p.lead { font-family: 'source_sans_probold', Arial, Helvetica, sans-serif; font-weight:normal;}

/* adjustments */
.topMarged { margin-top:3rem;}
.colorDarkG { color:#444;}
.colorGray { color:#666;}
.colorLightG { color:#777;}
.bgGray { background-color:#444; color:#DDD;}
.bgLightG { background-color:#EEE;}

.fullpadded { padding:1rem 1rem 0.2rem 1rem;}

/* nav */
.langs { margin:0.3rem !important;}

/* scroll down icon */

.mouse-scroll {
  display: inline-block;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0;
  text-decoration: none;
  -webkit-animation: fadeIn 2s ease-in;
          animation: fadeIn 2s ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.mouse-scroll .mouse-cord {
  margin: 0 auto;
  position: relative;
  width: 12px;
  height: 12px;
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-top-left-radius: 50px;
  margin-left: 50%;
  display: block;
  -webkit-animation: all 500ms ease-in-out;
          animation: all 500ms ease-in-out;
}
.mouse-scroll .mouse {
  position: relative;
  display: block;
  width: 20px;
  height: 30px;
  margin: 0 auto 5px;
  box-sizing: border-box;
  border: 1px solid white;
  border-radius: 23px;
}
.mouse-scroll .mouse .mouse-movement {
  position: absolute;
  display: block;
  top: 20%;
  left: 50%;
  width: 2px;
  height: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #FFF;
  border-radius: 4px;
  -webkit-animation: scroll-ani 2.5s ease-in-out infinite;
          animation: scroll-ani 2.5s ease-in-out infinite;
}
.mouse-scroll .mouse-message {
  opacity: 0;
  text-transform: uppercase;
  color: white;
  -webkit-animation: fadeOut 500ms ease-in-out;
          animation: fadeOut 500ms ease-in-out;
}
.mouse-scroll:hover .mouse-message {
  opacity: 1;
  -webkit-animation: fadeIn 500ms ease-in-out;
          animation: fadeIn 500ms ease-in-out;
}
@-webkit-keyframes scroll-ani {
  0% {
    top: 29%;
    opacity: 0;
    height: 2px;
  }
  20% {
    top: 29%;
    opacity: 1;
  }
  60% {
    top: 50%;
    height: 6px;
  }
  80% {
    top: 50%;
    opacity: 0;
    height: 6px;
  }
  100% {
    top: 29%;
    opacity: 0;
    height: 2px;
  }
}
@keyframes scroll-ani {
  0% {
    top: 25%;
    opacity: 0;
    height: 2px;
  }
  20% {
    top: 25%;
    opacity: 1;
  }
  60% {
    top: 40%;
    height: 6px;
  }
  80% {
    top: 40%;
    opacity: 0;
    height: 6px;
  }
  100% {
    top: 25%;
    opacity: 0;
    height: 2px;
  }
}
@-webkit-keyframes scroll-ani-reverse {
  0% {
    top: 60%;
    opacity: 0;
    height: 2px;
  }
  20% {
    top: 60%;
    opacity: 1;
  }
  60% {
    top: 25%;
    height: 6px;
  }
  80% {
    top: 25%;
    opacity: 0;
    height: 6px;
  }
  100% {
    top: 60%;
    opacity: 0;
    height: 2px;
  }
}
@keyframes scroll-ani-reverse {
  0% {
    top: 60%;
    opacity: 0;
    height: 2px;
  }
  20% {
    top: 60%;
    opacity: 1;
  }
  60% {
    top: 25%;
    height: 6px;
  }
  80% {
    top: 25%;
    opacity: 0;
    height: 6px;
  }
  100% {
    top: 60%;
    opacity: 0;
    height: 2px;
  }
}
@media (max-width: 700px) {
  .mouse-scroll .mouse {
    border-radius: 4px;
  }
  .mouse-scroll .mouse .mouse-movement {
    -webkit-animation: scroll-ani-reverse 2.5s ease-in-out infinite;
            animation: scroll-ani-reverse 2.5s ease-in-out infinite;
  }
  .mouse-scroll .mouse-cord {
    display: none;
  }
}