body{
  background: #222;
  -webkit-backface-visibility: hidden;
}

html,
body{
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #222222;
  margin:0;
  padding:0;
  line-height: 1.45;
}

p {
  margin-bottom: 1.3em;
}

p:last-child {
  margin-bottom: 0;
}

h1, h2, h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

h1 {
  font-size: 2.875em;
}

h2 {
  font-size: 2.618em;
}

h3 {
  font-size: 1.618em;
}

small, .font_small {
  font-size: 0.618em;
}

@media (max-width: 767px){
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 1.5em;
  }
  h3 {
    font-size: 1.333em;
  }
}

.barba-container{
  background-color: #fff;
  overflow: hidden;
}

#preload{
  width: 100%;
  height: 100%;
  background: #222;
  position: fixed;
  z-index: 9999;
  animation-duration: 0.15s;
}

.loader {
  font-size: 100px;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loaderDot {
  -webkit-animation: bob 3s infinite ease-in-out;
  animation: bob 3s infinite ease-in-out;
  border-radius: 50%;
  height: 1em;
  margin-top: -.5em;
  margin-left: -.5em;
  mix-blend-mode: screen;
  position: absolute;
  width: 1em;
}

.loaderDot-r {
  -webkit-animation-name: bob-r;
  animation-name: bob-r;
  background: rgba(255, 0, 0, 0.5);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255, 0, 0, 0.5)), color-stop(100%, red));
  background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 0, 0, 0.5) 0%, red 100%);
  background: -webkit-radial-gradient(center ellipse, rgba(255, 0, 0, 0.5) 0%, #ff0000 100%);
  background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.5) 0%, #ff0000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#ff0000', GradientType=1 );
}

.loaderDot-g {
  -webkit-animation-name: bob-g;
  animation-name: bob-g;
  background: rgba(0, 255, 0, 0.5);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(0, 255, 0, 0.5)), color-stop(100%, lime));
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 255, 0, 0.5) 0%, lime 100%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 255, 0, 0.5) 0%, #00ff00 100%);
  background: radial-gradient(ellipse at center, rgba(0, 255, 0, 0.5) 0%, #00ff00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ff00', endColorstr='#00ff00', GradientType=1 );
}

.loaderDot-b {
  -webkit-animation-name: bob-b;
  animation-name: bob-b;
  background: rgba(0, 0, 255, 0.5);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(0, 0, 255, 0.5)), color-stop(100%, blue));
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 255, 0.5) 0%, blue 100%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 255, 0.5) 0%, #0000ff 100%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 255, 0.5) 0%, #0000ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000ff', endColorstr='#0000ff', GradientType=1 );
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes bob-r {
  0% {
    -webkit-transform: translateY(-1%);
    transform: translateY(-1%);
  }
  50% {
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
  }
  100% {
    -webkit-transform: translateY(-1%);
    transform: translateY(-1%);
  }
}
@keyframes bob-r {
  0% {
    -webkit-transform: translateY(-1%);
    transform: translateY(-1%);
  }
  50% {
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
  }
  100% {
    -webkit-transform: translateY(-1%);
    transform: translateY(-1%);
  }
}
@-webkit-keyframes bob-g {
  0% {
    -webkit-transform: rotate(120deg) translateY(-1%);
    transform: rotate(120deg) translateY(-1%);
  }
  50% {
    -webkit-transform: rotate(120deg) translateY(-15%);
    transform: rotate(120deg) translateY(-15%);
  }
  100% {
    -webkit-transform: rotate(120deg) translateY(-1%);
    transform: rotate(120deg) translateY(-1%);
  }
}
@keyframes bob-g {
  0% {
    -webkit-transform: rotate(120deg) translateY(-1%);
    transform: rotate(120deg) translateY(-1%);
  }
  50% {
    -webkit-transform: rotate(120deg) translateY(-15%);
    transform: rotate(120deg) translateY(-15%);
  }
  100% {
    -webkit-transform: rotate(120deg) translateY(-1%);
    transform: rotate(120deg) translateY(-1%);
  }
}
@-webkit-keyframes bob-b {
  0% {
    -webkit-transform: rotate(-120deg) translateY(-1%);
    transform: rotate(-120deg) translateY(-1%);
  }
  50% {
    -webkit-transform: rotate(-120deg) translateY(-15%);
    transform: rotate(-120deg) translateY(-15%);
  }
  100% {
    -webkit-transform: rotate(-120deg) translateY(-1%);
    transform: rotate(-120deg) translateY(-1%);
  }
}
@keyframes bob-b {
  0% {
    -webkit-transform: rotate(-120deg) translateY(-1%);
    transform: rotate(-120deg) translateY(-1%);
  }
  50% {
    -webkit-transform: rotate(-120deg) translateY(-15%);
    transform: rotate(-120deg) translateY(-15%);
  }
  100% {
    -webkit-transform: rotate(-120deg) translateY(-1%);
    transform: rotate(-120deg) translateY(-1%);
  }
}

#hero-container{
  background-size: cover;
  background-position: center;
  display: block;
  position: relative;
  height: 85vh;
  width: 100vw;
  overflow: hidden;
  background-color: #222;
}

@media (min-width: 768px){
  #hero-container{
    height: 100vh;
  }
}

#hero-container h1{
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

#hero-container h2{
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
}

#videoOverlay{
  margin-top: 20px;
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 50%;
  left: 50%;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  text-shadow: 2px 2px 4px rgba(34,34,34,0.25), -2px 2px 4px rgba(34,34,34,0.25), 2px -2px 4px rgba(34,34,34,0.25), -2px -2px 4px rgba(34,34,34,0.25);
}

#videoOverlay h1{
  font-size: 3.5em;
}
#videoOverlay h2{
  font-size: 2.25em;
}

#landingVideo{
  position: absolute;
  /*mix-blend-mode: hard-light;*/
  top: 0;
}

#overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
#screen-overlay{
  width: 100%;
  height: 100%;
  background: #222;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
}

.container{
  padding-top: 50px;
  padding-bottom: 50px;
}

.header {
  background-color: #222;
  color: #fff;
  position: relative;
  padding: 0;
  background-size: cover;
  background-position: center;
}
.header.error{
  height: 100vh;
  max-height: 550px;
  font-size: 1.2rem;
}

@media (min-width: 768px) and (max-width: 991px){
  .header.error{
    max-height: 800px;
  }
}
@media (min-width: 992px){
  .header.error{
    max-height: 1000px;
  }

}
.main-title {
  font-weight: 500;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  z-index: 2;
  position: relative;
}
.main-title img{
  display: block;
  height: 100px;
  margin: 0 auto;
}
.header .container-fluid{
  margin: 0;
  width: 100%;
}
.header.error .container-fluid{
  bottom: 0;
  position: absolute;
}

.header .container{
  padding-top: 30px;
  padding-bottom: 30px;
}
.canvas-wrap {
  max-width: 100%;
  overflow: hidden;
  z-index: 99;
}
canvas {
  display: block;
}

#webgl-canvas{
  position: absolute;
  top: 0;
}


.no-gutter>[class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.showcase-item{
  border: 1px solid white;
}

.showcase-item-content{
  width: 100%;
  height: 180px;
}

.showcase-item-content a{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(34, 34, 34, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0.75;
  mix-blend-mode: hard-light;
  transition: 0.15s ease-in-out;
}

.showcase-item:hover .overlay-mask{
  height: 100%;
}

.overlay img{
  max-height: 80px;
  max-width: 80%;
  z-index: 2;
}

@media (max-width: 991px){
  .showcase-item:nth-child(2n+2){
    border-right: 0;
  }
  .showcase-item:nth-child(2n+1){
    border-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  .showcase-item-content{
    height: 300px;
  }

}
@media (min-width: 992px){
  .showcase-item:nth-child(3n+3){
    border-right: 0;
  }
  .showcase-item:nth-child(3n+1){
    border-left: 0;
  }
  .showcase-item-content{
    height: 350px;
  }

}

footer{
  background: #222;
  color: #fff;
  border-top: 1px solid white;
}

.connect-icons{
  margin: 20px 10px;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
  margin-left: 2%;
  margin-right: 2%;
  width: 95%;
  display: inline-block;
}

.form-group.half {
  width: 45%;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 5px 0px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid lightgrey;
  background-color: #222;
}

.form-group textarea{
  height: 5rem;
  resize: none;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-bottom: 1px solid grey;
}

.form-group input.invalid, .form-group textarea.invalid {
  border-bottom: 1px solid #ff0000;
}

.form-group label.invalid {
  display: none !important;
}

label {
  position: absolute;
  top: -1rem;
  left: 0;
  font-size: 11px;
  color: #a9a9a9;
  transition: all 0.1s linear;
  opacity: 0;
  font-weight: 300;
  padding: 0px;
}

label.on {
  color: #fff;
}

label.show {
  top: -1.25rem;
  opacity: 1;
}

form{
  margin-bottom: 2rem;
}

.submit-button {
  outline: none;
  text-align: center;
  padding: 5px 15px;
  width: 135px;
  border-radius: 40px;
  background: none;
  margin: 0 auto;
  display: block;
  border: 2px solid #fff;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 1px;
  text-shadow: none;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.submit-button:hover {
  color: #222;
  background-color: #fff;
}

.submit-button:before {
  font-family: 'FontAwesome';
  content: "\f1d9";
  margin-right: 8px;
}

.submit-button:after {
  content: "Submit";
}

.submit-button.onclic {
  width: 40px;
  height: 40px;
  border-color: rgba(255, 255, 255, 0.25);
  border-width: 3px;
  font-size: 0;
  border-left-color: #00ff00;
  -webkit-animation: rotating 2s 0.25s linear infinite;
  animation: rotating 2s 0.25s linear infinite;
}

.submit-button.onclic:before {
  content: "";
}

.submit-button.onclic:after {
  content: "";
}

.submit-button.onclic:hover {
  background-color: #222222;
}

.submit-button.validate {
  font-size: 14px;
  color: white;
  background-color: #0000ff;
}

.submit-button.validate:before {
  font-family: 'FontAwesome';
  content: "\f00c";
  margin-right: 6px;
}

.submit-button.validate:after {
  content: "Sent";
}

.submit-button.error {
  color: #fff;
  background-color: #ff0000 !important;
  border-color: #ff0000;
}

.submit-button.error:before {
  font-family: 'FontAwesome';
  content: "\f12a";
  margin-right: 6px;
}

.submit-button.error:after {
  content: "Error";
}

.submit-button.invalid {
  width: 175px;
  color: #424242;
  background-color: #ffff00 !important;
  border-color: #ffff00;
}

.submit-button.invalid:before {
  font-family: 'FontAwesome';
  content: "\f12a";
  margin-right: 6px;
}

.submit-button.invalid:after {
  content: "Check Fields";
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

::-moz-selection {
  background: #222;
  color: #fff;
}
::selection {
  background: #222;
  color: #fff;
}
/* add text alignments */
.text-xs-left {
  text-align: left
}
.text-xs-right {
  text-align: right
}
.text-xs-center {
  text-align: center
}
.text-xs-justify {
  text-align: justify
}
@media (min-width:768px) {
  .text-sm-left {
    text-align: left
  }
  .text-sm-right {
    text-align: right
  }
  .text-sm-center {
    text-align: center
  }
  .text-sm-justify {
    text-align: justify
  }
}
@media (min-width:992px) {
  .text-md-left {
    text-align: left
  }
  .text-md-right {
    text-align: right
  }
  .text-md-center {
    text-align: center
  }
  .text-md-justify {
    text-align: justify
  }
}
@media (min-width:1200px) {
  .text-lg-left {
    text-align: left
  }
  .text-lg-right {
    text-align: right
  }
  .text-lg-center {
    text-align: center
  }
  .text-lg-justify {
    text-align: justify
  }
}

.navbar {
  z-index: 9;
  border: 0;
}

.navbar-brand {
  float: left;
  font-weight: 500;
  color: white;
  font-size: 2rem;
  display: block;
  height: inherit;
  padding: 0;
  position: relative;
  margin: 0 !important;
}

/*  Fly-Over-Menu */
.navigation-check {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.navigation-click-guard {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  /*background: rgba(0, 0, 0, 0.2);*/
}

.navigation-btn {
  margin: 0;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-transition: background 0.2s cubic-bezier(0, 0, 0.2, 1);
  transition: background 0.2s cubic-bezier(0, 0, 0.2, 1);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 400;
  text-shadow: -1px -1px 8px rgba(0, 0, 0, 0.25), 1px -1px 8px rgba(0, 0, 0, 0.25), -1px 1px 8px rgba(0, 0, 0, 0.25), 1px 1px 8px rgba(0, 0, 0, 0.25);
}

.navigation-btn:hover,
.navigation-btn:active,
.navigation-btn:focus {
  background: rgba(255, 255, 255, 0.25);
}

.navigation-btn-close {
  padding: 0.5rem 2rem;
  color: #4d4d4d;
  font-size: 2rem;
  text-shadow: none;
}

#navigation-overlay {
  background-color: rgba(34, 34, 34, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#navigation-content {
  padding: 3rem 2rem;
  z-index: 2;
  position: relative;
}

.navigation-container {
  text-align: right;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 0;
  -webkit-transition: visibility 0s cubic-bezier(0, 0, 0.2, 1), max-width 0.2s cubic-bezier(0, 0, 0.2, 1), opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  transition: visibility 0s cubic-bezier(0, 0, 0.2, 1), max-width 0.2s cubic-bezier(0, 0, 0.2, 1), opacity 0.3s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  color: #4d4d4d;
  background: rgba(34, 34, 34, 0.9);
  will-change: visibility, opacity, max-width, width;
  visibility: hidden;
  opacity: 0;
}

.showmenu {
  visibility: visible;
  max-width: 475px;
  opacity: 1;
}

.navigation-list {
  margin: 0;
  padding: 0 2rem;
  list-style: none;
  white-space: pre-line;
}

.navigation-item {
  display: inline-block;
  padding: 0 0px 30px;
  white-space: normal;
}

.navbar-toggle .icon-bar {
  background-color: #fff;
  height: 2px;
}

.navbar-toggle {
  display: block;
  float: right;
}

.navigation-item a, .navbar-brand {
  display: inline-block;
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: all 250ms ease;
  transform: translatez(0);
  perspective: 500px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.navigation-item a{
  color: rgba(255,255,255,0.8);
}

.navigation-item a:hover{
  color: rgba(255,255,255,1);
}

.navbar-brand{
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 2rem;
}
.navbar-brand:hover{
  color: #fff;
}

.navigation-item a:before, .navigation-item a:after, .navigation-item a span, .navbar-brand:before, .navbar-brand:after, .navbar-brand span, .main-title:before, .main-title:after, .main-title span {
  content: attr(data-wave);
  position: absolute;
  z-index: -1;
  opacity: 0.25;
  transition: all 2500ms ease;
  mix-blend-mode: screen;
  display: inline-block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

}
.navigation-item a span, .navbar-brand span, .main-title span{
  color: #00ff00;
  top: -1px;
  right: -2px;
}
.navigation-item a:before, .navbar-brand:before, .main-title:before {
  color: #ff0000;
  top: -2px;
  left: -1px;
}
.navigation-item a:after, .navbar-brand:after, .main-title:after {
  color: #0000ff;
  bottom: -2px;
  left: -1px;
}
.navigation-item:hover a span, .navbar-brand:hover span {
  transform: rotatex(-4deg) rotatey(4deg) scale(1.1);
}
.navigation-item:hover a:before, .navbar-brand:hover:before {
  transform: rotatey(4deg) rotatex(-4deg) scale(1.1);
}
.navigation-item:hover a:after, .navbar-brand:hover:after {
  transform: rotatex(4deg) rotatey(-4deg) scale(1.1);
}

a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: 0.15s ease-in-out;
}

a:not(.no-underline):after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #222;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}

a:hover,
a:focus {
  text-decoration: none;
}

a:hover:after {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.single-post-navigation {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
  border-top: 1px solid lightgrey;
  border-bottom: 1px solid white;
}

.single-post-navigation img{
  width: 100px;
  height: 100px;
}

@media only screen and (max-width: 480px) {
  .single-post-navigation {
    display: block;
  }
}

.single-post-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  color: #222;
}

.single-post-link:hover {
  background: #f5f5f5;
  color: #333;
}

@media only screen and (max-width: 480px) {
  .single-post-link {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .single-post-navigation img{
    width: 150px;
    height: 150px;

  }
}

.newer-post img{
  margin-right: 1rem;
}

.older-post {
  justify-content: flex-end;
  text-align: right;
}

.older-post img{
  margin-left: 1rem;
}

figure{
  margin: 4rem 0
}

figure img{
  max-width: 100%;
}

.main-footer h2{
  margin-bottom: 2rem;
}

.main-footer a{
  color: #fff;
}
.main-footer a:hover{
  color: lightgrey;
}

.button {
  display: block;
  position:relative;
  font-family:sans-serif;
  max-width:290px;
  height:60px;
  border: 2px solid #222;
  margin: 4rem auto 3rem;
  text-align:center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.button.error{
  border-color: #fff;
  max-width: 200px;
}

.button span {
  display: block;
  position: relative;
  padding: 0px;
  text-align: center;
  text-decoration: none;
  color: #222;
  font-size: 1.25rem;
  line-height: 57px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.button.error span{
  color:#fff;
}

.button:hover span {
  color:#ffffff;
  z-index: 1000;
}

.button.error:hover span{
  color: #222;
}

.easing {
  position: absolute;
  width:100%;
  top:0; /*Change 'top' to 'bottom' for an upwards transition*/
  height:0px;
  margin:0 auto;
  padding:0px;
  background-color: #222;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  -ms-transition: .2s ease;
  transition: .2s ease;
}

.error .easing{
  background-color: #fff;
}

.button:hover {
  color:#ffffff;
}

.button.error:hover{
  color: #222;
}

.button:hover .easing {
  height:60px;
}

.icon-scroll, .icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  width: 30px;
  margin-left: -20px;
  bottom: 3%;
  margin-top: -35px;
  box-shadow: inset 0 0 0 2px #999;
  border-radius: 25px;
  height: 50px;
}
.icon-scroll:before {
  content: '';
  width: 4px;
  height: 4px;
  background: #999;
  margin-left: -2px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.icon-scroll.not-mobile:before {
  -webkit-animation-name: scroll;
  animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}

.icon-scroll.mobile {
  height: 80px;
  width: 40px;
  border-radius: 4px;
}
.icon-scroll.mobile:after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  margin: 1px auto 0 auto;
  border: 1px solid #999;
  border-radius: 50%;
}
.icon-scroll.mobile .icon-scroll-screen {
  position: relative;
  width: 34px;
  height: 56px;
  margin: 10px auto 0;
  border: 1px solid #999;
}
.icon-scroll.mobile:before {
  top: 45px;
  -webkit-animation-name: scrollmobile;
  animation-name: scrollmobile;
}
@-webkit-keyframes scrollmobile {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes scrollmobile {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.fullscreen{
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  border: 2px solid #999;
  padding: 8px;
  text-align: center;
  display: block;
  bottom: 15px;
  right: 15px;
}
.fullscreen img {
  display: block;
  transition: 0.15s ease-in-out;
  width: 17px;
  height: 17px;
}
.fullscreen:hover img {
    transform: scale(1.15);
}

#typed{
  margin-left: 10px;
}
.typed-cursor {
  margin-left: 4px;
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

.typed-strings {
  display: none;
}

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

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.contact-info img {
  max-width: 180px;
  width: 100%;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

@media print {
  body {-webkit-print-color-adjust: exact;}
}

.hero-row{
  margin-bottom: 5rem;
}

.hero-row img{
  max-width: 100%;
}

.hero-row ul{
  padding: 0 0 0 25px;
  margin-top: 7px;
  font-size: 1.1em;
}

.hero-row .button{
  margin: 3rem 0 0;
}

@media (min-width: 768px){
  .hero-row{
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.home-page{
  padding: 125px 15px;
  text-align: center;
  font-size: 2rem;
}

.home-page .button{
  margin: 0 auto;
}

@media (min-width: 768px){
  .home-page{
    padding: 250px 20px;
  }
}

.about-blocks{
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.about-blocks .image{
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
.about-blocks .content{
  padding: 1.5rem 15px;
}

@media (min-width: 768px){
  .about-blocks {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .about-blocks .content{
    max-width: 700px;
    padding: 4rem;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }
}
